mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
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>
11 lines
273 B
Text
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
|
|
}
|