From agent-skills
Run the pre-launch checklist via parallel fan-out to specialist personas, then synthesize a go/no-go decision
How this command is triggered — by the user, by Claude, or both
Slash command
/agent-skills:shipcommands/The summary Claude sees in its command listing — used to decide when to auto-load this command
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. ## Phase A — Parallel fan-out 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 t...
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:
code-reviewer — Run a five-axis review (correctness, readability, architecture, security, performance) on the staged changes or recent commits. Output the standard review template.security-auditor — Run a vulnerability and threat-model pass. Check OWASP Top 10, secrets handling, auth/authz, dependency CVEs. Output the standard audit report.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):
${CLAUDE_PLUGIN_ROOT}/references/orchestration-patterns.md).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:
code-reviewer and any failing tests, lint, or build output. Resolve duplicates between reviewers.security-auditor findings to launch blockers. Cross-reference with code-reviewer's security axis.code-reviewer's performance axis; cross-check Core Web Vitals if applicable.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]
/ship is designed for production-bound changes — when the blast radius is non-trivial, run the parallel review even if the diff looks small.npx claudepluginhub gagan114662/agent-skills --plugin agent-skills/shipOrchestrates parallel pre-launch checklist via specialist personas for code review, security audit, and test coverage, synthesizing go/no-go decision with rollback plan.
/shipExecutes universal 8-phase shipping workflow for code, content, marketing, sales, research, or any project. Supports dry-run, auto-approve, force, rollback, monitor, type/target overrides, checklist-only, and iterations flags.
/shipPushes the current branch, creates a pull request with an auto-generated body, optionally triggers review, and tracks merge to close the development loop after verification passes.
/shipExecutes full feature shipping workflow: verifies readiness, runs checks, deploys to staging then production, verifies, and announces. Outputs formatted status summary.
/shipExecutes full PR workflow from commit to production: pre-flight checks, PR creation, CI/review monitoring, merge, deployment, and validation with quality gates.
/shipArchives completed feature artifacts (define, design, build report) and creates a shipped summary with lessons learned. Part of a 5-phase AgentSpec workflow.