gsdl-open-pr
Installation
SKILL.md
Open PR + Address the Review Bot
Turns a verified branch into a reviewed pull request. This is Step 8:
Pick up source → Brainstorm → SPEC.md → Slices → Review → Branch → Execute → Verify → PR + bot → Close loop
The point of this step is that automated review happens before a human is asked to look. A review bot catches a class of defect the deterministic gates in Step 7 can't — logic errors, missed edge cases, unsafe assumptions — and it is cheap to address them before a reviewer spends attention on them.
Forge support: GitHub, via the gh CLI. With Forge → provider: none in the config, this step
does not run at all — the orchestrator skips from Step 7 to Step 9 and records the skip.
Bot support is not hardcoded. Forge → review-bot in the config selects it:
| Value | Behaviour |
|---|---|
auto (default) |
Triage findings from whichever review bot commented on the PR |
<login> |
Only treat that account's comments as bot findings (e.g. cursor[bot]) |
none |
Open the PR and return immediately — no polling, no triage |