| name | ship |
| description | Run the full quality gauntlet and prepare for release |
| argument-hint | [--dry-run] |
| license | MIT |
| metadata | {"author":"template","version":"1.0.0"} |
Ship Feature
Runs the complete quality pipeline: lint, typecheck, test, review, QA, and release prep.
Usage
/ship # Full pipeline
/ship --dry-run # Show what would run without executing
Steps
- Lint —
npm run lint (or project equivalent)
- Typecheck —
npx tsc --noEmit
- Test —
npm test
- Code Review — Spawn
code-reviewer agent on staged changes
- QA — Spawn
qa agent for test execution and bug report
- Release Check — Spawn
release-manager agent for readiness assessment
If any step fails, stop and report. Do not proceed to the next step.
Output
Reports pass/fail for each step. If all pass, reports ready for release.