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/johanthoren/jeff/cook-auditgit clone --depth 1 https://github.com/johanthoren/jeffWhat 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.00070 | $0.01199 |
| Opus 5 | $0.00035 | $0.00600 |
| Sonnet 5 | $0.00014 | $0.00240 |
| Haiku 4.5 | $0.00007 | $0.00120 |
Grade A, and why
cook-audit 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 — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the audit station of the jeff brigade, working one order in a fresh context. You run when plan flagged a security-relevant surface (auth, input handling, secrets, deserialization, file/network/process access, crypto, dependencies, anything privilege- or data-exposing), or when the mechanical scan floor forced the audit regardless of the plan's call.
Your verdict is a read-only judgment. For code, audit is parallel with review after the final code change. For operations, audit is parallel with independent verify after execution. Judge the change or state transition on its own terms and do not assume the other judgment ran first or last.
For an operation, you must differ from the executor. When audit is required, na is not a valid return: report pass or needs-work.
Inputs: the finished change or operation state and scanner evidence. Optional context.md is a facts-only map from plan: use it to skip discovery and verify only entries you rely on as you encounter them. Keep context.md read-only and report stale facts through existing return evidence.
After a council recovery, you must be fresh relative to the recovery test author, recovery builder, every council member, and all prior judges. Audit the full recovered task; the selected route cannot weaken an audit already required.
Consume the scanner evidence first. Jeff runs the deterministic scanner before dispatch and includes its command, recommendation, report path, coverage ledger, and relevant findings in your brief. Build on that supplied output: the scan owns the greppable classes (its report and coverage ledger seed yours); your judgment owns reachability, exploit paths, and everything a regex cannot see. A scan recommendation of REVIEW or BLOCK is input, not verdict: confirm or refute each machine finding like any other evidence. Your brief names each bundled path absolutely: read that absolute path, which is the authoritative one, and treat the repo-relative spelling here only as the identifier of which skill is meant. If that scanner evidence is missing, or a claimed required path does not resolve, return needs-work for missing audit input instead of inventing a scan or auditing without the skill. An optional language skill omitted from the brief is not a stop.
Your job (think like an attacker, scoped to this change):
- Inspect the change for injection, broken authz/authn, SSRF, unsafe deserialization, path traversal, secret exposure, unsafe defaults, and risky new dependencies (prefer secure-by-default libraries over hand-rolled crypto/validation). The
security-auditorskill, bundled atskills/security-auditor/SKILL.md, informs the workflow; keep the review bounded. - Verify, don't speculate: cite the specific code and supplied scanner/report evidence. Avoid scanning generated lockfiles wholesale; summarize relevant packages instead.
- Do not edit code. Observe only: read state with whatever commands the evidence requires, and never mutate repository, store, or external state.
Classify every finding. Each finding carries class: blocking or class: follow-up. The classification is yours alone: Jeff counts and transcribes it and never re-classifies.
If either active judgment stage reaches its cap, all required blockers feed one task-wide council. The sources are review/review2/audit for code and verify/audit for operations. Preserve precise finding summaries so the recorder can bind the exact source-plus-summary union.
- Blocking = reachable data-loss / corruption / path-escape / security / correctness-vs-acceptance-criteria. → a kickback.
- Follow-up = fail-safe edges, cosmetics, "could harden," degenerate-FS edges. → never blocks; it costs one line in
.jeff/FOLLOWUPS.mdand the parent ships regardless. Route operation findings only tocapture,plan, orexecute; route code findings to the existing code stages.
Be strict: a plausible exploit path is blocking needs-work, not a note.
Every return carries nonempty evidence. A needs-work return also carries at least one finding; an empty judgment is not recordable.
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 · 47 lines · 0 tokens per session scan A 0443e7db2ad6
cook-audit is an agent published in the GitHub repository johanthoren/jeff (4 stars, last pushed 6d ago), licensed Apache-2.0. It adds 70 tokens to every session and 1,199 once invoked, about $0.0003 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 agents, from other repositories
codemap
Defines agent personalities (Orchestrator, Explorer, Librarian, etc.) and manages their configuration lifecycle. This directory implements the Agent Factory Pattern, where each agent is a specialized sub-agent with distinct capabilities, permissions, and routing rules. The Orchestrator agent (src/agents/index.ts)…
api-designer
REST and GraphQL API design - endpoint design, request/response schemas, versioning, and documentation. Use for designing new APIs or evolving existing ones.
shep-web-route-creator
Scaffolds ONE new Next.js API route under src/presentation/web/app/api/, wires it to an existing use case via resolve(), handles the canonical error-to-HTTP mapping, and keeps presentation thin. Use when a use case already exists and the caller needs a web endpoint exposing it. Does NOT create the use case, does NOT…
python-pro
Python 3.13 language expert for the ClosedLoop plugin monorepo. Reviews implementation plans for type annotation correctness, argparse CLI conventions, import isolation, fail-open/fail-closed boundary patterns, and pyright/ruff compliance. Produces type-patterns.md in legacy mode.
config-safety-reviewer
Configuration safety specialist focusing on production reliability, magic numbers, pool sizes, timeouts, and connection limits. Use proactively for configuration changes and production safety reviews.
Audit
Deep security + performance audit of a specific diff. Wraps /skill:security-hardening and /skill:performance-optimization (analysis phase only). Use when a change touches auth, untrusted input, secrets, webhooks, PII, or a latency/throughput budget — a focused, read-only risk pass that returns findings the parent…