neo-code-review

neo-code-review is a skill for Claude Code, Codex from Benknightdark/neo-skills. It costs 87 tokens per session (1,228 once invoked), scanned A, original, MIT.

A read-only code-review skill for examining source code, pull requests, diffs, commits, and recent changes. It checks for issues such as bugs, security problems, performance concerns, test gaps, and duplicated logic.

In plain words
What is it for?
Use it to review working-tree changes, staged changes, commit ranges, or supplied code and report findings supported by evidence.
Why use it?
It helps find actionable problems before changes are handed off or merged, without modifying the code.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to review working-tree changes, staged changes, commit ranges, or supplied code and report findings supported by evidence.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/benknightdark/neo-skills/neo-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 Benknightdark/neo-skills --skill neo-code-review
Clone the repo
git clone --depth 1 https://github.com/Benknightdark/neo-skills

Made for: Claude Code, Codex.

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 neo-code-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-code-review/github.svg)](https://agentmods.dev/skills/benknightdark/neo-skills/neo-code-review)
Your own site
<a href="https://agentmods.dev/skills/benknightdark/neo-skills/neo-code-review"><img src="https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-code-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for neo-code-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/benknightdark/neo-skills/neo-code-review"><img src="https://agentmods.dev/badge/skills/benknightdark/neo-skills/neo-code-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,228 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.00087 $0.01228
Opus 5 $0.00044 $0.00614
Sonnet 5 $0.00017 $0.00246
Haiku 4.5 $0.00009 $0.00123

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

Security

Grade A, and why

neo-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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/git-diff-reviewer.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/neo-code-review/SKILL.md · 85 lines

How it starts

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

Code Review

Follow this read-only workflow. Report only actionable findings supported by evidence.

Trigger On

  • The user requests a code, PR, diff, commit, security, performance, test, or maintainability review.
  • The user asks whether code or logic is duplicated across files, or whether hard-coded values should be centralized.
  • An AI Agent finishes modifying code, tests, configuration, or scripts before handoff.

Workflow

  1. Define the review scope

    • Use the files or snippets supplied by the user as the primary scope.
    • If the user provides no scope and the current directory is a Git repository, run:
      uv run skills/neo-code-review/scripts/git-diff-reviewer.py --working-tree
      
    • Use --staged for staged-only changes and --commit <range> for a commit range.
    • Read surrounding code, related tests, and existing contracts. If no reviewable input exists, report it and stop.
    • For a working-tree review, include the helper's tracked diff and each non-ignored untracked file as separate inputs.
  2. Load the review rules

    • Read review-checklist.md before evaluating code.
    • Identify the actual language, framework, and affected behavior from the change. Do not infer unverified rules from filenames.
  3. Run the cross-file consistency scan

    • Build the comparison set from the review targets and relevant repository source and configuration files. Use rg --files and the repository's ignore rules. Exclude dependency, vendor, cache, generated, minified, build, and coverage output unless a file is explicitly in scope.
    • Inventory changed or reviewed functions, classes, validation and authorization rules, state transitions, request or query construction, error handling, and distinctive literals such as URLs, routes, timeouts, retry counts, thresholds, regexes, feature flags, and error messages.
    • Search the comparison set for exact and near-exact matches, then read each match in context. Ignore name and formatting differences when the behavior matches. Treat renamed or slightly rearranged copies as duplicates when their business rules, inputs, side effects, and failure behavior are materially the same.
    • Report only meaningful duplication: copied implementation, duplicated business or validation logic, divergent security or state logic, or repeated non-trivial hard-coded configuration. Do not report a match based only on a common keyword, normal one-time literal, test fixture, snapshot, generated file, or vendor code.
    • For every cross-file finding, cite both file paths and line numbers. Explain the concrete maintenance, divergence, security, or behavior risk and recommend a specific shared helper, constant, configuration source, or other single source of truth.
    • If the user supplied only a snippet or specific files without repository context, state in ## Validation that cross-file verification was unavailable. Never invent repository matches or line evidence.

Read the full file on GitHub · 85 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 85 lines · 87 tokens per session scan A a3cb04ca20e5

Subscribe to this mod's changes

neo-code-review is a skill published in the GitHub repository Benknightdark/neo-skills (7 stars, last pushed 6d ago), licensed MIT. It adds 87 tokens to every session and 1,228 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

coding-assistant

Provides coding assistance with best practices and code review.

athola/skrills · 13 tokens

agent-design-best-practices

Best practices for designing Claude Code agent files (.claude/agents/.md). This skill should be used when writing or reviewing agent markdown files to ensure proper design with focused domains, correct tool access, reusable definitions, and separation of capabilities from lifecycle. Combines Anthropic's official…

majiayu000/claude-skill-registry · 73 tokens

agent-cross-review

Structured cross-review protocol between specialized agents. Ensures scope alignment, priority calibration, and domain-aware feedback. Use when one agent reviews another's work, during handoffs, or when validating cross-cutting concerns.

majiayu000/claude-skill-registry · 46 tokens

resolve-pr-comments

Evaluate, fix, answer, and reply to GitHub pull request review comments and conversation comments. Handles both change requests (fix or skip) and reviewer questions (explain using reasoning recalled from past Claude Code transcripts). Use when the user asks to "resolve PR comments", "fix review comments", "address PR…

tobihagemann/turbo · 95 tokens

review-code

Review code for bugs, security vulnerabilities, API misuse, consistency issues, simplicity problems, or test coverage gaps by running internal reviews and a peer review in parallel and returning combined findings. Single-concern with a type argument, or full review with no argument. Use when the user asks to "review…

tobihagemann/turbo · 144 tokens

assess-technical-debt

Assess project-wide structural technical debt: complexity hotspots, deprecated API usage, duplication clusters, and architecture rot. Ranks findings by impact and refactor effort into a report at .turbo/technical-debt.md. Use when the user asks to "assess technical debt", "find technical debt", "review technical…

tobihagemann/turbo · 108 tokens