code-review

Review uncommitted changes, commits, branches, and pull requests for concrete defects.

1.3k|142|Updated Jun 1, 2026
One-click install
npx skills add https://github.com/MiniMax-AI/minimax-code --skill code-review-minimax-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/MiniMax-AI/minimax-code/tree/main/packages/local-runtime/assets/skills/code-review
Command: npx skills add https://github.com/MiniMax-AI/minimax-code --skill code-review-minimax-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code reviews often miss real defects or drown authors in nitpicks about formatting and style. This Skill performs disciplined, read-only reviews of the exact scope you specify and reports only actionable issues affecting correctness, security, performance, or maintainability. ## Core Features & Use Cases - Scoped Review Targets: Review local uncommitted changes (staged, unstaged, untracked), specific commits, branches, pull requests, files, or functions, always respecting the comparison base you name. - Calibrated Findings: Reports only discrete, verifiable defects introduced by the change, each with a concrete trigger, resulting impact, file, and minimal line range. - Read-Only Safety: Uses inspection and read-only Git commands only; it never edits files, creates commits, or pushes branches unless you also ask for fixes. - Use Case: Before merging a feature branch, ask for a review of the branch against main and receive a compact list of real bugs, such as a null dereference on a new code path, instead of style commentary. ## Quick Start Ask the assistant to review my current uncommitted changes for defects using the code-review skill.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I review uncommitted changes before committing?

Ask for a review of your current local changes and the Skill inspects staged, unstaged, and untracked modifications relative to HEAD. It returns only actionable defects with the triggering condition and impact, not style or formatting comments.

How to review a pull request or branch against main?

Name the branch, pull request, or comparison base explicitly in your request. The Skill follows that exact scope instead of substituting the current working-tree diff, and reports only issues introduced by the change.

Does the code review modify or fix my files?

No, review requests are treated as read-only. The Skill uses inspection and read-only Git commands and never edits files, creates commits, pushes branches, or opens merge requests unless you also explicitly ask for fixes.

What kinds of issues does a code review report?

It reports discrete, actionable defects affecting correctness, security, performance, or maintainability that the author would likely fix. Formatting, spelling, lint, subjective preferences, and missing tests are ignored unless they demonstrate a concrete regression.

When should I not use this code review skill?

Do not use it for ordinary code explanation, debugging, implementation, or fix requests that do not ask for a review. It is purpose-built for defect-finding against a defined scope and comparison base.