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 skills/orlando-japan/claude-code-setting/code-reviewnpx skills add orlando-japan/claude-code-setting --skill code-reviewgit clone --depth 1 https://github.com/orlando-japan/claude-code-settingWrote 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/skills/orlando-japan/claude-code-setting/code-review)<a href="https://agentmods.dev/skills/orlando-japan/claude-code-setting/code-review"><img src="https://agentmods.dev/badge/skills/orlando-japan/claude-code-setting/code-review.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.00034 | $0.00667 |
| Opus 5 | $0.00017 | $0.00333 |
| Sonnet 5 | $0.00007 | $0.00133 |
| Haiku 4.5 | $0.00003 | $0.00067 |
Grade A, and why
code-review 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 3d 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 — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code review
Reviews find real problems. They don't rewrite code or bikeshed style.
Four axes, in order
- Correctness — does it do what it claims?
- Security — can it be exploited?
- Readability — can the next person understand it?
- Performance — does it matter at this code's actual scale?
Correctness before style. Security before correctness? No — a correct-and-exploitable function is still a correctness failure.
Correctness checklist
- Logic: off-by-one, wrong operator, inverted condition, wrong default.
- Error handling: swallowed errors, errors thrown into the void, errors used for control flow.
- Edge cases: empty list, null, zero, negative, unicode, timezone, leap year.
- Concurrency: races, deadlock, lost update, stale read.
- Lifecycle: cleanup, cancellation, resource leak.
- API contract: matches what callers assume.
Security checklist
- Input validation at trust boundaries.
- Injection: SQL, shell, template, HTML, JSON-in-URL.
- Auth: authentication vs authorization, IDOR, privilege checks in UI only (bad).
- Secrets: logs, errors, git history.
- Crypto: homegrown, weak RNG, missing verification.
- Dependency: known CVE, typo-squat, postinstall.
Readability checklist
- Names: does the name tell you why, not just what?
- Nesting: more than 3 levels = flatten.
- Function length: more than a screen = split.
- Comments: do they add non-obvious why, or narrate what?
- Don't flag what the linter catches.
Performance — only if it matters
Don't flag:
O(n)wheren < 100.forvsmapstyle choices.- String concatenation in code that runs once.
Do flag:
O(n²)loops wherencan be large.- DB queries inside loops (N+1).
- Sync I/O in a hot request path.
- Unbounded memory growth.
Output
Group findings by severity:
- Blocker — would ship a real bug or exploit.
- Should fix — would cause confusion or minor issues.
- Nit — style, naming, optional.
For each: path:line + one-sentence problem + one-sentence fix. End with a verdict: ship / changes needed / blocked.
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.
- 3d ago First seen · 81 lines · 34 tokens per session scan A d35225a6eabd
code-review is a skill published in the GitHub repository orlando-japan/claude-code-setting (2 stars, last pushed 3mo ago), licensed MIT. It adds 34 tokens to every session and 667 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-31.
Other skills, from other repositories
plugin-review
Review plugin quality with tiered checks and dependency scoping. Use for PR and pre-release audits.
fin-review-loop
经济金融论文的对抗性review循环。对草稿进行多轮严格评审,检查实证严谨性、方法正确性、理论贡献和写作质量,给出可操作的修改建议。(AI review 不能替代同行评审,草稿必须经研究者核实后投稿。).
plugin-quality
审查和改进 Zhin.js 插件质量(Plugin Runtime)。Use when asked to review plugin code, audit structure, or improve before publishing. 检查 definePlugin、约定目录、发送链与安全。.
military-discipline
严格执行,质量把关,拒绝敷衍.
code-review
Automated code review with checklist and quality gates.
code-review
Perform a thorough, structured code review of a diff or pull request.