build
Implement tasks incrementally — build, test, verify, commit. Add "auto" to run the whole plan in one approved pass.
Run the pre-launch checklist via parallel fan-out to specialist personas, then synthesize a go/no-go decision
> /plugin marketplace add addyosmani/agent-skills > /plugin install agent-skills@addy-agent-skills
How it fires
How this command gets triggered: by you, by Claude, or both.
/shipContext preview
What this command does when you run it.
Run the pre-launch checklist via parallel fan-out to specialist personas, then synthesize a go/no-go decision
description: Run the pre-launch checklist via parallel fan-out to specialist personas, then synthesize a go/no-go decision
Invoke the agent-skills:shipping-and-launch skill.
`/ship` is a **fan-out orchestrator**. It runs three specialist personas in parallel against the current change, then merges their reports into a single go/no-go decision with a rollback plan. The personas operate independently — no shared state, no ordering — which is what makes parallel execution safe and useful here.
Spawn three subagents concurrently using the Agent tool. **Issue all three Agent tool calls in a single assistant turn so they execute in parallel** — sequential calls defeat the purpose of this command.
In Claude Code, each call passes `subagent_type` matching the persona's `name` field:
1. **`code-reviewer`** — Run a five-axis review (correctness, readability, architecture, security, performance) on the staged changes or recent commits. Output the standard review template. 2. **`security-auditor`** — Run a vulnerability and threat-model pass. Check OWASP Top 10, secrets handling, auth/authz, dependency CVEs. Output the standard audit report. 3. **`test-engineer`** — Analyze test coverage for the change. Identify gaps in happy path, edge cases, error paths, and concurrency scenarios. Output the standard coverage analysis.
In other harnesses without an Agent tool, invoke each persona's system prompt sequentially and treat their outputs as if returned in parallel — the merge phase still works.
Constraints (from Claude Code's subagent model):
**Persona resolution.** If you've defined your own `code-reviewer`, `security-auditor`, or `test-engineer` in `.claude/agents/` or `~/.claude/agents/`, those take precedence over this plugin's versions — `/ship` picks up your customizations automatically. This is intentional: plugin subagents sit at the bottom of Claude Code's scope priority table, so user-level definitions win by design.
Once all three reports are back, the main agent (not a sub-persona) synthesizes them:
1. **Code Quality** — Aggregate Critical/Important findings from `code-reviewer` and any failing tests, lint, or build output. Resolve duplicates between reviewers. 2. **Security** — Promote any Critical/High `security-auditor` findings to launch blockers. Cross-reference with `code-reviewer`'s security axis. 3. **Performance** — Pull from `code-reviewer`'s performance axis; cross-check Core Web Vitals if applicable. 4. **Accessibility** — Verify keyboard nav, screen reader support, contrast (not covered by the three personas — handle directly here, or invoke the accessibility checklist). 5. **Infrastructure** — Env vars, migrations, monitoring, feature flags. Verify directly. 6. **Documentation** — README, ADRs, changelog. Verify directly.
Produce a single output:
## Ship Decision: GO | NO-GO ### Blockers (must fix before ship) - [Source persona: Critical finding + file:line] ### Recommended fixes (should fix before ship) - [Source persona: Important finding + file:line] ### Acknowledged risks (shipping anyway) - [Risk + mitigation] ### Rollback plan - Trigger conditions: [what signals would prompt rollback] - Rollback procedure: [exact steps] - Recovery time objective: [target] ### Specialist reports (full) - [code-reviewer report] - [security-auditor report] - [test-engineer report]
1. The three Phase A personas run in parallel — never sequentially. 2. Personas do not call each other. The main agent merges in Phase B. 3. The rollback plan is mandatory before any GO decision. 4. If any persona returns a Critical finding, the default verdict is NO-GO unless the user explicitly accepts the risk. 5. **Skip the fan-out only if all of the following are true:** the change touches 2 files or fewer, the diff is under 50 lines, and it does not touch auth, payments, data access, or config/env. Otherwise, default to fan-out. `/ship` is designed for production-bound changes — when the blast radius is non-trivial, run the parallel review even if the diff looks small.
Production-grade engineering skills for AI coding agents. Skills encode the workflows, quality gates, and best practices that senior engineers use when building software.
Get the whole plugin, auto-invokedRepo: addyosmani/agent-skills
Implement tasks incrementally — build, test, verify, commit. Add "auto" to run the whole plan in one approved pass.
Simplify code for clarity and maintainability — reduce complexity without changing behavior
Define and enforce this project's quality bar — interview, sane defaults, CONSTRAINTS.md
Break work into small verifiable tasks with acceptance criteria and dependency ordering
Conduct a five-axis code review — correctness, readability, architecture, security, performance
Start spec-driven development — write a structured specification before writing code