Quality gates then ship - chains /prepare-delivery and /ship in one command.
Part of the agentsys ecosystem.
# Via agentsys (recommended)
claude plugin marketplace add agent-sh/agentsys
# Standalone
claude mcp add-json gate-and-ship '{"type":"url","url":"https://github.com/agent-sh/gate-and-ship.git"}'/gate-and-ship # Full: quality gates + ship
/gate-and-ship --skip-review # Skip review, still ship
/gate-and-ship --skip-docs # Skip docs sync
/gate-and-ship --base=develop # Against a specific base branch/gate-and-ship = /prepare-delivery + /ship
Step 1 - Runs /prepare-delivery (all quality gates: deslop, simplify, review loop, validation, docs sync)
Step 2 - Runs /ship (PR creation, CI monitoring, merge)
--base is forwarded to both steps. --skip-review and --skip-docs are forwarded to Step 1 only.
If Step 1 fails, Step 2 does not run.
Each piece runs independently:
| Command | Use when |
|---|---|
/prepare-delivery |
Want to review before deciding to ship |
/ship |
Already validated, just ship it |
/gate-and-ship |
Do both in sequence |
- prepare-delivery - quality gates
- ship - PR + CI + merge
Works with Claude Code, OpenCode, Codex CLI, and Cursor via agentsys.
MIT