Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/acendas/shipyard/dispatching-code-reviewnpx skills add Acendas/shipyard --skill dispatching-code-reviewgit clone --depth 1 https://github.com/Acendas/shipyardWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00014 | $0.02205 |
| Opus 5 | $0.00007 | $0.01103 |
| Sonnet 5 | $0.00003 | $0.00441 |
| Haiku 4.5 | $0.00001 | $0.00220 |
Grade A, and why
dispatching-code-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dispatching a Code Review
Render before asking. Before any AskUserQuestion, render the decision context as assistant chat text. Content that exists only in a Read result, a subagent/Agent return, or the question/option strings does not count as rendered (the UI shows a compact card) — restate it in chat first.
The companion to dispatching-spec-review. Spec review answers "is what was asked delivered?"; code review answers "is what was delivered any good?". Same fresh-context subagent pattern, different concern set.
When to Invoke
| Caller | Scope | Trigger |
|---|---|---|
/ship-execute post-task gate |
One task | Optional — fires only when effort: M|L|XL; effort: S skips both spec and code review |
/ship-execute wave VERIFY |
Wave-level diff | Optional — fires when wave touched security-relevant, financial-domain, or database/persistence code (migrations, schema, queries, repositories) |
/ship-review |
Sprint or feature | Required before user approval |
/ship-quick |
Single-change diff | Optional flag (--review) |
Code review is more expensive than spec review (broader concern surface). /ship-review runs it mandatorily before approval; the post-task path remains optional and gated on effort.
Inputs
scope—"task" | "wave" | "feature" | "sprint"target_ids— list of task / feature IDs (or null when scope is sprint).base_ref/head_ref— diff range.concerns— subset of["security", "bugs", "silent-failures", "patterns", "tests", "observability", "data"]. Default: all. Thedataconcern auto-gates — it produces findings only when the diff touches persistence (migrations, schema, SQL/ORM, repositories, indexes) and no-ops otherwise, so including it by default is free. Caller can narrow (e.g.,["security", "bugs"]for a wave that didn't touch tests), but whenever the diff touches the database,dataMUST be among the concerns (it is, under the default). In parallel-split dispatch (seeship-review/references/code-review-orchestration.md), assigndatato exactly one subagent so it isn't dropped or duplicated.data_dir— literal<SHIPYARD_DATA>path.project_rules_path—.claude/rules/*.mdpaths so the patterns scanner has the project's conventions. Shipyard does not inject its own rules into.claude/rules/; only project-authored rules pass through here.quality_standards_path— the literal path toproject-files/references/code-quality-standards.md. Always resolved and included, not gated further here — code review is itself effort-gated at the caller (fires only foreffort: M|L|XLat the post-task site; unconditionally at/ship-review), so by the time this skill dispatches, the digest is always in scope. Not narrowed byconcerns— each of the six general concerns points back at its own§<concern> ▸ Verifyhalf regardless of which subset is active.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 102 lines · 14 tokens per session scan A e24f6f835e07
dispatching-code-review is a skill published in the GitHub repository Acendas/shipyard (2 stars, last pushed 20d ago), licensed MIT. It adds 14 tokens to every session and 2,205 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
engenharia-de-requisitos
Use when doing requirements engineering, business analysis, or the software-engineering stage of discovering / specifying / validating / managing requirements — the stage BEFORE code (what to build) and AFTER (was the right thing built?), for new projects and for evolutions of existing ones. Triggers (EN)…
engenharia-de-requisitos
Use when doing requirements engineering, business analysis, or the software-engineering stage of discovering / specifying / validating / managing requirements — the stage BEFORE code (what to build) and AFTER (was the right thing built?), for new projects and for evolutions of existing ones. Triggers (EN)…
write-epic
Produces a complete epic definition following Atlassian agile guidance. An epic captures a large initiative that is too big for a single sprint and must be decomposed into user stories.
write-user-story
Produces a complete, ready-to-groom user story following the standard Atlassian/agile format. It applies the INVEST criteria and the 3 Cs framework (Card, Conversation, Confirmation) to ensure each story is well-scoped, valuable, and testable — not just syntactically correct.
backlog-grooming
Review Agiflow Planning tasks for readiness, prioritize approved work, group related tasks into work units, and promote ready tasks to Todo. Use when grooming a backlog, organizing planned tasks, creating work units, or deciding what should be executed next.
project-plan
Turn a product goal or feature request into a clear Agiflow project plan with small, testable tasks in Planning status. Use when starting a project, decomposing a feature, clarifying requirements, or converting an idea into an actionable backlog.