fabro/graph.fabro
Fabro ffbd66f114 init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-07-07 17:00:12 +00:00

21 lines
798 B
Text

digraph PatchCves {
graph [
goal="Triage GitHub Dependabot alerts and open verified dependency-patch PRs",
model_stylesheet="
* { model: claude-opus-4-8; }
"
]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
// Single agent stage. The prompt is the CVE-patching instructions inlined
// as a bundled prompt file (@prompts/patch-cves.md), which travels in the
// run manifest — so it works without runtime skill discovery. This mirrors
// the eng-patch-cves skill; once server-side skill discovery is fixed we can
// switch back to prompt="/eng-patch-cves" and drop the duplicated prompt.
patch [label="Patch CVEs", prompt="@prompts/patch-cves.md"]
start -> patch -> exit
}