mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
14 lines
469 B
Text
14 lines
469 B
Text
digraph PrSimplify {
|
|
graph [
|
|
goal="Run the simplify code-review pass on PR #{{ inputs.pr }}: review the changes for reuse, quality, and efficiency, apply the fixes, and update the existing PR in place.",
|
|
default_model="claude-opus",
|
|
rankdir=LR
|
|
]
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
simplify [label="Simplify Pass", prompt="@prompts/simplify.md"]
|
|
|
|
start -> simplify -> exit
|
|
}
|