diff --git a/run.json b/run.json
index db4d80d2e..c644c3b7c 100644
--- a/run.json
+++ b/run.json
@@ -478,7 +478,7 @@
"kind": "running"
},
"status_updated_at": "2026-07-23T16:57:08.135544912Z",
- "last_event_at": "2026-07-23T16:57:14.665338662Z",
+ "last_event_at": "2026-07-23T16:59:35.720796555Z",
"pending_control": null,
"checkpoints": [
{
@@ -580,9 +580,9 @@
}
},
{
- "seq": 0,
+ "seq": 38,
"checkpoint": {
- "timestamp": "2026-07-23T16:59:31.698211985Z",
+ "timestamp": "2026-07-23T16:59:35.718398042Z",
"current_node": "preflight_compile",
"completed_nodes": [
"start",
@@ -590,26 +590,123 @@
"preflight_compile"
],
"node_retries": {},
+ "context_values": {
+ "current_node": "preflight_compile",
+ "failure_signature": "",
+ "failure_class": "",
+ "thread.toolchain.current_node": "preflight_compile",
+ "graph.goal": "\n# Shared-Checkout Parallel Execution\n\n## Summary\n\nSimplify parallel execution so every branch:\n\n- Receives an isolated context fork.\n- Executes concurrently against the same sandbox and Git checkout.\n- Creates no Git branch, worktree, checkpoint, or branch commit.\n- Always waits for every branch; remove `first_success` and `join_policy`.\n- Produces a collision-free result containing its context updates.\n\nFan-in remains an explicit join node. Without a prompt it is a no-op barrier; with a prompt it behaves like a standard prompt stage that reduces the aggregated results without selecting a branch.\n\n## Implementation Changes\n\n### Parallel execution\n\n- Remove all parallel-specific Git setup, checkpointing, committing, cleanup, and fast-forwarding.\n- Give each branch the same `Arc` and inherited `internal.work_dir`.\n- Retain `max_parallel`, branch-scoped contexts, IDs, hooks, and lifecycle events.\n- Preserve outgoing-edge order in the final results regardless of completion order.\n- Define the parallel outcome as:\n - `succeeded` when every branch succeeds.\n - `failed` when every branch fails.\n - `partially_succeeded` for every mixed or partial result.\n- Preserve branch ID/index when handler or task execution fails.\n- Keep the current single-node-per-branch topology.\n\n### Results and fan-in\n\nIntroduce a shared typed result:\n\n```rust\nParallelBranchResult {\n id: String,\n status: String,\n context_updates: BTreeMap,\n}\n```\n\n- Store the ordered array in `parallel.results` and keep `parallel.branch_count`.\n- Include updates from successful and failed branches; never merge them into the parent context at top level.\n- Offload large leaf values using existing artifact storage while keeping `parallel.results` itself a structured array.\n- Resolve nested textual `response.*` and `command.output` blob references when building downstream prompt context.\n- Emit the same typed results through `parallel.completed` and project them into `StageProjection.parallel_results`.\n- A promptless fan-in verifies results exist and succeeds with a joined-branches note.\n- A prompted fan-in uses standard prompt execution and records `response.`, `last_response`, usage, and prompt events. It performs no ranking or selection.\n\nRemove:\n\n- Heuristic and LLM branch-selection code.\n- `parallel.fan_in.best_id`, `best_outcome`, and `best_head_sha`.\n- Per-result `head_sha` and `score`.\n- The special fan-in model-usage mode.\n- Fan-in selected-branch notes and UI.\n\n### Delete obsolete Git/worktree infrastructure\n\n- Delete the parallel-only `WorktreeSandbox`, its options/callbacks, exports, tests, and sandbox trait path helpers.\n- Remove `EngineServices`’ parallel-only `GitState` and pipeline wiring.\n- Remove now-unused branch/worktree/fast-forward Git helpers and parallel ref sanitization.\n- Remove the parallel-base-checkpoint notice code.\n- Remove the now-unemitted `git.branch`, `git.worktree.added`, and `git.worktree.removed` event variants and property types.\n- Leave the server’s independent Git checkout/worktree implementation unchanged.\n- Continue normal run-level checkpointing after the parallel node; any shared workspace changes are captured together.\n\n## Public Interfaces and Documentation\n\n- Remove `join_policy` from DOT documentation, examples, fixtures, events, and UI.\n- Add a validation error directing users to remove any `join_policy` attribute.\n- Update `parallel.started` to contain only visit and branch count.\n- Update `parallel.branch.completed` to remove `head_sha`.\n- Define `ParallelBranchResult` in OpenAPI and change `StageProjection.parallel_results` from untyped objects to that typed array; regenerate Rust and TypeScript clients.\n- Update the parallel UI to show branch status and links without commit SHAs or a join-policy badge.\n- Replace the fan-in trophy/selection UI with joined-state information and the optional standard reducer transcript.\n- Rewrite the active parallel strategy and public docs around shared-checkout concurrency:\n - Read-only behavior is best effort.\n - Concurrent writes are allowed but entirely user-managed.\n - Fabro performs no write enforcement, detection, or warnings.\n - Results are available through `parallel.results`, not a workspace `parallel_results.json`.\n - A fan-in prompt synthesizes results but never selects workspace state.\n- Remove `join_policy` from all checked-in tutorial/demo workflows and generated documentation fixtures.\n\n## Test Plan\n\n- Unit-test that every branch receives the same sandbox working directory while retaining independent contexts.\n- Verify deterministic result ordering and complete per-branch context updates, including failed branches and structured/command outputs.\n- Cover all-success, mixed, partial, all-failed, zero-branch, `max_parallel`, dry-run, and run-cancellation behavior.\n- In a temporary Git repository, run parallel branches that write distinct files and assert:\n - Both files remain in the shared checkout.\n - No `fabro/run/parallel/*` refs exist.\n - No parallel worktrees, branch commits, worktree events, or fast-forward commands occur.\n- Test promptless fan-in as a no-op join and prompted fan-in as a standard reducer that sees every branch result and emits a normal response.\n- Update event serialization, store projection, API round-trip, web parser, and renderer tests for the new typed payloads and removed fields.\n- Remove the obsolete host and Daytona parallel-Git-selection tests; retain provider-independent shared-sandbox coverage.\n- Verify with:\n - `cargo build -p fabro-api`\n - `cd lib/packages/fabro-api-client && bun run generate && bun run typecheck`\n - `cargo build --workspace`\n - `ulimit -n 4096 && cargo nextest run --workspace`\n - `cargo +nightly-2026-04-14 fmt --check --all`\n - `cargo +nightly-2026-04-14 clippy --workspace --all-targets -- -D warnings`\n - `cd apps/fabro-web && bun test && bun run typecheck && bun run build`\n - `cargo --locked dev docs check`\n\n## Assumptions and Unresolved Questions\n\n- The application is greenfield; removed fields, events, and attributes receive no compatibility layer.\n- Parallel branches remain single-node executions.\n- `max_parallel` remains supported.\n- Shared-workspace write races are explicitly the user’s responsibility.\n- No Git workspace warning or read-only enforcement will be added.\n- Unresolved questions: none.\n\n",
+ "internal.node_visit_count": 1,
+ "outcome": "succeeded",
+ "internal.thread_id": "toolchain",
+ "internal.run_id": "01KY7YH7RYCJ1BDVTTP96ZA4HV",
+ "thread.start.current_node": "toolchain",
+ "internal.retry_count.toolchain": 0,
+ "internal.fidelity": "compact",
+ "internal.retry_count.start": 0,
+ "internal.work_dir": "/home/daytona/workspace/fabro",
+ "command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
+ "graph.rankdir": "LR",
+ "internal.retry_count.preflight_compile": 0
+ },
+ "node_outcomes": {
+ "preflight_compile": {
+ "status": "succeeded",
+ "context_updates": {
+ "command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
+ },
+ "notes": "Script completed: cargo check -q --workspace 2>&1",
+ "usage": null,
+ "timing": {
+ "wall_time_ms": 0,
+ "inference_time_ms": 0,
+ "tool_time_ms": 137028,
+ "active_time_ms": 137028
+ }
+ },
+ "start": {
+ "status": "succeeded",
+ "usage": null
+ },
+ "toolchain": {
+ "status": "succeeded",
+ "context_updates": {
+ "command.output": "blob://sha256/20eeffec02497fbda7b51f51b06fe29c1d639551eee4d5ea9845fc1f86bd77e1"
+ },
+ "notes": "Script completed: 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",
+ "usage": null,
+ "timing": {
+ "wall_time_ms": 0,
+ "inference_time_ms": 0,
+ "tool_time_ms": 1285,
+ "active_time_ms": 1285
+ }
+ }
+ },
+ "next_node_id": "preflight_lint",
+ "git_commit_sha": "dfdfbbd4ab4c13c14c862b798b61ce2294bdac96",
+ "node_visits": {
+ "preflight_compile": 1,
+ "toolchain": 1,
+ "start": 1
+ }
+ },
+ "diff": {
+ "summary": {
+ "files_changed": 0,
+ "additions": 0,
+ "deletions": 0
+ }
+ }
+ },
+ {
+ "seq": 0,
+ "checkpoint": {
+ "timestamp": "2026-07-23T17:02:21.006573238Z",
+ "current_node": "preflight_lint",
+ "completed_nodes": [
+ "start",
+ "toolchain",
+ "preflight_compile",
+ "preflight_lint"
+ ],
+ "node_retries": {},
"context_values": {
"internal.retry_count.start": 0,
"internal.run_id": "01KY7YH7RYCJ1BDVTTP96ZA4HV",
"failure_class": "",
+ "thread.preflight_compile.current_node": "preflight_lint",
+ "internal.retry_count.preflight_lint": 0,
"internal.fidelity": "compact",
"internal.work_dir": "/home/daytona/workspace/fabro",
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
- "internal.thread_id": "toolchain",
+ "internal.thread_id": "preflight_compile",
"failure_signature": "",
"internal.node_visit_count": 1,
"internal.retry_count.toolchain": 0,
"thread.toolchain.current_node": "preflight_compile",
"internal.retry_count.preflight_compile": 0,
"thread.start.current_node": "toolchain",
- "current_node": "preflight_compile",
+ "current_node": "preflight_lint",
"outcome": "succeeded",
"graph.goal": "\n# Shared-Checkout Parallel Execution\n\n## Summary\n\nSimplify parallel execution so every branch:\n\n- Receives an isolated context fork.\n- Executes concurrently against the same sandbox and Git checkout.\n- Creates no Git branch, worktree, checkpoint, or branch commit.\n- Always waits for every branch; remove `first_success` and `join_policy`.\n- Produces a collision-free result containing its context updates.\n\nFan-in remains an explicit join node. Without a prompt it is a no-op barrier; with a prompt it behaves like a standard prompt stage that reduces the aggregated results without selecting a branch.\n\n## Implementation Changes\n\n### Parallel execution\n\n- Remove all parallel-specific Git setup, checkpointing, committing, cleanup, and fast-forwarding.\n- Give each branch the same `Arc` and inherited `internal.work_dir`.\n- Retain `max_parallel`, branch-scoped contexts, IDs, hooks, and lifecycle events.\n- Preserve outgoing-edge order in the final results regardless of completion order.\n- Define the parallel outcome as:\n - `succeeded` when every branch succeeds.\n - `failed` when every branch fails.\n - `partially_succeeded` for every mixed or partial result.\n- Preserve branch ID/index when handler or task execution fails.\n- Keep the current single-node-per-branch topology.\n\n### Results and fan-in\n\nIntroduce a shared typed result:\n\n```rust\nParallelBranchResult {\n id: String,\n status: String,\n context_updates: BTreeMap,\n}\n```\n\n- Store the ordered array in `parallel.results` and keep `parallel.branch_count`.\n- Include updates from successful and failed branches; never merge them into the parent context at top level.\n- Offload large leaf values using existing artifact storage while keeping `parallel.results` itself a structured array.\n- Resolve nested textual `response.*` and `command.output` blob references when building downstream prompt context.\n- Emit the same typed results through `parallel.completed` and project them into `StageProjection.parallel_results`.\n- A promptless fan-in verifies results exist and succeeds with a joined-branches note.\n- A prompted fan-in uses standard prompt execution and records `response.`, `last_response`, usage, and prompt events. It performs no ranking or selection.\n\nRemove:\n\n- Heuristic and LLM branch-selection code.\n- `parallel.fan_in.best_id`, `best_outcome`, and `best_head_sha`.\n- Per-result `head_sha` and `score`.\n- The special fan-in model-usage mode.\n- Fan-in selected-branch notes and UI.\n\n### Delete obsolete Git/worktree infrastructure\n\n- Delete the parallel-only `WorktreeSandbox`, its options/callbacks, exports, tests, and sandbox trait path helpers.\n- Remove `EngineServices`’ parallel-only `GitState` and pipeline wiring.\n- Remove now-unused branch/worktree/fast-forward Git helpers and parallel ref sanitization.\n- Remove the parallel-base-checkpoint notice code.\n- Remove the now-unemitted `git.branch`, `git.worktree.added`, and `git.worktree.removed` event variants and property types.\n- Leave the server’s independent Git checkout/worktree implementation unchanged.\n- Continue normal run-level checkpointing after the parallel node; any shared workspace changes are captured together.\n\n## Public Interfaces and Documentation\n\n- Remove `join_policy` from DOT documentation, examples, fixtures, events, and UI.\n- Add a validation error directing users to remove any `join_policy` attribute.\n- Update `parallel.started` to contain only visit and branch count.\n- Update `parallel.branch.completed` to remove `head_sha`.\n- Define `ParallelBranchResult` in OpenAPI and change `StageProjection.parallel_results` from untyped objects to that typed array; regenerate Rust and TypeScript clients.\n- Update the parallel UI to show branch status and links without commit SHAs or a join-policy badge.\n- Replace the fan-in trophy/selection UI with joined-state information and the optional standard reducer transcript.\n- Rewrite the active parallel strategy and public docs around shared-checkout concurrency:\n - Read-only behavior is best effort.\n - Concurrent writes are allowed but entirely user-managed.\n - Fabro performs no write enforcement, detection, or warnings.\n - Results are available through `parallel.results`, not a workspace `parallel_results.json`.\n - A fan-in prompt synthesizes results but never selects workspace state.\n- Remove `join_policy` from all checked-in tutorial/demo workflows and generated documentation fixtures.\n\n## Test Plan\n\n- Unit-test that every branch receives the same sandbox working directory while retaining independent contexts.\n- Verify deterministic result ordering and complete per-branch context updates, including failed branches and structured/command outputs.\n- Cover all-success, mixed, partial, all-failed, zero-branch, `max_parallel`, dry-run, and run-cancellation behavior.\n- In a temporary Git repository, run parallel branches that write distinct files and assert:\n - Both files remain in the shared checkout.\n - No `fabro/run/parallel/*` refs exist.\n - No parallel worktrees, branch commits, worktree events, or fast-forward commands occur.\n- Test promptless fan-in as a no-op join and prompted fan-in as a standard reducer that sees every branch result and emits a normal response.\n- Update event serialization, store projection, API round-trip, web parser, and renderer tests for the new typed payloads and removed fields.\n- Remove the obsolete host and Daytona parallel-Git-selection tests; retain provider-independent shared-sandbox coverage.\n- Verify with:\n - `cargo build -p fabro-api`\n - `cd lib/packages/fabro-api-client && bun run generate && bun run typecheck`\n - `cargo build --workspace`\n - `ulimit -n 4096 && cargo nextest run --workspace`\n - `cargo +nightly-2026-04-14 fmt --check --all`\n - `cargo +nightly-2026-04-14 clippy --workspace --all-targets -- -D warnings`\n - `cd apps/fabro-web && bun test && bun run typecheck && bun run build`\n - `cargo --locked dev docs check`\n\n## Assumptions and Unresolved Questions\n\n- The application is greenfield; removed fields, events, and attributes receive no compatibility layer.\n- Parallel branches remain single-node executions.\n- `max_parallel` remains supported.\n- Shared-workspace write races are explicitly the user’s responsibility.\n- No Git workspace warning or read-only enforcement will be added.\n- Unresolved questions: none.\n\n",
"graph.rankdir": "LR"
},
"node_outcomes": {
+ "preflight_lint": {
+ "status": "succeeded",
+ "context_updates": {
+ "command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
+ },
+ "notes": "Script completed: cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
+ "usage": null,
+ "timing": {
+ "wall_time_ms": 0,
+ "inference_time_ms": 0,
+ "tool_time_ms": 165282,
+ "active_time_ms": 165282
+ }
+ },
"toolchain": {
"status": "succeeded",
"context_updates": {
@@ -643,10 +740,11 @@
}
}
},
- "next_node_id": "preflight_lint",
+ "next_node_id": "implement",
"node_visits": {
"toolchain": 1,
"preflight_compile": 1,
+ "preflight_lint": 1,
"start": 1
}
},
@@ -679,6 +777,33 @@
"superseded_by": null,
"pending_interviews": {},
"stages": {
+ "preflight_lint@1": {
+ "first_event_seq": 41,
+ "prompt": null,
+ "response": null,
+ "completion": null,
+ "provider_used": null,
+ "diff": null,
+ "script_invocation": {
+ "script": "cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
+ "command": "exec 2>&1\ncargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
+ "language": "shell"
+ },
+ "script_timing": null,
+ "parallel_results": null,
+ "output": null,
+ "started_at": "2026-07-23T16:59:35.720472898Z",
+ "handler": "command",
+ "usage": {
+ "input_tokens": 0,
+ "output_tokens": 0,
+ "total_tokens": 0,
+ "reasoning_tokens": 0,
+ "cache_read_tokens": 0,
+ "cache_write_tokens": 0
+ },
+ "state": "running"
+ },
"start@1": {
"first_event_seq": 17,
"prompt": null,
@@ -717,7 +842,12 @@
"first_event_seq": 31,
"prompt": null,
"response": null,
- "completion": null,
+ "completion": {
+ "outcome": "succeeded",
+ "notes": "Script completed: cargo check -q --workspace 2>&1",
+ "failure_reason": null,
+ "timestamp": "2026-07-23T16:59:31.697267613Z"
+ },
"provider_used": null,
"diff": null,
"script_invocation": {
@@ -725,11 +855,27 @@
"command": "exec 2>&1\ncargo check -q --workspace 2>&1",
"language": "shell"
},
- "script_timing": null,
+ "script_timing": {
+ "output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
+ "exit_code": 0,
+ "duration_ms": 137028,
+ "termination": "exited",
+ "output_bytes": 0,
+ "live_streaming": false
+ },
"parallel_results": null,
"output": null,
+ "output_bytes": 0,
+ "live_streaming": false,
+ "termination": "exited",
"started_at": "2026-07-23T16:57:14.664836833Z",
"handler": "command",
+ "timing": {
+ "wall_time_ms": 137032,
+ "inference_time_ms": 0,
+ "tool_time_ms": 137028,
+ "active_time_ms": 137028
+ },
"usage": {
"input_tokens": 0,
"output_tokens": 0,
@@ -738,7 +884,7 @@
"cache_read_tokens": 0,
"cache_write_tokens": 0
},
- "state": "running"
+ "state": "succeeded"
},
"toolchain@1": {
"first_event_seq": 21,
diff --git a/stages/003-preflight_compile@1/output.log b/stages/003-preflight_compile@1/output.log
new file mode 100644
index 000000000..d87ba9545
--- /dev/null
+++ b/stages/003-preflight_compile@1/output.log
@@ -0,0 +1 @@
+blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126
\ No newline at end of file
diff --git a/stages/003-preflight_compile@1/script_timing.json b/stages/003-preflight_compile@1/script_timing.json
new file mode 100644
index 000000000..b4c58e18a
--- /dev/null
+++ b/stages/003-preflight_compile@1/script_timing.json
@@ -0,0 +1,8 @@
+{
+ "output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
+ "exit_code": 0,
+ "duration_ms": 137028,
+ "termination": "exited",
+ "output_bytes": 0,
+ "live_streaming": false
+}
\ No newline at end of file
diff --git a/stages/003-preflight_compile@1/status.json b/stages/003-preflight_compile@1/status.json
new file mode 100644
index 000000000..c075cfa10
--- /dev/null
+++ b/stages/003-preflight_compile@1/status.json
@@ -0,0 +1,6 @@
+{
+ "outcome": "succeeded",
+ "notes": "Script completed: cargo check -q --workspace 2>&1",
+ "failure_reason": null,
+ "timestamp": "2026-07-23T16:59:31.697267613Z"
+}
\ No newline at end of file
diff --git a/stages/004-preflight_lint@1/script_invocation.json b/stages/004-preflight_lint@1/script_invocation.json
new file mode 100644
index 000000000..0cb6a9faa
--- /dev/null
+++ b/stages/004-preflight_lint@1/script_invocation.json
@@ -0,0 +1,5 @@
+{
+ "script": "cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
+ "command": "exec 2>&1\ncargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
+ "language": "shell"
+}
\ No newline at end of file