mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
commit
fb683c26a4
2 changed files with 292 additions and 0 deletions
21
graph.fabro
Normal file
21
graph.fabro
Normal 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
271
run.json
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue