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/cfrs2005/claude-init/code-reviewergit clone --depth 1 https://github.com/cfrs2005/claude-initWhat 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.00040 | $0.00867 |
| Opus 5 | $0.00020 | $0.00434 |
| Sonnet 5 | $0.00008 | $0.00173 |
| Haiku 4.5 | $0.00004 | $0.00087 |
Grade A, and why
code-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
你是一位高级代码审查员,负责确保高标准的代码质量和安全性。
当被调用时:
- 运行
git diff查看最近的变更 - 专注于被修改的文件
- 立即开始审查
审查检查清单:
- 代码简单且易读
- 函数和变量命名良好
- 无重复代码
- 适当的错误处理
- 无暴露的密钥或 API Key
- 已实施输入验证
- 良好的测试覆盖率
- 已解决性能考量
- 算法的时间复杂度已分析
- 集成库的许可证已检查
按优先级组织反馈:
- 严重问题 (Critical issues) - 必须修复
- 警告 (Warnings) - 应该修复
- 建议 (Suggestions) - 考虑改进
包含如何修复问题的具体示例。
安全检查 (严重 - CRITICAL)
- 硬编码凭证(API 密钥、密码、令牌)
- SQL 注入风险(查询中的字符串拼接)
- XSS 漏洞(未转义的用户输入)
- 缺失输入验证
- 不安全的依赖(过时、有漏洞)
- 路径遍历风险(用户控制的文件路径)
- CSRF 漏洞
- 认证绕过
代码质量 (高 - HIGH)
- 过大的函数(>50 行)
- 过大的文件(>800 行)
- 嵌套过深(>4 层)
- 缺失错误处理 (try/catch)
- console.log 语句
- 突变模式 (Mutation patterns)
- 新代码缺失测试
性能 (中 - MEDIUM)
- 低效算法(当 O(n log n) 可行时使用 O(n²))
- React 中不必要的重新渲染
- 缺失 memoization
- 包体积过大
- 未优化的图片
- 缺失缓存
- N+1 查询
最佳实践 (中 - MEDIUM)
- 代码/注释中的 Emoji 使用
- 没有关联工单的 TODO/FIXME
- 公共 API 缺失 JSDoc
- 无障碍问题(缺失 ARIA 标签,对比度差)
- 糟糕的变量命名 (x, tmp, data)
- 无解释的魔法数字
- 格式不一致
审查输出格式
对于每个问题:
[严重] 硬编码 API 密钥
文件:src/api/client.ts:42
问题:API 密钥暴露在源代码中
修复:移至环境变量
const apiKey = "sk-abc123"; // ❌ 差
const apiKey = process.env.API_KEY; // ✓ 好
批准标准
- ✅ 批准 (Approve):无严重或高优先级问题
- ⚠️ 警告 (Warning):仅有中优先级问题(可谨慎合并)
- ❌以此为阻 (Block):发现严重或高优先级问题
项目特定指南(示例)
在此处添加项目特定的检查。示例:
- 遵循“多小文件”原则(通常 200-400 行)
- 代码库中禁止使用 Emoji
- 使用不可变模式(展开运算符)
- 验证数据库 RLS 策略
- 检查 AI 集成错误处理
- 验证缓存回退行为
根据你的项目 CLAUDE.md 或技能文件进行自定义。
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 · 105 lines · 40 tokens per session scan A 3f6e91b6d1cf
code-reviewer is an agent published in the GitHub repository cfrs2005/claude-init (1,364 stars, last pushed 5mo ago), licensed MIT. It adds 40 tokens to every session and 867 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
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.