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 skills add Justinmendezai/The-Adam-Repo --skill dispatch-buildergit clone --depth 1 https://github.com/Justinmendezai/The-Adam-RepoWrote 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.
[](https://agentmods.dev/skills/justinmendezai/the-adam-repo/dispatch-builder)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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) whenadam.jsonhastopology_depth: 3. The manager has already read the slice'sSPEC.mdand built the scoped prompt; this skill's template is what the manager fills in. - Directly from the Tier-1 orchestrator (
orchestrate-build) whentopology_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 inadam.jsonfor 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 redplan/CONTEXT.mdadam.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.
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.
- 12d ago First seen · 167 lines · 49 tokens per session scan A 881361784ac6
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.
Other skills, from other repositories
recipe-create-meet-space
Create a Google Meet meeting space and share the join link.
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…
atmos-config
Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.
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…
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.
remove
Remove a deployed framework or addon from the current workspace.