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 instructions/detailobsessed/codereviewbuddy/claude-mdgit clone --depth 1 https://github.com/detailobsessed/codereviewbuddyWrote 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/instructions/detailobsessed/codereviewbuddy/claude-md)<a href="https://agentmods.dev/instructions/detailobsessed/codereviewbuddy/claude-md"><img src="https://agentmods.dev/badge/instructions/detailobsessed/codereviewbuddy/claude-md.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.02236 | $0.02236 |
| Opus 5 | $0.01118 | $0.01118 |
| Sonnet 5 | $0.00447 | $0.00447 |
| Haiku 4.5 | $0.00224 | $0.00224 |
Grade A, and why
codereviewbuddy CLAUDE.md 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.
This is a copy
75% identical to claude-code-trace AGENTS.md — 177 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
codereviewbuddy is an MCP (Model Context Protocol) server built on FastMCP v3 that helps AI coding agents manage GitHub PR review comments. It provides tools for comment triage, CI diagnosis, stacked PR handling, issue tracking, and PR description review.
Tech stack: Python 3.14+, uv package manager, FastMCP v3, httpx, Pydantic Settings.
Common Commands
uv sync # Install all dependencies
poe check # Lint (ruff) + type check (ty) in parallel
poe fix # Auto-fix lint + format
poe test # Run tests excluding @pytest.mark.slow
poe test-all # Run all tests including slow
poe test-cov # Run tests with coverage (90% minimum required)
poe test-affected # Run only tests affected by changes (testmon)
poe prek # Run all pre-commit hooks (prek run --all-files)
poe docs # Serve docs locally (zensical serve)
Run a single test file or test function:
uv run pytest tests/test_comments.py
uv run pytest tests/test_comments.py::test_function_name -v
Architecture
Entry points:
- CLI:
codereviewbuddy.cli:app(cyclopts) — default command starts the MCP server - MCP server:
codereviewbuddy.server:mcp(FastMCP instance)
Core modules (src/codereviewbuddy/):
server.py— FastMCP server setup, tool registration, recovery-guided error handling (classifies errors by type and returns actionable hints)config.py— Pydantic Settings configuration viaCRB_*env vars (zero-config by default)models.py— Pydantic response models withmessageandnext_stepsfields for agent guidancegh.py— Primary GitHub access: wrapsghCLI subprocess for GraphQL/REST callsgithub_api.py— Fallback httpx-based GitHub API client using PAT tokenscli.py— CLI with subcommands:serve,install,check-env
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 · 180 lines · 2,236 tokens per session scan A 51c8ed090d3b
codereviewbuddy CLAUDE.md is an instructions file published in the GitHub repository detailobsessed/codereviewbuddy (0 stars, last pushed 3mo ago), licensed ISC. It adds 2,236 tokens to every session, about $0.0112 per session on Opus 5. A static security scan graded it A with 0 findings. It is 75% identical to claude-code-trace AGENTS.md, differing in 177 lines, and is treated as a copy.
Other instructions, from other repositories
reddit-research-mcp CLAUDE.md
Claude Code instructions for dialog-tools/reddit-research-mcp, covering reddit research mcp server - development guide, project overview, key files, releasing new versions and automated release process.
unraid CLAUDE.md
Claude Code instructions for dinglebear-ai/unraid, covering claude.md, what this is, identity and history (read before touching any url), "unraid-mcp" means five different things and agent plugins ship no claude code hooks.
mcp-server-mattermost AGENTS.md
AGENTS.md instructions for cloud-ru-tech/mcp-server-mattermost, covering claude.md, project overview, documentation references, commands and install dependencies.
reddit-mcp-server AGENTS.md
Instructions for ismailsaoulaj/reddit-mcp-server, covering agents.md, commands, architecture, gotchas and git workflow.
MCP-OpenStack-Ops copilot-instructions.md
Instructions for call518/MCP-OpenStack-Ops, covering github copilot instructions, 🚫 critical restrictions - always enforce, never execute these operations directly, python execution requirements and mcp tool safety control requirements.
sagemath-mcp CLAUDE.md
Instructions for XBP-Europe/sagemath-mcp, covering claude.md, project, commands, linting and testing.