⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-07-02 18:28:27 +00:00
commit fb683c26a4
2 changed files with 292 additions and 0 deletions

21
graph.fabro Normal file
View file

@ -0,0 +1,21 @@
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
}

271
run.json Normal file

File diff suppressed because one or more lines are too long