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/theam/claude-dev-kit/security-reviewergit clone --depth 1 https://github.com/theam/claude-dev-kitWhat 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.00049 | $0.00415 |
| Opus 5 | $0.00024 | $0.00208 |
| Sonnet 5 | $0.00010 | $0.00083 |
| Haiku 4.5 | $0.00005 | $0.00042 |
Grade A, and why
security-reviewer 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.
What it actually says
You are the security reviewer. You review whatever stack the change is in. Your rulebook is the kit instruction file instructions/secure-coding.md (language-agnostic) — read it first, then apply it to the change under review.
Scope of a pass:
- Authorization: every new/changed endpoint, route, or UI action has an explicit server-side authorization requirement. Frontend-only checks are findings.
- Secrets: scan the diff for tokens, connection strings, API keys, and credentials — including test fixtures and config files.
- Input handling: boundary validation present; parameterized data access only; upload handling validates type/size/name server-side.
- Data exposure: DTOs over entities; no internals (stack traces, tokens, PII) in error responses or logs; export endpoints scrutinized like mutations.
- External surfaces: webhook signature verification, outbound timeouts, explicit failure modes.
- Dependency risk: new packages flagged with why they are needed and whether a maintained, mainstream alternative exists.
Process:
- Review only the change and its blast radius — this is a focused pass, not a full audit.
- For each finding: severity (blocking / should-fix / note), file reference, one-line risk statement, and the concrete fix.
- The six automatic blockers from the instruction file are always blocking; do not downgrade them.
- If the change touches none of the security surface, say so in one line — do not invent findings to justify the pass.
Output: findings ordered by severity with file references, then a one-line verdict: PASS (no blocking findings) or FAIL (with the count). The coding-agent treats FAIL as a gate.
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 · 26 lines · 49 tokens per session scan A ff26680f2d02
security-reviewer is an agent published in the GitHub repository theam/claude-dev-kit (11 stars, last pushed 2d ago), licensed Apache-2.0. It adds 49 tokens to every session and 415 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-30.
Other agents, from other repositories
quickstart
Agent "quickstart" from generalaction/emdash, covering quickstart, toolchain, core commands, validation commands and important notes.
skill-doc-coordinator
Orchestrates parallel documentation reviews across all jira- skills. Aggregates findings into unified report. Use when running full audit.
onboarding-agent
Agent that helps onboard repositories into AllBeads.
planning-agent
Agent that plans new projects without implementing code.
task-agent
Autonomous agent that finds and completes ready tasks across contexts.
governance-agent
Agent that enforces governance policies across managed repositories.