fabro/.fabro/workflows/pr-simplify/workflow.fabro
2026-07-30 07:01:23 -04:00

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
}