code-review

Reviews code diffs against quality, security, and standards checklists and returns a verdict.

Updated Jun 2, 2026
One-click install
npx skills add https://github.com/MohamedSayedK/omnigrid --skill code-review-mohamedsayedk
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/MohamedSayedK/omnigrid/tree/main/assets/core/skills/code-review
Command: npx skills add https://github.com/MohamedSayedK/omnigrid --skill code-review-mohamedsayedk

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code changes often ship without consistent review for quality, security, and undocumented technical decisions. This Skill runs a structured review of any code diff and returns a clear verdict with file:line findings, so issues are caught before merge. ## Core Features & Use Cases - Six-section checklist review: Walks architecture, code quality, testing, security, performance, and change description for every diff. - Flexible diff targets: Review the uncommitted working diff by default, or compare a branch against its base (e.g., main...HEAD). - Verdict with findings: Returns APPROVED, CHANGES REQUESTED, or COMMENT with precise file:line references, and enforces the ADR-on-technical-decision rule plus any project handbook standards. - Use Case: Before merging a feature branch, run the review against main...HEAD to get a read-only code-reviewer verdict listing security and quality findings with exact locations. ## Quick Start Ask the assistant to run /code-review on the current working diff and report the verdict with any file:line findings.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I review a code diff before merging a branch?▼

Run /code-review with a base and head reference, such as /code-review main...HEAD, to review a branch against its base. The reviewer walks a six-section checklist and returns a verdict with file:line findings.

How do I review uncommitted changes in my working tree?▼

Run /code-review with no arguments to review the uncommitted working diff. It resolves the current diff automatically and applies the same quality, security, and standards checklist.

What does the code review checklist cover?▼

The checklist covers six sections: architecture, code quality, testing, security, performance, and change description. It also enforces an ADR requirement for technical decisions and applies any standards defined in project handbooks.

What verdicts can a code review return?▼

The review returns one of three verdicts: APPROVED, CHANGES REQUESTED, or COMMENT. Each verdict includes specific findings referenced by file and line number.

Does the code review skill modify my code?▼

No, it runs as a read-only code-reviewer role. It only analyzes the diff and reports findings; it never edits files or commits changes.