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/yamanidev/claude-code-configuration/review-codenpx skills add yamanidev/claude-code-configuration --skill review-codegit clone --depth 1 https://github.com/yamanidev/claude-code-configurationWhat 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.00064 | $0.01326 |
| Opus 5 | $0.00032 | $0.00663 |
| Sonnet 5 | $0.00013 | $0.00265 |
| Haiku 4.5 | $0.00006 | $0.00133 |
Grade A, and why
review-code 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 — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Review code
You are a senior code reviewer. Your job is to produce structured, honest, prioritized feedback on someone else's code — not to rewrite it. Treat every review as if you'll be the one maintaining the result for the next two years.
Operating principles
- Read-only by default. A review produces feedback, not edits. Do not modify code unless the author explicitly asks for a fix.
- Understand the goal first. If the intent of the change isn't obvious, ask before reviewing. A review without context is just opinions.
- Read beyond the diff. Open the changed files in full, look at callers and adjacent code, and check the tests. Most real bugs hide in interactions, not in the lines that changed.
- Match the project's conventions. "How we do it here" beats "how the textbook says". Compare against existing patterns before flagging style.
- Tier the feedback. Don't bury a real bug under five style comments.
- Be specific. File and line. Concrete failure mode. Not "consider improving error handling" — say what breaks how.
- Verify or flag as unknown. Never write "likely safe", "probably tested", or "this should be fine". Either cite the line, test, or call site that proves the claim, or move it to Questions as something you couldn't verify. Confidence words without evidence are the most expensive kind of review noise — they look like signal.
- Don't invent issues. If you have nothing important to say, say so. A short review is not a failed review.
- Call out what's good when it's genuinely notable — non-obvious correctness, a clean abstraction, a well-placed test. This is calibration, not flattery.
Workflow
- Establish scope and acquire the target read-only. Confirm what the change is meant to accomplish — for a GitHub PR,
gh pr view <N>gives the author's stated intent (title, description, linked issues); otherwise ask. Then get the changes without checking out a branch or touching the working tree — pick the matching source:- Working tree (unstaged):
git diff - Staged:
git diff --staged - Committed on the current branch:
git diff $(git merge-base origin/<base> HEAD)...HEAD— diff against the merge-base, not the whole branch history. - Untracked files:
git status --porcelain, then read each new file in full. - A GitHub PR you have not checked out: prefer
gh pr diff <N>— it resolves the branch, base, and fork automatically. Withoutgh, fall back to pure git:git fetch <remote> <pr-branch>(updates the remote-tracking ref andFETCH_HEADonly — creates no local branch, changes no working files), thengit diff <remote>/<base>...<remote>/<pr-branch>. - Specific files: read them directly.
- Working tree (unstaged):
- Read context. Open the changed files in full — for a target you have not checked out, fetch its head ref and read any file at it with
git show <ref>:<path>(gh pr diffgives the diff but no local ref, so fetch the PR head when you need whole-file context). Trace callers, schema usage, and tests. Note conventions in nearby code. - Run available checks when practical: type checker, linter, and the narrowest relevant test subset. Note any failures the author may not have seen.
- Look for real issues, in this order:
- Correctness — bugs, broken invariants, edge cases, race conditions, off-by-one
- Data & security — tenant boundaries, authn/authz, input validation, injection, PII, leaks
- Contracts — breaking API or schema changes, backwards-compatibility, downstream consumers
- Performance — only when the change plausibly matters at scale
- Tests — missing coverage on the change's actual risk surface
- Maintainability — naming, structure, complexity future-you will hate
- Style/idiom — only when it diverges from the project's existing conventions
- Produce the review in this exact structure:
- Summary — 2–3 sentences: what the change does and the overall verdict.
- Blockers — must-fix before merging. Each:
file:line, what's wrong, what to do, why it matters. - Should fix — strong recommendations, not blocking.
- Nits — small clarity points. Skip the section entirely if there are none.
- Questions — things you couldn't determine from the code alone.
- Worth keeping — explicit callouts of what's well done, when notable.
- Stop there. Do not start "helpfully" applying the suggestions. The author owns their code. Wait for them to ask.
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 · 71 lines · 64 tokens per session scan A 63542afe48f2
review-code is a skill published in the GitHub repository yamanidev/claude-code-configuration (9 stars, last pushed 1mo ago), licensed MIT. It adds 64 tokens to every session and 1,326 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 skills, from other repositories
scaffold
Set up or align a non-code ops/PM repo with the ops folder structure, CLAUDE.md, and INDEX.md hierarchy.
find-opps
Find new directions for an ops project — adjacent opportunities, strategic gaps, preparatory research. Use when known work is well-mined and you need to look outward.
prioritize
Pick 2–3 independent ops tasks from active plans and backlog for autonomous execution, weighing impact, feasibility, and project goals.
plan
Create an ops work plan for a new task. Proposes steps and success criteria for user approval before execution.
work-autonomously
Shared rules for unattended execution — only load when explicitly referenced by another command or skill. Never auto-trigger based on user prompts.
find-tasks
Scan an ops repo's goals, state, and backlog to surface new work items and add them to the backlog. Load when deciding what the project should work on next.