mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-15 23:32:46 +00:00
commit
4d3bb0a73c
2 changed files with 581 additions and 0 deletions
37
graph.fabro
Normal file
37
graph.fabro
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
digraph ImplementPlan {
|
||||
graph [
|
||||
goal="Implement and simplify",
|
||||
model_stylesheet="
|
||||
* { model: claude-opus-4-7; }
|
||||
"
|
||||
]
|
||||
rankdir=LR
|
||||
|
||||
start [shape=Mdiamond, label="Start"]
|
||||
exit [shape=Msquare, label="Exit"]
|
||||
|
||||
toolchain [label="Toolchain", shape=parallelogram, 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", max_retries=0]
|
||||
preflight_compile [label="Preflight Compile", shape=parallelogram, script="cargo check -q --workspace 2>&1", max_retries=0]
|
||||
preflight_lint [label="Preflight Lint", shape=parallelogram, script="cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1", max_retries=0]
|
||||
fix_lints [label="Fix Lints", prompt="The preflight lint step failed. Read the build output from context and fix all clippy lint warnings.", max_visits=3]
|
||||
implement [label="Implement", prompt="Read the plan file referenced in the goal and implement every step. Make all the code changes described in the plan. Use red/green TDD.", model="gpt-55", reasoning_effort="xhigh"]
|
||||
simplify_opus [label="Simplify (Opus)", prompt="@prompts/simplify.md"]
|
||||
simplify_gpt [label="Simplify (GPT-55)", prompt="@prompts/simplify.md", model="gpt-55"]
|
||||
verify [label="Verify", shape=parallelogram, script="cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1 && cargo dev docs refresh 2>&1 && cargo dev docs check 2>&1", goal_gate=true, retry_target="fixup"]
|
||||
fixup [label="Fixup", prompt="The verify step failed. Read the build output from context and fix all clippy lint warnings, test failures, and generated docs errors.", max_visits=3]
|
||||
fmt [label="Format", shape=parallelogram, script="cargo +nightly-2026-04-14 fmt --all 2>&1", max_retries=0]
|
||||
|
||||
start -> toolchain
|
||||
toolchain -> preflight_compile [condition="outcome=succeeded"]
|
||||
toolchain -> exit
|
||||
preflight_compile -> preflight_lint [condition="outcome=succeeded"]
|
||||
preflight_compile -> exit
|
||||
preflight_lint -> implement [condition="outcome=succeeded"]
|
||||
preflight_lint -> fix_lints
|
||||
fix_lints -> preflight_lint
|
||||
implement -> simplify_opus -> simplify_gpt -> verify
|
||||
verify -> fmt [condition="outcome=succeeded"]
|
||||
verify -> fixup
|
||||
fixup -> verify
|
||||
fmt -> exit
|
||||
}
|
||||
544
run.json
Normal file
544
run.json
Normal file
|
|
@ -0,0 +1,544 @@
|
|||
{
|
||||
"title": "---",
|
||||
"spec": {
|
||||
"run_id": "01KSA4H7JHBRPXZM3XTJ4SD9QA",
|
||||
"settings": {
|
||||
"project": {
|
||||
"name": null,
|
||||
"description": null,
|
||||
"metadata": {}
|
||||
},
|
||||
"workflow": {
|
||||
"name": null,
|
||||
"description": null,
|
||||
"graph": "workflow.fabro",
|
||||
"metadata": {}
|
||||
},
|
||||
"run": {
|
||||
"goal": {
|
||||
"type": "inline",
|
||||
"value": "---\ntitle: Add Manual Run Retry\ntype: feat\nstatus: active\ndate: 2026-05-23\n---\n\n# Add Manual Run Retry\n\n## Summary\n\nAdd a **Retry** action for failed Fabro runs that creates and immediately starts a new run from the failed run's captured run definition. The new run is independent runtime state, records `retried_from: <source_run_id>`, and leaves the source run unchanged.\n\nThis is a fresh run, not resume/fork/rewind. It should copy the source run's durable definition and settings, but not checkpoints, stage state, sandbox state, PR links, billing, questions, conclusions, or pending controls.\n\n## Key Changes\n\n- Add `retried_from` as a nullable public field on `Run`.\n - Store it on the new run only.\n - Do not add a reverse `retried_by` field in v1.\n - Preserve backward compatibility with old events by defaulting to `null`.\n\n- Add `POST /api/v1/runs/{id}/retry`.\n - Response: `201` with the newly created/queued `Run`.\n - Eligible source states: `failed` except `reason=cancelled`, and `dead`.\n - Reject active, succeeded, cancelled, archived, and missing runs with existing API error patterns.\n - The new run should use the current authenticated actor as `created_by`.\n - The new run should preserve the source run's current `parent_id`, title, labels, workflow graph/source, resolved settings, git context, manifest/definition blob refs, and `fork_source_ref` if present.\n\n- Implement retry using a workflow operation similar in shape to `fork`, but without replaying checkpoint/runtime events.\n - Create a new run store.\n - Append `run.created` with `retried_from`.\n - Append `run.submitted`.\n - Queue/start it through the same internal start path used by `POST /runs/{id}/start`.\n\n- Update OpenAPI and generated clients.\n - Edit `docs/public/api-reference/fabro-api.yaml`.\n - Regenerate Rust API types through `cargo build -p fabro-api`.\n - Regenerate TypeScript client in `lib/packages/fabro-api-client`.\n\n- Update the web UI.\n - Add `Retry` to the run action menu for eligible failed/dead runs.\n - Disable the action while pending.\n - On success, navigate to the new run page and refresh run/list caches.\n - Add a compact \"Retried from\" link in the run summary panel when `retried_from` is present.\n - Add demo-mode support or hide the action in demo mode so the button never navigates to a missing demo run.\n\n## Test Plan\n\n- Rust workflow/store tests:\n - `run.created` serializes/deserializes `retried_from`.\n - Old `run.created` events project with `retried_from = None`.\n - Retry creates a new run with a different ID, copied durable definition, no runtime state, and `retried_from` set.\n - Retry preserves current `parent_id`, title, labels, git context, settings, and `fork_source_ref`.\n - Retry rejects succeeded, active, cancelled, and archived source runs.\n\n- Rust server/API tests:\n - `POST /runs/{id}/retry` on a failed run returns `201`, a new run ID, `retried_from`, and queued/started lifecycle state.\n - Source run remains unchanged.\n - `404` for unknown run.\n - `409` for non-retryable status.\n - Generated Rust API compiles against the updated OpenAPI contract.\n\n- Web tests:\n - `canRetry` returns true for failed/dead, false for cancelled/succeeded/active/archived.\n - Action menu renders `Retry` only when eligible.\n - Successful retry calls the generated client and navigates to `/runs/:newId`.\n - Retry errors show a useful toast/message.\n - Run summary panel renders the `Retried from` link when present.\n - Typecheck passes with regenerated client types.\n\n## Assumptions\n\n- V1 does not add a CLI `fabro retry` command.\n- V1 does not add automatic retry attempts, retry counts, or idempotency keys.\n- Multiple manual clicks after the first request completes may create multiple retry runs.\n- \"Same settings\" means the source run's captured durable definition/settings, not latest local files from the user's machine.\n- Cancelled runs are excluded because cancellation is user intent, not execution failure.\n"
|
||||
},
|
||||
"working_dir": null,
|
||||
"metadata": {},
|
||||
"inputs": {},
|
||||
"model": {
|
||||
"provider": "anthropic",
|
||||
"name": "claude-sonnet-4-6",
|
||||
"fallbacks": [],
|
||||
"controls": {
|
||||
"reasoning_effort": null,
|
||||
"speed": null
|
||||
}
|
||||
},
|
||||
"git": {
|
||||
"author": null
|
||||
},
|
||||
"prepare": {
|
||||
"commands": [],
|
||||
"timeout_ms": 300000
|
||||
},
|
||||
"execution": {
|
||||
"mode": "normal",
|
||||
"approval": "prompt"
|
||||
},
|
||||
"checkpoint": {
|
||||
"exclude_globs": [],
|
||||
"skip_git_hooks": false
|
||||
},
|
||||
"clone": {
|
||||
"enabled": true
|
||||
},
|
||||
"run_branch": {
|
||||
"enabled": true,
|
||||
"push": true
|
||||
},
|
||||
"meta_branch": {
|
||||
"enabled": true,
|
||||
"push": true
|
||||
},
|
||||
"sandbox": {
|
||||
"provider": "daytona",
|
||||
"preserve": false,
|
||||
"stop_on_terminal": true,
|
||||
"devcontainer": false,
|
||||
"env": {},
|
||||
"docker": {
|
||||
"image": "buildpack-deps:noble",
|
||||
"network_mode": null,
|
||||
"memory_limit": 4000000000,
|
||||
"cpu_quota": 200000,
|
||||
"env_vars": {}
|
||||
},
|
||||
"daytona": {
|
||||
"auto_stop_interval": 30,
|
||||
"labels": {
|
||||
"repo": "fabro-sh/fabro"
|
||||
},
|
||||
"volumes": [],
|
||||
"snapshot": {
|
||||
"name": "fabro-v11",
|
||||
"cpu": 8,
|
||||
"memory_gb": 16,
|
||||
"disk_gb": 20,
|
||||
"dockerfile": {
|
||||
"type": "inline",
|
||||
"value": "FROM ubuntu:24.04\n\nRUN apt-get update && apt-get install -y --no-install-recommends \\\n curl git ca-certificates build-essential pkg-config libssl-dev unzip python3 \\\n xvfb xfce4 xfce4-terminal x11vnc novnc dbus-x11 \\\n libx11-6 libxrandr2 libxext6 libxrender1 libxfixes3 libxss1 libxtst6 libxi6 \\\n && rm -rf /var/lib/apt/lists/*\n\n# Install real Chromium (not the snap stub) via xtradeb PPA\nRUN apt-get update && apt-get install -y --no-install-recommends \\\n software-properties-common curl gnupg \\\n && add-apt-repository -y ppa:xtradeb/apps \\\n && apt-get update \\\n && apt-get install -y --no-install-recommends chromium \\\n && rm -rf /var/lib/apt/lists/*\n\n# Wrapper: Chromium needs --no-sandbox when running as root in a container,\n# and --disable-dev-shm-usage avoids crashes from small /dev/shm\nRUN printf '#!/bin/bash\\nexec /usr/bin/chromium --no-sandbox --disable-dev-shm-usage \"$@\"\\n' \\\n > /usr/local/bin/chromium-wrapper \\\n && chmod +x /usr/local/bin/chromium-wrapper\n\n# Make the wrapper the default in the system .desktop file and via alternatives\nRUN sed -i 's|^Exec=.*|Exec=/usr/local/bin/chromium-wrapper %U|' \\\n /usr/share/applications/chromium.desktop \\\n && update-alternatives --install /usr/bin/x-www-browser x-www-browser \\\n /usr/local/bin/chromium-wrapper 100\n\n# Tell XFCE's exo-open that Chromium is the WebBrowser helper (system-wide)\nRUN mkdir -p /etc/xdg/xfce4 /usr/share/xfce4/helpers \\\n && printf 'WebBrowser=custom-WebBrowser\\n' > /etc/xdg/xfce4/helpers.rc \\\n && printf '[Desktop Entry]\\n\\\nVersion=1.0\\n\\\nType=X-XFCE-Helper\\n\\\nName=Chromium\\n\\\nIcon=chromium\\n\\\nX-XFCE-Category=WebBrowser\\n\\\nX-XFCE-CommandsWithParameter=/usr/local/bin/chromium-wrapper \"%%s\"\\n\\\nX-XFCE-Commands=/usr/local/bin/chromium-wrapper\\n' \\\n > /usr/share/xfce4/helpers/custom-WebBrowser.desktop\n\n# GitHub CLI\nRUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \\\n | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \\\n && echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main\" \\\n | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \\\n && apt-get update && apt-get install -y --no-install-recommends gh \\\n && rm -rf /var/lib/apt/lists/*\n\n# Rust\nRUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y\nENV PATH=\"/root/.cargo/bin:${PATH}\"\nRUN rustup toolchain install nightly-2026-04-14 --profile minimal --component clippy,rustfmt\nRUN cargo install cargo-nextest --locked\nENV CARGO_INCREMENTAL=0\n\n# Bun\nRUN curl -fsSL https://bun.sh/install | bash\nENV PATH=\"/root/.bun/bin:${PATH}\"\n\nWORKDIR /root\n"
|
||||
}
|
||||
},
|
||||
"network": null
|
||||
}
|
||||
},
|
||||
"notifications": {},
|
||||
"interviews": {
|
||||
"provider": null,
|
||||
"slack": null
|
||||
},
|
||||
"agent": {
|
||||
"fabro_tools": false,
|
||||
"permissions": null,
|
||||
"mcps": {}
|
||||
},
|
||||
"hooks": [],
|
||||
"scm": {
|
||||
"provider": null,
|
||||
"owner": null,
|
||||
"repository": null,
|
||||
"github": null
|
||||
},
|
||||
"pull_request": {
|
||||
"enabled": true,
|
||||
"draft": false,
|
||||
"auto_merge": false,
|
||||
"merge_strategy": "squash"
|
||||
},
|
||||
"artifacts": {
|
||||
"include": []
|
||||
},
|
||||
"integrations": {
|
||||
"github": {
|
||||
"permissions": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"graph": {
|
||||
"name": "ImplementPlan",
|
||||
"nodes": {
|
||||
"fmt": {
|
||||
"id": "fmt",
|
||||
"attrs": {
|
||||
"script": {
|
||||
"String": "cargo +nightly-2026-04-14 fmt --all 2>&1"
|
||||
},
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
},
|
||||
"label": {
|
||||
"String": "Format"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"verify": {
|
||||
"id": "verify",
|
||||
"attrs": {
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"label": {
|
||||
"String": "Verify"
|
||||
},
|
||||
"goal_gate": {
|
||||
"Boolean": true
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"retry_target": {
|
||||
"String": "fixup"
|
||||
},
|
||||
"script": {
|
||||
"String": "cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1 && cargo dev docs refresh 2>&1 && cargo dev docs check 2>&1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"start": {
|
||||
"id": "start",
|
||||
"attrs": {
|
||||
"shape": {
|
||||
"String": "Mdiamond"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"label": {
|
||||
"String": "Start"
|
||||
}
|
||||
}
|
||||
},
|
||||
"exit": {
|
||||
"id": "exit",
|
||||
"attrs": {
|
||||
"shape": {
|
||||
"String": "Msquare"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"label": {
|
||||
"String": "Exit"
|
||||
}
|
||||
}
|
||||
},
|
||||
"implement": {
|
||||
"id": "implement",
|
||||
"attrs": {
|
||||
"provider": {
|
||||
"String": "openai"
|
||||
},
|
||||
"model": {
|
||||
"String": "gpt-5.5"
|
||||
},
|
||||
"reasoning_effort": {
|
||||
"String": "xhigh"
|
||||
},
|
||||
"prompt": {
|
||||
"String": "Read the plan file referenced in the goal and implement every step. Make all the code changes described in the plan. Use red/green TDD."
|
||||
},
|
||||
"label": {
|
||||
"String": "Implement"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fix_lints": {
|
||||
"id": "fix_lints",
|
||||
"attrs": {
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"max_visits": {
|
||||
"Integer": 3
|
||||
},
|
||||
"prompt": {
|
||||
"String": "The preflight lint step failed. Read the build output from context and fix all clippy lint warnings."
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"label": {
|
||||
"String": "Fix Lints"
|
||||
}
|
||||
}
|
||||
},
|
||||
"simplify_gpt": {
|
||||
"id": "simplify_gpt",
|
||||
"attrs": {
|
||||
"provider": {
|
||||
"String": "openai"
|
||||
},
|
||||
"model": {
|
||||
"String": "gpt-5.5"
|
||||
},
|
||||
"label": {
|
||||
"String": "Simplify (GPT-55)"
|
||||
},
|
||||
"prompt": {
|
||||
"String": "# Simplify: Code Review and Cleanup\n\nReview changes vs. origin for reuse, quality, and efficiency. Fix any issues found.\n\n## Phase 1: Identify Changes\n\nRun git diff (or git diff HEAD if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this conversation.\n\n## Phase 2: Launch Three Review Agents in Parallel\n\nUse the Agent tool to launch all three agents concurrently in a single message. Pass each agent the full diff so it has the complete context.\n\n### Agent 1: Code Reuse Review\n\nFor each change:\n\n1. Search for existing utilities and helpers that could replace newly written code. Use Grep to find similar patterns elsewhere in the codebase — common locations are utility directories, shared modules, and files adjacent to the changed ones.\n2. Flag any new function that duplicates existing functionality. Suggest the existing function to use instead.\n3. Flag any inline logic that could use an existing utility — hand-rolled string manipulation, manual path handling, custom environment checks, ad-hoc type guards, and similar patterns are common candidates.\n\nNote: This is a greenfield app, so focus on maximizing simplicity and don't worry about changing things to achieve it.\n\n### Agent 2: Code Quality Review\n\nReview the same changes for hacky patterns:\n\n1. Redundant state: state that duplicates existing state, cached values that could be derived, observers/effects that could be direct calls\n2. Parameter sprawl: adding new parameters to a function instead of generalizing or restructuring existing ones\n3. Copy-paste with slight variation: near-duplicate code blocks that should be unified with a shared abstraction\n4. Leaky abstractions: exposing internal details that should be encapsulated, or breaking existing abstraction boundaries\n5. Stringly-typed code: using raw strings where constants, enums (string unions), or branded types already exist in the codebase\n\nNote: This is a greenfield app, so be aggressive in optimizing quality.\n\n### Agent 3: Efficiency Review\n\nReview the same changes for efficiency:\n\n1. Unnecessary work: redundant computations, repeated file reads, duplicate network/API calls, N+1 patterns\n2. Missed concurrency: independent operations run sequentially when they could run in parallel\n3. Hot-path bloat: new blocking work added to startup or per-request/per-render hot paths\n4. Unnecessary existence checks: pre-checking file/resource existence before operating (TOCTOU anti-pattern) — operate directly and handle the error\n5. Memory: unbounded data structures, missing cleanup, event listener leaks\n6. Overly broad operations: reading entire files when only a portion is needed, loading all items when filtering for one\n\n## Phase 3: Fix Issues\n\nWait for all three agents to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it.\n\nWhen done, briefly summarize what was fixed (or confirm the code was already clean)."
|
||||
}
|
||||
}
|
||||
},
|
||||
"toolchain": {
|
||||
"id": "toolchain",
|
||||
"attrs": {
|
||||
"label": {
|
||||
"String": "Toolchain"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"script": {
|
||||
"String": "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"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
"simplify_opus": {
|
||||
"id": "simplify_opus",
|
||||
"attrs": {
|
||||
"label": {
|
||||
"String": "Simplify (Opus)"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"prompt": {
|
||||
"String": "# Simplify: Code Review and Cleanup\n\nReview changes vs. origin for reuse, quality, and efficiency. Fix any issues found.\n\n## Phase 1: Identify Changes\n\nRun git diff (or git diff HEAD if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this conversation.\n\n## Phase 2: Launch Three Review Agents in Parallel\n\nUse the Agent tool to launch all three agents concurrently in a single message. Pass each agent the full diff so it has the complete context.\n\n### Agent 1: Code Reuse Review\n\nFor each change:\n\n1. Search for existing utilities and helpers that could replace newly written code. Use Grep to find similar patterns elsewhere in the codebase — common locations are utility directories, shared modules, and files adjacent to the changed ones.\n2. Flag any new function that duplicates existing functionality. Suggest the existing function to use instead.\n3. Flag any inline logic that could use an existing utility — hand-rolled string manipulation, manual path handling, custom environment checks, ad-hoc type guards, and similar patterns are common candidates.\n\nNote: This is a greenfield app, so focus on maximizing simplicity and don't worry about changing things to achieve it.\n\n### Agent 2: Code Quality Review\n\nReview the same changes for hacky patterns:\n\n1. Redundant state: state that duplicates existing state, cached values that could be derived, observers/effects that could be direct calls\n2. Parameter sprawl: adding new parameters to a function instead of generalizing or restructuring existing ones\n3. Copy-paste with slight variation: near-duplicate code blocks that should be unified with a shared abstraction\n4. Leaky abstractions: exposing internal details that should be encapsulated, or breaking existing abstraction boundaries\n5. Stringly-typed code: using raw strings where constants, enums (string unions), or branded types already exist in the codebase\n\nNote: This is a greenfield app, so be aggressive in optimizing quality.\n\n### Agent 3: Efficiency Review\n\nReview the same changes for efficiency:\n\n1. Unnecessary work: redundant computations, repeated file reads, duplicate network/API calls, N+1 patterns\n2. Missed concurrency: independent operations run sequentially when they could run in parallel\n3. Hot-path bloat: new blocking work added to startup or per-request/per-render hot paths\n4. Unnecessary existence checks: pre-checking file/resource existence before operating (TOCTOU anti-pattern) — operate directly and handle the error\n5. Memory: unbounded data structures, missing cleanup, event listener leaks\n6. Overly broad operations: reading entire files when only a portion is needed, loading all items when filtering for one\n\n## Phase 3: Fix Issues\n\nWait for all three agents to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it.\n\nWhen done, briefly summarize what was fixed (or confirm the code was already clean)."
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
}
|
||||
}
|
||||
},
|
||||
"preflight_compile": {
|
||||
"id": "preflight_compile",
|
||||
"attrs": {
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"label": {
|
||||
"String": "Preflight Compile"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"script": {
|
||||
"String": "cargo check -q --workspace 2>&1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"fixup": {
|
||||
"id": "fixup",
|
||||
"attrs": {
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"max_visits": {
|
||||
"Integer": 3
|
||||
},
|
||||
"prompt": {
|
||||
"String": "The verify step failed. Read the build output from context and fix all clippy lint warnings, test failures, and generated docs errors."
|
||||
},
|
||||
"label": {
|
||||
"String": "Fixup"
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
}
|
||||
}
|
||||
},
|
||||
"preflight_lint": {
|
||||
"id": "preflight_lint",
|
||||
"attrs": {
|
||||
"max_retries": {
|
||||
"Integer": 0
|
||||
},
|
||||
"provider": {
|
||||
"String": "anthropic"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"model": {
|
||||
"String": "claude-opus-4-7"
|
||||
},
|
||||
"label": {
|
||||
"String": "Preflight Lint"
|
||||
},
|
||||
"script": {
|
||||
"String": "cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"edges": [
|
||||
{
|
||||
"from": "start",
|
||||
"to": "toolchain",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "toolchain",
|
||||
"to": "preflight_compile",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=succeeded"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "toolchain",
|
||||
"to": "exit",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "preflight_compile",
|
||||
"to": "preflight_lint",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=succeeded"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "preflight_compile",
|
||||
"to": "exit",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "preflight_lint",
|
||||
"to": "implement",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=succeeded"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "preflight_lint",
|
||||
"to": "fix_lints",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "fix_lints",
|
||||
"to": "preflight_lint",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "implement",
|
||||
"to": "simplify_opus",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "simplify_opus",
|
||||
"to": "simplify_gpt",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "simplify_gpt",
|
||||
"to": "verify",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "verify",
|
||||
"to": "fmt",
|
||||
"attrs": {
|
||||
"condition": {
|
||||
"String": "outcome=succeeded"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": "verify",
|
||||
"to": "fixup",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "fixup",
|
||||
"to": "verify",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "fmt",
|
||||
"to": "exit",
|
||||
"attrs": {}
|
||||
}
|
||||
],
|
||||
"attrs": {
|
||||
"model_stylesheet": {
|
||||
"String": "\n * { model: claude-opus-4-7; }\n "
|
||||
},
|
||||
"goal": {
|
||||
"String": "---\ntitle: Add Manual Run Retry\ntype: feat\nstatus: active\ndate: 2026-05-23\n---\n\n# Add Manual Run Retry\n\n## Summary\n\nAdd a **Retry** action for failed Fabro runs that creates and immediately starts a new run from the failed run's captured run definition. The new run is independent runtime state, records `retried_from: <source_run_id>`, and leaves the source run unchanged.\n\nThis is a fresh run, not resume/fork/rewind. It should copy the source run's durable definition and settings, but not checkpoints, stage state, sandbox state, PR links, billing, questions, conclusions, or pending controls.\n\n## Key Changes\n\n- Add `retried_from` as a nullable public field on `Run`.\n - Store it on the new run only.\n - Do not add a reverse `retried_by` field in v1.\n - Preserve backward compatibility with old events by defaulting to `null`.\n\n- Add `POST /api/v1/runs/{id}/retry`.\n - Response: `201` with the newly created/queued `Run`.\n - Eligible source states: `failed` except `reason=cancelled`, and `dead`.\n - Reject active, succeeded, cancelled, archived, and missing runs with existing API error patterns.\n - The new run should use the current authenticated actor as `created_by`.\n - The new run should preserve the source run's current `parent_id`, title, labels, workflow graph/source, resolved settings, git context, manifest/definition blob refs, and `fork_source_ref` if present.\n\n- Implement retry using a workflow operation similar in shape to `fork`, but without replaying checkpoint/runtime events.\n - Create a new run store.\n - Append `run.created` with `retried_from`.\n - Append `run.submitted`.\n - Queue/start it through the same internal start path used by `POST /runs/{id}/start`.\n\n- Update OpenAPI and generated clients.\n - Edit `docs/public/api-reference/fabro-api.yaml`.\n - Regenerate Rust API types through `cargo build -p fabro-api`.\n - Regenerate TypeScript client in `lib/packages/fabro-api-client`.\n\n- Update the web UI.\n - Add `Retry` to the run action menu for eligible failed/dead runs.\n - Disable the action while pending.\n - On success, navigate to the new run page and refresh run/list caches.\n - Add a compact \"Retried from\" link in the run summary panel when `retried_from` is present.\n - Add demo-mode support or hide the action in demo mode so the button never navigates to a missing demo run.\n\n## Test Plan\n\n- Rust workflow/store tests:\n - `run.created` serializes/deserializes `retried_from`.\n - Old `run.created` events project with `retried_from = None`.\n - Retry creates a new run with a different ID, copied durable definition, no runtime state, and `retried_from` set.\n - Retry preserves current `parent_id`, title, labels, git context, settings, and `fork_source_ref`.\n - Retry rejects succeeded, active, cancelled, and archived source runs.\n\n- Rust server/API tests:\n - `POST /runs/{id}/retry` on a failed run returns `201`, a new run ID, `retried_from`, and queued/started lifecycle state.\n - Source run remains unchanged.\n - `404` for unknown run.\n - `409` for non-retryable status.\n - Generated Rust API compiles against the updated OpenAPI contract.\n\n- Web tests:\n - `canRetry` returns true for failed/dead, false for cancelled/succeeded/active/archived.\n - Action menu renders `Retry` only when eligible.\n - Successful retry calls the generated client and navigates to `/runs/:newId`.\n - Retry errors show a useful toast/message.\n - Run summary panel renders the `Retried from` link when present.\n - Typecheck passes with regenerated client types.\n\n## Assumptions\n\n- V1 does not add a CLI `fabro retry` command.\n- V1 does not add automatic retry attempts, retry counts, or idempotency keys.\n- Multiple manual clicks after the first request completes may create multiple retry runs.\n- \"Same settings\" means the source run's captured durable definition/settings, not latest local files from the user's machine.\n- Cancelled runs are excluded because cancellation is user intent, not execution failure.\n"
|
||||
},
|
||||
"rankdir": {
|
||||
"String": "LR"
|
||||
}
|
||||
}
|
||||
},
|
||||
"graph_source": "digraph ImplementPlan {\n graph [\n goal=\"Implement and simplify\",\n model_stylesheet=\"\n * { model: claude-opus-4-7; }\n \"\n ]\n rankdir=LR\n\n start [shape=Mdiamond, label=\"Start\"]\n exit [shape=Msquare, label=\"Exit\"]\n\n toolchain [label=\"Toolchain\", shape=parallelogram, 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\", max_retries=0]\n preflight_compile [label=\"Preflight Compile\", shape=parallelogram, script=\"cargo check -q --workspace 2>&1\", max_retries=0]\n preflight_lint [label=\"Preflight Lint\", shape=parallelogram, script=\"cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1\", max_retries=0]\n fix_lints [label=\"Fix Lints\", prompt=\"The preflight lint step failed. Read the build output from context and fix all clippy lint warnings.\", max_visits=3]\n implement [label=\"Implement\", prompt=\"Read the plan file referenced in the goal and implement every step. Make all the code changes described in the plan. Use red/green TDD.\", model=\"gpt-55\", reasoning_effort=\"xhigh\"]\n simplify_opus [label=\"Simplify (Opus)\", prompt=\"@prompts/simplify.md\"]\n simplify_gpt [label=\"Simplify (GPT-55)\", prompt=\"@prompts/simplify.md\", model=\"gpt-55\"]\n verify [label=\"Verify\", shape=parallelogram, script=\"cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1 && cargo dev docs refresh 2>&1 && cargo dev docs check 2>&1\", goal_gate=true, retry_target=\"fixup\"]\n fixup [label=\"Fixup\", prompt=\"The verify step failed. Read the build output from context and fix all clippy lint warnings, test failures, and generated docs errors.\", max_visits=3]\n fmt [label=\"Format\", shape=parallelogram, script=\"cargo +nightly-2026-04-14 fmt --all 2>&1\", max_retries=0]\n\n start -> toolchain\n toolchain -> preflight_compile [condition=\"outcome=succeeded\"]\n toolchain -> exit\n preflight_compile -> preflight_lint [condition=\"outcome=succeeded\"]\n preflight_compile -> exit\n preflight_lint -> implement [condition=\"outcome=succeeded\"]\n preflight_lint -> fix_lints\n fix_lints -> preflight_lint\n implement -> simplify_opus -> simplify_gpt -> verify\n verify -> fmt [condition=\"outcome=succeeded\"]\n verify -> fixup\n fixup -> verify\n fmt -> exit\n}\n",
|
||||
"workflow_slug": "implement-plan",
|
||||
"source_directory": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
||||
"provenance": {
|
||||
"server": {
|
||||
"version": "0.241.0-nightly.1"
|
||||
},
|
||||
"client": {
|
||||
"user_agent": "fabro-cli/0.241.0-nightly.1",
|
||||
"name": "fabro-cli",
|
||||
"version": "0.241.0-nightly.1"
|
||||
},
|
||||
"subject": {
|
||||
"kind": "user",
|
||||
"identity": {
|
||||
"issuer": "https://github.com",
|
||||
"subject": "19"
|
||||
},
|
||||
"login": "brynary",
|
||||
"auth_method": "github"
|
||||
}
|
||||
},
|
||||
"manifest_blob": "5ba0dfb2c94cceb0f88cdefef95d77dda9b9ceb9cf8ab1dd0507d85b3b3fa828",
|
||||
"definition_blob": "8b6afc58f5efffd5b117a31134949c59ed0e00534e561c4fbdf8dddfbe8b4bfe",
|
||||
"git": {
|
||||
"origin_url": "https://github.com/fabro-sh/fabro",
|
||||
"branch": "main",
|
||||
"sha": "8f36772af3c2d398a2ae2b60cfd90b23b0fbaa83",
|
||||
"dirty": "dirty",
|
||||
"push_outcome": {
|
||||
"type": "not_attempted"
|
||||
}
|
||||
}
|
||||
},
|
||||
"web_url": "http://127.0.0.1:32276/runs/01KSA4H7JHBRPXZM3XTJ4SD9QA",
|
||||
"start": null,
|
||||
"status": {
|
||||
"kind": "starting"
|
||||
},
|
||||
"status_updated_at": "2026-05-23T10:01:45.858504Z",
|
||||
"last_event_at": "2026-05-23T10:02:03.081169Z",
|
||||
"pending_control": null,
|
||||
"checkpoints": [],
|
||||
"conclusion": null,
|
||||
"sandbox": {
|
||||
"provider": "daytona",
|
||||
"image": "buildpack-deps:noble",
|
||||
"snapshot": "fabro-v11",
|
||||
"runtime": {
|
||||
"id": "fabro-01KSA4H7JHBRPXZM3XTJ4SD9QA",
|
||||
"working_directory": "/home/daytona/workspace/fabro",
|
||||
"repo_cloned": true,
|
||||
"clone_origin_url": "https://github.com/fabro-sh/fabro",
|
||||
"clone_branch": "main",
|
||||
"workspace_root": "/home/daytona/workspace",
|
||||
"repos_root": "/home/daytona/repos",
|
||||
"primary_repo_path": "/home/daytona/repos/fabro-sh/fabro",
|
||||
"primary_repo_link": "/home/daytona/workspace/fabro"
|
||||
}
|
||||
},
|
||||
"pull_request": null,
|
||||
"superseded_by": null,
|
||||
"pending_interviews": {},
|
||||
"stages": {}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue