code-review

Reviews changed files in a session and attaches inline comments to code.

Updated Apr 14, 2026
One-click install
npx skills add https://github.com/jimeh/hucode --skill code-review-jimeh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/jimeh/hucode/tree/main/src/vs/sessions/skills/code-review
Command: npx skills add https://github.com/jimeh/hucode --skill code-review-jimeh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually reviewing every changed file in a coding session is slow and easy to skip, letting bugs, security issues, and inconsistencies slip through. This Skill automates the review pass by inspecting the session's diff and surfacing concrete issues directly on the code. ## Core Features & Use Cases - Automated Diff Review: Detects changed files via git status and git diff, then reviews each change for correctness, edge cases, security, and error handling. - Inline Comments: Attaches specific, actionable comments to exact file URIs and line ranges using the addComment tool, rather than a single vague summary. - Read-Only Safety: Never modifies files, commits, or pushes; its only output is review comments. - Use Case: After finishing a feature branch in a session, trigger the Run Code Review action to get high-signal feedback on bugs, missing tests, and naming inconsistencies before merging. ## Quick Start Ask the agent to run a code review of the current session's changes and leave inline comments on any issues it finds.

Frequently Asked Questions about code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a code review on my current changes?

Trigger the code review skill via the Run Code Review button in the Changes toolbar or ask the agent to review the session's changes. It detects modified files with git status and git diff, then leaves inline comments on any issues found.

What kinds of issues does an automated code review catch?

It checks correctness and edge cases, bugs and regressions, missing error handling, security and data-handling problems, naming and consistency with surrounding code, and gaps in tests or documentation introduced by the change.

Does the code review skill modify my files or commit changes?

No. The skill is strictly read-only: it never edits files, runs commits, pushes, or performs any write operations. Its only output is review comments attached to specific lines, and you decide how to act on them.

Why does the review leave few or no comments on my changes?

The skill is instructed to prefer fewer, higher-signal comments over minor stylistic nits and to skip code that is already correct. Few comments usually means the changes passed the correctness, security, and consistency checks.

Can I customize the code review behavior?

Yes. The SKILL.md notes you can customize the skill and save a copy to override the built-in behavior, such as adjusting review criteria or comment style. Deleting that copy restores the default behavior.