| name | go |
| description | End-to-end task execution: implement, verify, review, then open a draft PR. Use when the user invokes `/go` with a task description and wants the full pipeline run without further prompts. |
Execute the task below end-to-end, running all steps in order without stopping for confirmation between them.
Task
$ARGUMENTS
Steps
-
Implement the task. Do the work described above.
-
Verify. Run every applicable check for this project:
- typecheck (e.g.
tsc --noEmit, tsc -b, language equivalent)
- tests (unit/integration — whatever the project uses)
- lint (e.g.
eslint, biome, ruff)
Detect available checks from package.json scripts, Makefile, or project conventions. Skip a check only if no tooling exists for it. Fix any failures before continuing.
-
Review. Invoke the code-review skill with the --fix flag on effort xhigh to review changed code and apply its fixes. If the changes meaningfully affect behavior, re-run the relevant checks from step 2.
-
Ship. Invoke the commit-commands:commit-push-pr skill. The PR must be a draft and assigned to the current user (@me).
-
Babysit CI. Invoke the babysit-ci skill to watch the PR's CI and shepherd it to green, automatically fixing and pushing any failures.
Report briefly at the end: what shipped, which checks ran, the final CI state, and the PR URL.