dispatch-builder

dispatch-builder is a skill for Claude Code, Codex from Justinmendezai/The-Adam-Repo. It costs 49 tokens per session (2,028 once invoked), scanned A, original, Apache-2.0.

A workflow step that sends one ready development task to a separate Composer 2 coding agent. The agent works in its own copy of the repository and reports when the task is complete.

In plain words
What is it for?
Use it to implement one independent task, or a task that must wait for another task still in progress. It can also test the first task dispatch before work is split across several agents.
Why use it?
It lets a larger build handle one task at a time while keeping the main work isolated. It also checks that the task's tests pass before reporting completion.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions AGENTS.md.

Good fit Use it to implement one independent task, or a task that must wait for another task still in progress. It can also test the first task dispatch before work is split across several agents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/justinmendezai/the-adam-repo/dispatch-builder
Install

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.

Any agent
npx skills add Justinmendezai/The-Adam-Repo --skill dispatch-builder
Clone the repo
git clone --depth 1 https://github.com/Justinmendezai/The-Adam-Repo

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dispatch-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/justinmendezai/the-adam-repo/dispatch-builder/github.svg)](https://agentmods.dev/skills/justinmendezai/the-adam-repo/dispatch-builder)
Your own site
<a href="https://agentmods.dev/skills/justinmendezai/the-adam-repo/dispatch-builder"><img src="https://agentmods.dev/badge/skills/justinmendezai/the-adam-repo/dispatch-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dispatch-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/justinmendezai/the-adam-repo/dispatch-builder"><img src="https://agentmods.dev/badge/skills/justinmendezai/the-adam-repo/dispatch-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,028 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.02028
Opus 5 $0.00024 $0.01014
Sonnet 5 $0.00010 $0.00406
Haiku 4.5 $0.00005 $0.00203

Measured 12d ago against content hash 881361784ac6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

dispatch-builder 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 12d 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.

skills/dispatch-builder/SKILL.md · 167 lines

How it starts

The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.

dispatch-builder

One slice, one Composer 2 subagent. The subagent works in isolation (worktree by default), turns the failing tests green, and emits the completion signal.

Tier in the topology

This skill is Tier 3 (the worker dispatch). It can be called two ways:

  • From the Tier-2 manager (dispatch-manager) when adam.json has topology_depth: 3. The manager has already read the slice's SPEC.md and built the scoped prompt; this skill's template is what the manager fills in.
  • Directly from the Tier-1 orchestrator (orchestrate-build) when topology_depth: 2. Use 2-tier for small builds (≤5 slices, tiny SPECs) where the manager hop is pure overhead. Probe both depths on the first wave and lock the choice in adam.json for the rest of the build.

Either way, the prompt template below is the contract for the worker.

When to use

  • A single slice with no parallel siblings.
  • A slice that depends on another in-progress slice and must run after it.
  • The first dispatch of a new build (smoke-test the loop before going parallel).

For multiple independent slices, use dispatch-parallel.

Inputs

  • slices/<id>/SPEC.md (must exist)
  • tests/<id>/ populated and red
  • plan/CONTEXT.md
  • adam.json

Workflow

1. Pick runtime

Choice Use when
best-of-n-runner (worktree, branch isolation) Default. Anything multi-file, anything that might collide with parallel work.
generalPurpose (in-place) Tiny single-file change, debugging an in-progress slice, or when you want the subagent to see your live edits.

2. Build the prompt

Use this template. Every section is required. Paths, not contents: never paste the SPEC body into the prompt; the worker reads it by path. Reproduce the verifier and paths_out_of_scope verbatim so the worker doesn't have to infer them.

You are a Composer 2 subagent implementing slice {{SLICE_ID}} of a adam build.

## Repo
{{REPO_PATH}}

## Read these (paths only)
- slices/{{SLICE_ID}}/SPEC.md          # the full spec — read it first
- slices/{{SLICE_ID}}/verify.sh        # the done-signal you must pass
- plan/CONTEXT.md                      # conventions and shared language
- .cursor/rules/adam.md          # house rules

## Paths in scope (only files you may write)
{{PATHS_IN_SCOPE — copied verbatim from SPEC.md}}

## Paths out of scope (never modify)
{{PATHS_OUT_OF_SCOPE — SPEC.md list plus every OTHER slices/<other-id>/ directory plus packet/, plan/, agent-control/, orchestration-runs/, slices/{{SLICE_ID}}/SPEC.md, slices/{{SLICE_ID}}/tests/, slices/{{SLICE_ID}}/verify.sh}}

## Verifier (the done-signal)
This exact command must exit 0 before you emit COMPLETE. Reproduced verbatim from slices/{{SLICE_ID}}/SPEC.md `verify:` block:

    {{VERIFIER_COMMAND}}

The orchestrator will re-run this independently after you finish. It will not trust your self-report.

## Hard rules
1. Run the verifier after each meaningful change. Do not declare done while it exits non-zero.
2. Make the failing tests at the paths listed in the spec turn green. Do NOT edit those test files.
3. Stay within `Paths in scope`. If you genuinely need to touch a path that isn't in scope, stop and emit `<adam>BLOCKED</adam>` with a one-paragraph explanation.
4. Surgical and simple. Write the minimum code that turns the tests green — no speculative abstractions, configurability, or error handling the SPEC didn't ask for. Every changed line must trace to the SPEC. Don't refactor what isn't broken, match the existing style, and only remove orphans your change created. Prefer minimal diffs over rewriting files. If the SPEC didn't call for something and you can't proceed without it, emit `<adam>BLOCKED</adam>` rather than guessing.
5. Match the conventions in plan/CONTEXT.md and the rules in .cursor/rules/adam.md.
6. If the slice's SPEC has `human_gated: true` (terminal `integration-live` only) or live creds are needed, stub/mock first, emit `<adam>CODE-COMPLETE</adam>` with the live `operator_command`, append to `agent-control/human-queue.md`. Mock-path verifier green → still emit COMPLETE when possible.

## Run-result contract
Before emitting the completion signal, write scratch/run-results/{{SLICE_ID}}.json matching ~/adam/schemas/run-result.schema.json with:
- kind: "dispatch"
- id: "{{SLICE_ID}}"
- status: "success" | "blocked" | "fail" | "code-complete"
- branch, commits, files_changed, files_created, tests, summary
- verifier: { command: "<verifier>", exit_code: <int> }
Also append a one-paragraph entry to scratch/last-run.md.

## Completion signal
When the verifier exits 0, the test suite for this slice is green, you have not modified any forbidden path, and the run-result is written, emit exactly:

<adam>COMPLETE</adam>

For terminal live slices: emit `<adam>CODE-COMPLETE</adam>` followed by `operator_command: <command>` and append to `human-queue.md`.

## Token discipline
- Do not narrate. Read. Edit. Run. Report only the final outcome.
- Commit your work in logical chunks; do not push.

Read the full file on GitHub · 167 lines

Changes

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.

  1. 12d ago First seen · 167 lines · 49 tokens per session scan A 881361784ac6

Subscribe to this mod's changes

dispatch-builder is a skill published in the GitHub repository Justinmendezai/The-Adam-Repo (12 stars, last pushed 18d ago), licensed Apache-2.0. It adds 49 tokens to every session and 2,028 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

magpie-security-issue-import-from-md

Open one or more tracking issues from a markdown file containing a batch of security findings. Each finding becomes one tracker landing in the Needs triage board column. The file itself is the full report — there is no inbound reporter to reply to and no PR to inspect.

apache/magpie · 73 tokens

remove

Remove a deployed framework or addon from the current workspace.

jmagly/aiwg · 12 tokens