mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-20 00:11:34 +00:00
New demo 11-ensemble.dot fans out to Opus (Anthropic), Gemini (Google), Codex (OpenAI), and Mercury (Inception) in parallel, then synthesizes results. Also generates PNG and SVG renderings for all existing demo dot files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
287 B
Text
11 lines
287 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="@docs-internal/prompts/simplify.md"]
|
|
|
|
start -> simplify -> exit
|
|
}
|