mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +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>
17 lines
485 B
Text
17 lines
485 B
Text
digraph Example {
|
|
graph [
|
|
model_stylesheet="
|
|
* { llm_model: claude-haiku-4-5; }
|
|
.coding { llm_model: claude-sonnet-4-5; reasoning_effort: high; }
|
|
#review { llm_model: gemini-3.1-pro-preview; }
|
|
"
|
|
]
|
|
|
|
start [shape=Mdiamond]
|
|
spec [label="Write Spec"]
|
|
implement [label="Implement", class="coding"]
|
|
review [label="Review"]
|
|
exit [shape=Msquare]
|
|
|
|
start -> spec -> implement -> review -> exit
|
|
}
|