From agent-skills
Executes three specialist personas in parallel (code review, security audit, test coverage) and merges their reports into a go/no-go launch decision with a rollback plan.
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):
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 ooccoob/google-agent-skills-copy53plugins reuse this command
First indexed Apr 21, 2026
Showing the 6 earliest of 53 plugins
/shipExecutes three specialist personas in parallel (code review, security audit, test coverage) and merges their reports into a go/no-go launch decision with a rollback plan.
/final-reviewRuns a parallel review swarm (integration, diversity, risk, release readiness) to gate completion of a run or feature wave. Produces a verdict table and fix list.
/handoff-verifyExecutes parallel fan-out code review with 8 deterministic reviewers (static security, typecheck/lint/test, database, a11y, performance, cross-model) followed by adversarial re-verification of critical/high findings to eliminate false positives.
/deliverOrchestrates multi-AI quality assurance for delivery phase: runs code review and E2E tests, then presents findings for next steps.
/reviewPerforms final code quality review and security audit before deploy, producing approval/rejection report with prioritized findings.
/full-reviewOrchestrates multi-dimensional code review using specialized agents across architecture, security, performance, testing, and best practices. Produces structured output files with phased analysis.