code-review

code-review is a skill for Claude Code from hnikoloski/imlazy. It costs 42 tokens per session (534 once invoked), scanned A, original, MIT.

A workflow for requesting and handling code reviews, which are checks of code by another developer or automated reviewer. It covers both sending changes for review and responding to the feedback.

In plain words
What is it for?
Use it after completing a task, before merging a feature, after fixing a difficult bug, or when you are stuck. It helps compare changes with requirements, send the relevant code to a reviewer, verify comments, and apply fixes.
Why use it?
It helps catch defects, missed requirements, and risky changes before they reach a shared codebase. It also gives a clear process for deciding which review comments require action.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the imlazy plugin — 26 skills, 1 command, 1 hook shipped together

Good fit Use it after completing a task, before merging a feature, after fixing a difficult bug, or when you are stuck. It helps compare changes with requirements, send the relevant code to a reviewer, verify comments, and apply fixes.

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

Made for: Claude Code.

Or install imlazy, the plugin that ships this one along with the rest of its 26 skills, 1 command, 1 hook.

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/hnikoloski/imlazy/imlazy-code-review/github.svg)](https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-code-review)
Your own site
<a href="https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-code-review"><img src="https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-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 code-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-code-review"><img src="https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-code-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 534 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.
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.00042 $0.00534
Opus 5 $0.00021 $0.00267
Sonnet 5 $0.00008 $0.00107
Haiku 4.5 $0.00004 $0.00053

Measured 10d ago against content hash 090a744a36d5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 10d 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/imlazy-code-review/SKILL.md · 55 lines

How it starts

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

code-review

When to use

  • After each task in planning (full mode)
  • Before merging a feature
  • When stuck (fresh perspective unblocks you)
  • After fixing a complex bug

Requesting a review

Step 1: Get git SHAs

BASE_SHA=$(git rev-parse HEAD~1)  # or origin/main for pre-merge review
HEAD_SHA=$(git rev-parse HEAD)

Step 2: Dispatch code reviewer subagent using the template at code-reviewer.md (next to this skill). Fill in:

  • {DESCRIPTION} — brief summary of what was built
  • {PLAN_OR_REQUIREMENTS} — what it should do
  • {BASE_SHA} / {HEAD_SHA} — the commit range
  • {GIT_DIFF} — output of git diff BASE_SHA..HEAD_SHA

Step 3: Act on feedback

  • Critical → fix immediately, re-review
  • Important → fix before proceeding
  • Minor → note for later
  • Reviewer is wrong → push back with technical reasoning and evidence; don't blind-implement

Never skip review because "it's simple". Never ignore Critical issues. Never proceed with unfixed Important issues.

Receiving a review

When you receive code review feedback, apply this process before implementing anything:

  1. Verify the feedback is technically correct. Read the cited file and line. Does the issue actually exist there?

  2. Distinguish severity. Critical issues block progress. Important issues should be fixed. Minor issues are optional. If the reviewer didn't label severity, ask for clarification.

  3. Never blind-implement Critical feedback without checking it first. A reviewer can be wrong. If something feels off, verify with a test or look at the actual code.

  4. Push back when the reviewer is wrong. "The test at line 42 already covers that edge case — here is the assertion: [paste test]." Technical evidence beats assertion.

  5. Fix, then re-request review. Don't mark "fixed" without actually running the test suite.

Common pitfalls:

  • Implementing all feedback without verifying — can introduce new bugs
  • Dismissing feedback without checking — misses real issues
  • Treating Minor as Critical — wastes time on low-impact polish

Read the full file on GitHub · 55 lines

Files

What ships with it

1 file 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. 10d ago First seen · 55 lines · 42 tokens per session scan A 090a744a36d5

Subscribe to this mod's changes

code-review is a skill published in the GitHub repository hnikoloski/imlazy (2 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 534 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.

Related

Other skills, from other repositories

code-review-excellence

This skill should be used when the user asks to review a diff or pull request, write review comments, audit code quality, establish review standards, or improve how a team performs code review.

Galaxy-Dawn/claude-scholar · 43 tokens

tfx-analysis

A code and architecture analysis workflow that can ask several command-line agents to examine a project from different viewpoints, including architecture, security, performance, user experience, and documentation.

tellang/triflux · 76 tokens

tfx-prune

A cleanup workflow that asks three AI coding assistants to independently identify unnecessary code, then removes only issues they agree are unwanted. It checks for duplication, needless abstractions, excessive error handling, and similar readability problems.

tellang/triflux · 51 tokens

tfx-review

A code-review workflow that asks several command-line AI reviewers to inspect changes independently, then reports issues that at least two reviewers agree on. TDD means test-driven development, where tests are written to guide implementation, but this add-on is for reviewing code rather than defining TDD.

tellang/triflux · 83 tokens

do-it-review

Use to assess requirements and implementation quality independently, or to resolve a batch of review findings.

tdwhere123/do-it · 22 tokens

done

Run the closeout ritual before handing back non-trivial work; full verification, revert-probe honesty, independent review, and scope reporting. Use before declaring completion, opening a PR, wrapping up a change, or "ปิดงาน".

ohm41321/luciazero · 50 tokens