mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Re-extracted all DOT examples from docs, added test fixtures for new pages (preview, brave-search, daytona, sub-workflow), recreated assembled snippet files, and excluded not-yet-working vnc-access and vpn-connections pages. 40 files now validate and dry-run clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
791 B
Text
13 lines
791 B
Text
digraph SubWorkflow {
|
|
graph [goal="Create a Python module (tempconv.py) that converts between Celsius, Fahrenheit, and Kelvin, with pytest tests"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
plan [label="Plan", prompt="Analyze the goal. List the functions needed, their signatures, and edge cases. Write the plan to plan.md."]
|
|
impl [label="Implement & Test", shape=house, stack.child_dotfile="implement-and-test.dot", manager.max_cycles=50]
|
|
review [label="Review", prompt="Read every file the child workflow created. Run the tests yourself with 'python3 -m pytest -v'. Verify the implementation matches plan.md and all tests pass. Write a short verdict to review.md."]
|
|
|
|
start -> plan -> impl -> review -> exit
|
|
}
|