From 355e36fc8947cccc1a33409e70ba966392487b28 Mon Sep 17 00:00:00 2001 From: Fabro Date: Thu, 19 Mar 2026 10:58:37 -0400 Subject: [PATCH] checkpoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ⚒️ Generated with [Fabro](https://fabro.sh) --- checkpoint.json | 44 ++++++++++++++----- .../preflight_compile/script_invocation.json | 5 +++ nodes/preflight_compile/script_timing.json | 5 +++ nodes/preflight_compile/status.json | 6 +++ 4 files changed, 48 insertions(+), 12 deletions(-) create mode 100644 nodes/preflight_compile/script_invocation.json create mode 100644 nodes/preflight_compile/script_timing.json create mode 100644 nodes/preflight_compile/status.json diff --git a/checkpoint.json b/checkpoint.json index d88f8f534..4198c15fa 100644 --- a/checkpoint.json +++ b/checkpoint.json @@ -1,35 +1,51 @@ { - "timestamp": "2026-03-19T14:57:19.568112Z", - "current_node": "toolchain", + "timestamp": "2026-03-19T14:58:37.568239Z", + "current_node": "preflight_compile", "completed_nodes": [ "start", - "toolchain" + "toolchain", + "preflight_compile" ], "node_retries": { "toolchain": 1, - "start": 1 + "start": 1, + "preflight_compile": 1 }, "context_values": { + "thread.toolchain.current_node": "preflight_compile", "internal.run_id": "01KM39KFRC393V6PJ39G9XMXJ2", "graph.model_stylesheet": "\n * { backend: api; model: claude-opus-4-6;}\n ", - "current.preamble": "Goal: # Detect GitHub App visibility mismatch during `repo init`\n\n## Context\n\nWhen `fabro repo init` detects the GitHub App is not installed for a repo, it shows a generic \"install at\" URL. But if the repo owner differs from the app owner, the app must be **public** to be installable. Users currently get no guidance about this, leading to confusion when the install link doesn't work.\n\n## Changes\n\n### 1. Add `get_authenticated_app()` to fabro-github\n\n**File:** `lib/crates/fabro-github/src/lib.rs`\n\nAdd two public structs near the existing response types (around line 40):\n\n```rust\npub struct AppOwner {\n pub login: String,\n}\n\npub struct AppInfo {\n pub slug: String,\n pub owner: AppOwner,\n}\n```\n\nAdd function after `check_app_installed` (after line 525):\n\n- `pub async fn get_authenticated_app(client, jwt, base_url) -> Result`\n- Calls `GET {base_url}/app` with Bearer JWT auth\n- Returns `AppInfo` on 200, errors on 401/other\n\n### 2. Add `is_app_public()` to fabro-github\n\n**File:** `lib/crates/fabro-github/src/lib.rs`\n\nAdd function after `get_authenticated_app`:\n\n- `pub async fn is_app_public(client, slug, base_url) -> Result`\n- Calls `GET {base_url}/apps/{slug}` **without** auth (public apps are visible to unauthenticated requests)\n- Returns `Ok(true)` on 200, `Ok(false)` on 404, error on other status\n\n### 3. Update `check_github_app_installation` in init.rs\n\n**File:** `lib/crates/fabro-cli/src/init.rs`\n\nIn the `Ok(false)` branch (line 250), before showing the install URL:\n\n1. Call `get_authenticated_app()` to get the app's owner\n2. Compare `app_info.owner.login` with the repo `owner` (case-insensitive)\n3. If they differ, call `is_app_public()` to check visibility\n4. If the app is private and owners differ, show a targeted warning:\n\n```\n ! GitHub App \"{slug}\" is private but this repo belongs to a different owner ({repo_owner}).\n The app must be made public before it can be installed outside {app_owner}.\n Update visibility at: https://github.com/settings/apps/{slug}\n```\n\nAll new checks are best-effort — failures are silently ignored (the existing generic warning still shows).\n\n### 4. Tests\n\n**File:** `lib/crates/fabro-github/src/lib.rs` (test module)\n\nAdd tests using existing `mockito` patterns:\n\n- `get_authenticated_app_success` — 200 returns parsed `AppInfo`\n- `get_authenticated_app_auth_failure` — 401 returns error\n- `is_app_public_returns_true_on_200` — public app\n- `is_app_public_returns_false_on_404` — private app\n- `is_app_public_no_auth_header` — verify no Authorization header is sent\n\n## Verification\n\n1. `cargo test -p fabro-github` — new unit tests pass\n2. `cargo build --workspace` — compiles cleanly\n3. `cargo clippy --workspace -- -D warnings` — no warnings\n4. Manual: run `fabro repo init` in a repo owned by a different org than the app to verify the warning appears\n\n", + "current.preamble": "Goal: # Detect GitHub App visibility mismatch during `repo init`\n\n## Context\n\nWhen `fabro repo init` detects the GitHub App is not installed for a repo, it shows a generic \"install at\" URL. But if the repo owner differs from the app owner, the app must be **public** to be installable. Users currently get no guidance about this, leading to confusion when the install link doesn't work.\n\n## Changes\n\n### 1. Add `get_authenticated_app()` to fabro-github\n\n**File:** `lib/crates/fabro-github/src/lib.rs`\n\nAdd two public structs near the existing response types (around line 40):\n\n```rust\npub struct AppOwner {\n pub login: String,\n}\n\npub struct AppInfo {\n pub slug: String,\n pub owner: AppOwner,\n}\n```\n\nAdd function after `check_app_installed` (after line 525):\n\n- `pub async fn get_authenticated_app(client, jwt, base_url) -> Result`\n- Calls `GET {base_url}/app` with Bearer JWT auth\n- Returns `AppInfo` on 200, errors on 401/other\n\n### 2. Add `is_app_public()` to fabro-github\n\n**File:** `lib/crates/fabro-github/src/lib.rs`\n\nAdd function after `get_authenticated_app`:\n\n- `pub async fn is_app_public(client, slug, base_url) -> Result`\n- Calls `GET {base_url}/apps/{slug}` **without** auth (public apps are visible to unauthenticated requests)\n- Returns `Ok(true)` on 200, `Ok(false)` on 404, error on other status\n\n### 3. Update `check_github_app_installation` in init.rs\n\n**File:** `lib/crates/fabro-cli/src/init.rs`\n\nIn the `Ok(false)` branch (line 250), before showing the install URL:\n\n1. Call `get_authenticated_app()` to get the app's owner\n2. Compare `app_info.owner.login` with the repo `owner` (case-insensitive)\n3. If they differ, call `is_app_public()` to check visibility\n4. If the app is private and owners differ, show a targeted warning:\n\n```\n ! GitHub App \"{slug}\" is private but this repo belongs to a different owner ({repo_owner}).\n The app must be made public before it can be installed outside {app_owner}.\n Update visibility at: https://github.com/settings/apps/{slug}\n```\n\nAll new checks are best-effort — failures are silently ignored (the existing generic warning still shows).\n\n### 4. Tests\n\n**File:** `lib/crates/fabro-github/src/lib.rs` (test module)\n\nAdd tests using existing `mockito` patterns:\n\n- `get_authenticated_app_success` — 200 returns parsed `AppInfo`\n- `get_authenticated_app_auth_failure` — 401 returns error\n- `is_app_public_returns_true_on_200` — public app\n- `is_app_public_returns_false_on_404` — private app\n- `is_app_public_no_auth_header` — verify no Authorization header is sent\n\n## Verification\n\n1. `cargo test -p fabro-github` — new unit tests pass\n2. `cargo build --workspace` — compiles cleanly\n3. `cargo clippy --workspace -- -D warnings` — no warnings\n4. Manual: run `fabro repo init` in a repo owned by a different org than the app to verify the warning appears\n\n\n## Completed stages\n- **toolchain**: success\n - Script: `command -v cargo >/dev/null || { curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && sudo ln -sf $HOME/.cargo/bin/* /usr/local/bin/; }; cargo --version 2>&1`\n - Stdout:\n ```\n cargo 1.94.0 (85eff7c80 2026-01-15)\n ```\n - Stderr: (empty)\n", "internal.retry_count.toolchain": 1, "internal.node_visit_count": 1, "command.stderr": "", "internal.retry_count.start": 1, "graph.rankdir": "LR", "graph.goal": "# Detect GitHub App visibility mismatch during `repo init`\n\n## Context\n\nWhen `fabro repo init` detects the GitHub App is not installed for a repo, it shows a generic \"install at\" URL. But if the repo owner differs from the app owner, the app must be **public** to be installable. Users currently get no guidance about this, leading to confusion when the install link doesn't work.\n\n## Changes\n\n### 1. Add `get_authenticated_app()` to fabro-github\n\n**File:** `lib/crates/fabro-github/src/lib.rs`\n\nAdd two public structs near the existing response types (around line 40):\n\n```rust\npub struct AppOwner {\n pub login: String,\n}\n\npub struct AppInfo {\n pub slug: String,\n pub owner: AppOwner,\n}\n```\n\nAdd function after `check_app_installed` (after line 525):\n\n- `pub async fn get_authenticated_app(client, jwt, base_url) -> Result`\n- Calls `GET {base_url}/app` with Bearer JWT auth\n- Returns `AppInfo` on 200, errors on 401/other\n\n### 2. Add `is_app_public()` to fabro-github\n\n**File:** `lib/crates/fabro-github/src/lib.rs`\n\nAdd function after `get_authenticated_app`:\n\n- `pub async fn is_app_public(client, slug, base_url) -> Result`\n- Calls `GET {base_url}/apps/{slug}` **without** auth (public apps are visible to unauthenticated requests)\n- Returns `Ok(true)` on 200, `Ok(false)` on 404, error on other status\n\n### 3. Update `check_github_app_installation` in init.rs\n\n**File:** `lib/crates/fabro-cli/src/init.rs`\n\nIn the `Ok(false)` branch (line 250), before showing the install URL:\n\n1. Call `get_authenticated_app()` to get the app's owner\n2. Compare `app_info.owner.login` with the repo `owner` (case-insensitive)\n3. If they differ, call `is_app_public()` to check visibility\n4. If the app is private and owners differ, show a targeted warning:\n\n```\n ! GitHub App \"{slug}\" is private but this repo belongs to a different owner ({repo_owner}).\n The app must be made public before it can be installed outside {app_owner}.\n Update visibility at: https://github.com/settings/apps/{slug}\n```\n\nAll new checks are best-effort — failures are silently ignored (the existing generic warning still shows).\n\n### 4. Tests\n\n**File:** `lib/crates/fabro-github/src/lib.rs` (test module)\n\nAdd tests using existing `mockito` patterns:\n\n- `get_authenticated_app_success` — 200 returns parsed `AppInfo`\n- `get_authenticated_app_auth_failure` — 401 returns error\n- `is_app_public_returns_true_on_200` — public app\n- `is_app_public_returns_false_on_404` — private app\n- `is_app_public_no_auth_header` — verify no Authorization header is sent\n\n## Verification\n\n1. `cargo test -p fabro-github` — new unit tests pass\n2. `cargo build --workspace` — compiles cleanly\n3. `cargo clippy --workspace -- -D warnings` — no warnings\n4. Manual: run `fabro repo init` in a repo owned by a different org than the app to verify the warning appears\n", - "internal.thread_id": "start", - "failure_signature": "", - "outcome": "success", - "failure_class": "", + "internal.thread_id": "toolchain", + "failure_signature": "preflight_compile|deterministic|script failed with exit code: ## stdout error[e0004]: non-exhaustive patterns: `sandboxprovider::exe` not covered --> lib/crates/fabro-cli/src/commands/run.rs:: | | let sandbox: arc = match sandbox_provider { | ^^", + "outcome": "fail", + "failure_class": "deterministic", "thread.start.current_node": "toolchain", - "command.output": "cargo 1.94.0 (85eff7c80 2026-01-15)\n", + "internal.retry_count.preflight_compile": 1, + "command.output": "error[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1001:43\n |\n1001 | let sandbox: Arc = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1076 ~ },\n1077 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1761:15\n |\n1761 | match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1816 ~ },\n1817 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:2121:66\n |\n2121 | let sandbox_result: Result, String> = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n2164 ~ },\n2165 + SandboxProvider::Exe => todo!()\n |\n\nFor more information about this error, try `rustc --explain E0004`.\nerror: could not compile `fabro-cli` (bin \"fabro\") due to 3 previous errors\n", "internal.fidelity": "compact", - "current_node": "toolchain" + "current_node": "preflight_compile" }, "logs": [], "node_outcomes": { + "preflight_compile": { + "status": "fail", + "context_updates": { + "command.stderr": "", + "command.output": "error[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1001:43\n |\n1001 | let sandbox: Arc = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1076 ~ },\n1077 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1761:15\n |\n1761 | match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1816 ~ },\n1817 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:2121:66\n |\n2121 | let sandbox_result: Result, String> = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n2164 ~ },\n2165 + SandboxProvider::Exe => todo!()\n |\n\nFor more information about this error, try `rustc --explain E0004`.\nerror: could not compile `fabro-cli` (bin \"fabro\") due to 3 previous errors\n" + }, + "failure": { + "message": "Script failed with exit code: 101\n\n## stdout\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1001:43\n |\n1001 | let sandbox: Arc = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1076 ~ },\n1077 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1761:15\n |\n1761 | match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1816 ~ },\n1817 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:2121:66\n |\n2121 | let sandbox_result: Result, String> = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n2164 ~ },\n2165 + SandboxProvider::Exe => todo!()\n |\n\nFor more information about this error, try `rustc --explain E0004`.\nerror: could not compile `fabro-cli` (bin \"fabro\") due to 3 previous errors\n", + "failure_class": "deterministic" + }, + "duration_ms": 75314 + }, "start": { "status": "success", "duration_ms": 0 @@ -44,9 +60,13 @@ "duration_ms": 144 } }, - "next_node_id": "preflight_compile", + "next_node_id": "exit", + "loop_failure_signatures": { + "preflight_compile|deterministic|script failed with exit code: ## stdout error[e0004]: non-exhaustive patterns: `sandboxprovider::exe` not covered --> lib/crates/fabro-cli/src/commands/run.rs:: | | let sandbox: arc = match sandbox_provider { | ^^": 1 + }, "node_visits": { "toolchain": 1, + "preflight_compile": 1, "start": 1 } } \ No newline at end of file diff --git a/nodes/preflight_compile/script_invocation.json b/nodes/preflight_compile/script_invocation.json new file mode 100644 index 000000000..ccbef36c7 --- /dev/null +++ b/nodes/preflight_compile/script_invocation.json @@ -0,0 +1,5 @@ +{ + "command": "cargo check -q --workspace 2>&1", + "language": "shell", + "timeout_ms": null +} \ No newline at end of file diff --git a/nodes/preflight_compile/script_timing.json b/nodes/preflight_compile/script_timing.json new file mode 100644 index 000000000..8aa34a87a --- /dev/null +++ b/nodes/preflight_compile/script_timing.json @@ -0,0 +1,5 @@ +{ + "duration_ms": 75312, + "exit_code": 101, + "timed_out": false +} \ No newline at end of file diff --git a/nodes/preflight_compile/status.json b/nodes/preflight_compile/status.json new file mode 100644 index 000000000..987a38c74 --- /dev/null +++ b/nodes/preflight_compile/status.json @@ -0,0 +1,6 @@ +{ + "status": "fail", + "notes": null, + "failure_reason": "Script failed with exit code: 101\n\n## stdout\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1001:43\n |\n1001 | let sandbox: Arc = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1076 ~ },\n1077 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:1761:15\n |\n1761 | match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n1816 ~ },\n1817 + SandboxProvider::Exe => todo!()\n |\n\nerror[E0004]: non-exhaustive patterns: `SandboxProvider::Exe` not covered\n --> lib/crates/fabro-cli/src/commands/run.rs:2121:66\n |\n2121 | let sandbox_result: Result, String> = match sandbox_provider {\n | ^^^^^^^^^^^^^^^^ pattern `SandboxProvider::Exe` not covered\n |\nnote: `SandboxProvider` defined here\n --> lib/crates/fabro-workflows/src/sandbox_provider.rs:6:1\n |\n 6 | pub enum SandboxProvider {\n | ^^^^^^^^^^^^^^^^^^^^^^^^\n...\n 16 | Exe,\n | --- not covered\n = note: the matched value is of type `SandboxProvider`\nhelp: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown\n |\n2164 ~ },\n2165 + SandboxProvider::Exe => todo!()\n |\n\nFor more information about this error, try `rustc --explain E0004`.\nerror: could not compile `fabro-cli` (bin \"fabro\") due to 3 previous errors\n", + "timestamp": "2026-03-19T14:58:37.567776+00:00" +} \ No newline at end of file