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/kambleakash0/agent-skills/code-reviewnpx skills add kambleakash0/agent-skills --skill code-reviewgit clone --depth 1 https://github.com/kambleakash0/agent-skillsWrote 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/kambleakash0/agent-skills/code-review)<a href="https://agentmods.dev/skills/kambleakash0/agent-skills/code-review"><img src="https://agentmods.dev/badge/skills/kambleakash0/agent-skills/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.1 | $0.00068 | $0.00893 |
| Opus 5 | $0.00034 | $0.00447 |
| Sonnet 5 | $0.00014 | $0.00179 |
| Haiku 4.5 | $0.00007 | $0.00089 |
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 6d 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 — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Review Skill
You are a senior software engineer performing a rigorous code review. Be direct, constructive, and specific.
1. Gather the diff
If the user has not specified a file or PR, review the current uncommitted or staged changes:
git diff HEAD
If they pass a file path, read that file. If they pass a PR number or URL, fetch the diff from GitHub.
2. Understand the context
Before commenting, briefly scan:
- The surrounding code and existing tests
- Any relevant configuration files (
package.json,pyproject.toml, etc.) - The project's style guide or linting rules if present
3. Review checklist
Evaluate every change against these categories:
Correctness
- Logic is correct and handles all expected inputs
- Edge cases are considered (empty collections, null/undefined, off-by-one, overflow)
- Error paths are handled and errors are not silently swallowed
- Concurrency issues absent (race conditions, deadlocks, shared mutable state)
Security
- No injection vulnerabilities (SQL, command, XSS, path traversal)
- Sensitive data (passwords, tokens, PII) is not logged or exposed
- Input is validated and sanitised before use
- Dependencies added are not known to be vulnerable
- Authentication / authorisation checks are in place where required
Performance
- No N+1 queries or unnecessary repeated work in loops
- Expensive operations are avoided on hot paths
- Memory allocations are reasonable; no obvious leaks
- Caching is used where appropriate
Readability & maintainability
- Names (variables, functions, types) are clear and consistent
- Functions / methods do one thing and are an appropriate length
- Complex logic is explained with a comment where warranted
- Dead code and commented-out blocks are removed
- No magic numbers or hardcoded strings (use constants)
Tests
- New behaviour is covered by tests
- Edge cases and error paths have test coverage
- Tests are readable and do not duplicate production logic
- Mocks/stubs are used only where necessary
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.
- 6d ago First seen · 125 lines · 68 tokens per session scan A bcbd993a42d8
code-review is a skill published in the GitHub repository kambleakash0/agent-skills (8 stars, last pushed 19d ago), licensed MIT. It adds 68 tokens to every session and 893 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
performance-tuning
Diagnoses and fixes Minecraft server lag, low TPS, high MSPT, GC pauses and out-of-memory crashes. Use whenever the user says "my server is laggy", "low TPS", "TPS drops", "high MSPT", "stuttering", "freezing", "out of memory", "OOM", "GC pause", "what JVM flags", "Aikar's flags", "how much RAM", "Xmx"…
performance-optimization
Optimizes application performance across frontend, backend, queries, and databases. Use when performance requirements exist, when you suspect performance regressions, when Core Web Vitals or load times need improvement, when N+1 query patterns need fixing, or when profiling reveals bottlenecks.
doubt-driven-development
Subjects every non-trivial decision to a fresh-context adversarial review before it stands. Use when correctness matters more than speed, when working in unfamiliar code, when stakes are high (production, security-sensitive logic, irreversible operations), or any time a confident output would be cheaper to verify now…
agenttrace-session-audit
Audit local AI coding-agent sessions with agenttrace for cost, tool failures, latency, anomalies, health, diffs, and CI gates.
agent-qa-result-triage
Triage failed Agent QA runs with MCP evidence, artifacts, logs, fixed failure categories, confidence, and actionable next steps.
accesslint-scan
Audit a live page for accessibility issues, locate each WCAG violation precisely, and return a selector-grounded fix worklist without editing.