fabro/docs/internal/demo/09-simplify.fabro
Bryan Helmkamp d92ee47fe3
chore(demo): move simplify prompt to prompts/ alongside graphs
Rename `files-internal/prompts/simplify.md` to `prompts/simplify.md`
adjacent to the .fabro files that reference it, and update the
plan-implement and simplify demos plus the plan-implement test fixture
to match.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-30 08:35:48 -04:00

11 lines
273 B
Text

digraph Simplify {
graph [goal="Review and simplify recent code changes"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
simplify [label="Simplify", prompt="@prompts/simplify.md"]
start -> simplify -> exit
}