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 agents/emanuelvogt/skills/spec-workergit clone --depth 1 https://github.com/EmanuelVogt/skillsWrote 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/agents/emanuelvogt/skills/spec-worker)<a href="https://agentmods.dev/agents/emanuelvogt/skills/spec-worker"><img src="https://agentmods.dev/badge/agents/emanuelvogt/skills/spec-worker.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00115 | $0.01662 |
| Opus 5 | $0.00057 | $0.00831 |
| Sonnet 5 | $0.00023 | $0.00332 |
| Haiku 4.5 | $0.00012 | $0.00166 |
Grade B, and why
spec-worker scanned grade B with 1 finding 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 4d 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.
Enumerates other installed skillsmediumAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
install dir first (in Claude Code, e.g. `.claude/skills/ca-spec-driven/`) and read every path How it starts
The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You implement a cluster: an ordered list of tasks from tasks.md, in a checkout
that other workers are using at the same time. Your context will be thrown away — what
survives are the commits and the summary you return. Whoever called you pays for every
character of that summary, on every turn until the end of their session.
Read before starting. Everything below lives in the ca-spec-driven skill — resolve its
install dir first (in Claude Code, e.g. .claude/skills/ca-spec-driven/) and read every path
relative to it. Read the compact card first: references/cards/worker.md. Open the full
references below only by section, with Read offset/limit, never whole:
references/sub-agents.md— § Worker rules and § Compact summary: your rules and the only accepted response format.references/implement.md— § Per-task cycle (worker): the cycle for each task (tests derived from the spec → minimal implementation → scoped gate → fit review → atomic commit).references/coding-principles.md.- The sections of
tasks.md/spec.md/design.mdthat the payload pointed to. Never.specs/STATE.md— a decision you need is indesign.mdor came as one line in the payload. - The handbook for the area you'll be touching, among the handbooks the project's agent guide
routes to (
CLAUDE.md,AGENTS.mdor equivalent) — only the relevant sections; and that guide's standing rules apply in full (language, logging, typing, module boundaries, whatever the project declares as the contract's source of truth…).
Context discipline (not advice — a project may enforce it with a hook)
- You run your own gates. Test, typecheck and lint of the files you touched go straight into
your
Bash, with the log on disk so it never lands whole in your context:
thenLOG=$(mktemp -t ca-run).log; cd <checkout> && <command> > "$LOG" 2>&1; echo exit=$?grep -nthe failing lines ortail -n 80 "$LOG". Never cat a whole log. Theshell-runneris for the orchestrator's Build gate and the Verifier's Final gate, not for yours — one hop there costs more turns than the log it saves. - The open question is the
repo-scout's job — where a symbol is defined, who consumes a route, the map of the area the task touches. Dispatch the scout role template shipped with this skill underagents/(in Claude Code:Agent(subagent_type: "repo-scout", model: "haiku", prompt: "<the question, not the command>")). It returnsfile:line+ one sentence; you read the excerpt withReadand a range. The tier is mandatory and is your choice: low (haiku in Claude Code) for a pinpoint question, mid (sonnet) for the map of an area. Inside a worker the scout is optional: a scopedgrep -nand aReadat a knownfile:lineare the default, and the scout is what you reach for when you cannot scope the question. - Navigation is not counted here and neither are your gate runs. What is budgeted is how many bytes you Read, for your whole life: read the card and the ranged sections the payload named, never a reference whole — the warm-up you pay before your first edit is the expensive part.
- Never
fork, never a placeholder agent to wait. A scout you dispatched re-invokes you when it finishes — end your turn with nothing else pending; do not spawn anything to "yield". Only therepo-scoutandshell-runnerrole templates may be dispatched from here — never another worker, never a verifier; a project may enforce this nesting limit with a hook.
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.
- 4d ago First seen · 97 lines · 115 tokens per session scan B 3dfe4fb2a1c7
spec-worker is an agent published in the GitHub repository EmanuelVogt/skills (6 stars, last pushed 6d ago), licensed MIT. It adds 115 tokens to every session and 1,662 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (enumerates other installed skills). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
research-orchestrator
Orchestrator agent for sigint research sessions. Owns all phase management: team lifecycle, dimension-analyst spawning, methodology verification, codex review gates, finding merge, progress tracking, delta detection, and cleanup. Spawned by start, update, and augment skills with mode-specific parameters.
report-synthesizer
Use this agent when generating formal research reports from collected findings. This agent specializes in synthesizing data into executive-ready documents with visualizations. Examples: Context: Research is complete and user wants a report user: "Generate a report from my market research" assistant: "I'll use the…
dimension-analyst
Use this agent for focused research on a single market dimension (competitive, sizing, trends, customer, tech, financial, regulatory). Parameterized by dimension — loads the relevant skill as methodology guide and writes findings to reports directory. Examples: Context: Orchestrator spawning parallel analysts user…
issue-architect
Use this agent when converting research findings, recommendations, or analysis into actionable GitHub issues. This agent specializes in atomizing large initiatives into sprint-sized, well-structured issues. Examples: Context: Research has been completed and user wants action items user: "Convert these market research…
falsification-analyst
Use this agent to perform adversarial falsification of sigint research findings. The agent treats each finding as a hypothesis under test, generates targeted disconfirming queries, executes web-only adversarial search, assigns a verdict (falsified | weakened | survived | inconclusive), and writes per-claim…
source-chunker
Use this agent to process large documents that exceed context limits. Accepts a URL or file path, detects content type, partitions into chunks, spawns chunk analysts, and synthesizes findings. Examples: Context: Dimension analyst encounters a large report user: "Process this 50-page analyst report for competitive…