code-review

code-review is a skill for Claude Code from HybridAIOne/hybridclaw. It costs 21 tokens per session (775 once invoked), scanned A, original, MIT.

A review tool for checking code changes. It looks for bugs, regressions, security and maintenance risks, and tests that are missing.

In plain words
What is it for?
Use it to review local Git changes or a GitHub pull request. It reads the affected files and runs relevant tests, type checks, linting, or builds when available.
Why use it?
It helps find problems in a change set before the changes are merged or released, including problems that a successful build may not reveal.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to review local Git changes or a GitHub pull request. It reads the affected files and runs relevant tests, type checks, linting, or builds when available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hybridaione/hybridclaw/code-review
Install

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.

Any agent
npx skills add HybridAIOne/hybridclaw --skill code-review
Clone the repo
git clone --depth 1 https://github.com/HybridAIOne/hybridclaw

Made for: Claude Code.

Wrote 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.

agentmods badge for code-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/hybridaione/hybridclaw/code-review.svg)](https://agentmods.dev/skills/hybridaione/hybridclaw/code-review)
Your own site
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/code-review"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/code-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 775 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00021 $0.00775
Opus 5 $0.00010 $0.00387
Sonnet 5 $0.00004 $0.00155
Haiku 4.5 $0.00002 $0.00077

Measured 8d ago against content hash 8c92f0c0aa8d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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 8d 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.

skills/code-review/SKILL.md · 118 lines

How it starts

The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Code Review

Use this skill to review local changes or an existing GitHub pull request for correctness, regressions, maintainability, security, and missing tests.

Review Order

  1. Establish scope with git status --short, git diff --stat, and git diff --name-only.
  2. Read the changed files, not just the diff, before judging behavior.
  3. Run targeted validation when it exists: tests, typecheck, lint, build, or repo-specific checks.
  4. Present findings ordered by severity, then open questions, then a brief summary.

Primary Workflows

Local Branch Review

Use local git state when the change is in the current checkout:

git status --short
git diff --stat
git diff --name-only
git diff --staged
git diff <base-branch>...HEAD
git log --oneline <base-branch>..HEAD

Replace <base-branch> with the repository's actual review base branch.

GitHub PR Review

Use gh when the review target is an open pull request:

gh pr view 123
gh pr diff 123
gh pr checkout 123
gh pr view 123 --comments

After checking out the PR branch, review it the same way as a local branch and run the relevant repo checks before leaving comments.

What to Look For

Prioritize issues that change behavior or raise delivery risk:

  • incorrect logic or broken edge cases
  • state, data, or migration regressions
  • auth, permission, or secret-handling mistakes
  • missing validation, retries, or error handling
  • flaky or incomplete tests
  • risky coupling, hidden side effects, or cleanup gaps

Treat pure style comments as low priority unless the user explicitly asks for a style review.

Review Output

Default to this structure:

  1. Findings
  2. Open questions or assumptions
  3. Brief summary

For each finding:

  • cite the file and the most relevant line or function
  • explain the concrete failure mode or risk
  • describe the user-visible impact when possible
  • note the missing test or validation that would catch it

If there are no findings, say that explicitly and mention any residual risk such as unrun integration tests or unverified deployment paths.

Read the full file on GitHub · 118 lines

Changes

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.

  1. 8d ago First seen · 118 lines · 21 tokens per session scan A 8c92f0c0aa8d

Subscribe to this mod's changes

code-review is a skill published in the GitHub repository HybridAIOne/hybridclaw (132 stars, last pushed yesterday), licensed MIT. It adds 21 tokens to every session and 775 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

adversarial-reviewer

Adversarial code review that assumes bugs exist and hunts for them. Use when asked to review code, find bugs, audit for correctness, stress-test a PR, or when someone says "tear this apart" or "what's wrong with this". Give no benefit of the doubt — every line is guilty until proven innocent.

emdash-cms/emdash · 71 tokens

code-review

Reviews code for bugs, security issues, and best practices.

promptfoo/promptfoo · 11 tokens

potpie-debug-memory

Use while debugging or troubleshooting failures, flaky tests, incidents, production alerts, CI failures, local dev setup issues, repeated bugs, prior fixes, failed attempts, and verification history.

potpie-ai/potpie · 41 tokens

trace

Use when encountering bugs, test failures, runtime errors, broken builds, or "this doesn't work" reports. Systematic root-cause analysis before any patch — never blind-patches symptoms. Standalone, ends with a final-integration review of the fix. Trigger with /hyperflow:trace, "debug this", "find the root cause", "why…

jeremylongshore/tons-of-skills-marketplace · 84 tokens

extending-hobby-smoke-tests

Design, extend, review, or debug PostHog Hobby end-to-end smoke tests in bin/hobby-ci.py and .github/workflows/ci-hobby.yml. Use when adding an ingestion round trip, deciding whether a product belongs in Hobby CI, changing the CI Hobby service topology or API-key scopes, or diagnosing a smoke test that captures data…

PostHog/posthog · 83 tokens

java-code-review

Review Java code for bugs, duplicate code, correctness risks, maintainability improvements, and missing tests. By default review files modified in git; when the user explicitly names files, classes, packages, or a diff, review that scope instead. Generate a detailed review.md report with actionable comments and fixes.

sivaprasadreddy/sivalabs-agent-skills · 64 tokens