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 commands/axiomantic/spellbook/code-review-givegit clone --depth 1 https://github.com/axiomantic/spellbookWrote 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/commands/axiomantic/spellbook/code-review-give)<a href="https://agentmods.dev/commands/axiomantic/spellbook/code-review-give"><img src="https://agentmods.dev/badge/commands/axiomantic/spellbook/code-review-give.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.00017 | $0.02437 |
| Opus 5 | $0.00009 | $0.01218 |
| Sonnet 5 | $0.00003 | $0.00487 |
| Haiku 4.5 | $0.00002 | $0.00244 |
Grade A, and why
code-review-give 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 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.
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 — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Review: Give Mode (--give <target>)
Invariant Principles
- Evidence Over Assertion - Every finding needs file:line reference; false positives erode trust more than missed issues
- Severity Honesty - CRITICAL=security/data loss/outage; HIGH=bugs and broken correctness; MEDIUM=quality concern or technical debt; LOW=minor improvement; NIT=purely stylistic; QUESTION=needs contributor input before judgment; PRAISE=noteworthy positive
- Context Awareness - Severity scales with risk surface: a timing issue in financial code is CRITICAL; the same code in a demo script is LOW
- Full Coverage - Every changed file must be evaluated; gaps must be reported
- Prior Context - Existing review threads inform the current review; do not duplicate or contradict unresolved feedback without justification
Target Formats
Target formats: 123 (PR#), owner/repo#123, URL, branch-name
Step 0: Load Project Conventions
When reviewing a PR (target is a PR number, URL, or fetched diff), the diff is the authoritative code. The local working tree is on a different branch — it reflects the state before the PR's changes were applied.
NEVER read local files that appear in the PR's changed file set. The local version is old code. Reading it causes you to declare bugs "not present" when the PR introduces them — producing wrong REFUTED verdicts with high confidence.
Local files are safe to read ONLY when:
- The file is not in the PR's changed file list, AND
- You are reading it for convention context only (not to verify PR behavior)
When in doubt, treat a file as changed and use the diff.
Before reviewing any code, load project context:
- If invoked within a
developrun anddesign_context.project_standardsis provided, consume it: cite each binding rule (with itssource_path) when the diff violates it. This is the preferred source when available. - Read the root
AGENTS.md, plus every subdirectoryAGENTS.mdcovering a changed path — a module's own conventions override the root's - Read
CLAUDE.mdand/or.claude/CLAUDE.mdif present in repo root - Read
docs/coding-standards.mdanddocs/ai/testing-instructions.mdif present - Read
pyproject.toml,setup.cfg,.eslintrc,biome.json,ruff.toml, or equivalent style/lint config - Read
CONTRIBUTING.mdor any style guide the repo references - Check for
docs/code-review-instructions.mdor.github/code-review-instructions.md(standalone reactive fallback — used whenproject_standardsis NOT provided, e.g. invoked outside adeveloprun) - Sample 1-2 files adjacent to changed files to discover actual naming, style, and structural conventions — only files NOT in the PR's changed file set
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 · 217 lines · 17 tokens per session scan A d9248504f559
code-review-give is a command published in the GitHub repository axiomantic/spellbook (10 stars, last pushed today), licensed MIT. It adds 17 tokens to every session and 2,437 once invoked, about $0.0001 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 commands, from other repositories
audit-agents-skills
Audit quality of agents, skills, and commands in a Claude Code project.
boldguy-linkedin-answer
Draft a LinkedIn comment on a post, referencing the guide's relevant section, in Flow style with AI markers removed.
security-audit
Comprehensive security audit of your project AND Claude Code configuration. Analyzes secrets exposure, injection surfaces, dependencies, hook security, and produces a scored security posture assessment.
audit-quiz-coverage
Find quiz coverage gaps from recent guide/CHANGELOG/CC-releases changes and propose new questions.
sync
Check guide/landing synchronization status.
worktree
Create a git worktree for isolated feature/fix work.