← ClaudeAtlas

ship-itlisted

End-to-end ship loop: atomic commits, PR, tiered review (lite|heavy), fix every finding, re-review until zero remain, then merge-commit. lite runs a single /review pass; heavy spins up a dynamic Workflow with diff-aware review personas plus a Codex cross-model peer. Use when Stevie says "/ship-it", "ship it", "ship this branch", or wants the full commit-review-fix-merge pipeline run autonomously.
stevengonsalvez/agents-in-a-box · ★ 19 · AI & Automation · score 72
Install: claude install-skill stevengonsalvez/agents-in-a-box
# ship-it Conductor skill. Runs in the main loop (interactive steps stay interactive). The only expensive part, heavy review fan-out, runs as a dynamic Workflow. ```text /commit ──▶ gh pr create ──▶ REVIEW (lite|heavy) ──▶ fix ALL ──▶ re-REVIEW ▲ │ └── loop ────┘ until 0 │ CI green ──�� gh pr merge --merge ``` ## Arguments `/ship-it [lite|heavy] [pr-number]` - `lite` (default): single-pass PR review. Cheap, fast. - `heavy`: ce-style multi-persona fan-out + Codex cross-model peer. - `pr-number`: skip commit/PR-create, start at the review loop on that PR. ## Model routing (hard rules) | Role | Model | |------|-------| | Conductor, commit/PR/merge mechanics | session model | | Review agents (both tiers) | **Opus, always** (Fable only if Stevie says so in chat) | | Codex peer (heavy only) | Codex, **high reasoning effort** (put the literal `--effort high` in the peer prompt, see Step 3) | | Applying mechanical fixes | Sonnet (`fast-worker`) for well-specified edits; main loop for judgment calls | Review is the safety net: never route review to Sonnet or Haiku. lite's single pass runs inline only when the session model is Opus-class (Opus or Fable); on a Sonnet/Haiku session, spawn a `code-reviewer` agent with `model: opus` instead