mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-14 23:22:51 +00:00
21 lines
798 B
Text
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
|
|
}
|