review-agent

Reviews code changes and returns prioritized actionable defect findings.

Updated Aug 4, 2026
One-click install
npx skills add https://github.com/sjc786526-coder/RONDO --skill review-agent-sjc786526-coder
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: review-agent
Source: https://github.com/sjc786526-coder/RONDO/tree/main/multidev/codex-rs/skills/src/assets/samples/review-agent
Command: npx skills add https://github.com/sjc786526-coder/RONDO --skill review-agent-sjc786526-coder

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code reviews often miss real defects or get buried in style nitpicks and speculative concerns. This Skill performs a read-only, defect-first review of a specified change and returns only concrete, actionable findings the author would likely fix. ## Core Features & Use Cases - Defect-First Review: Inspects the full diff and surrounding code to identify regressions affecting correctness, security, performance, or maintainability. - Base-Branch Awareness: Resolves the correct merge-base against the branch upstream so reviews compare the changes that would actually merge. - Prioritized Findings: Reports each issue with a P0–P3 severity, a file and line citation, and a short explanation, followed by an overall assessment and test gaps. - Use Case: A delegating agent asks for a review of uncommitted changes or a feature-branch diff; the Skill returns findings like [P1] Dereference of optional value — src/parser.rs:142 without modifying any files. ## Quick Start Use $review-agent to review the uncommitted changes in this repository and return all actionable findings.

Frequently Asked Questions about review-agent

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

FAQPage Schema
How do I review uncommitted changes with an AI agent?▼

Delegate the review to this Skill with the target specified as uncommitted changes. It inspects the full diff plus surrounding code and returns only concrete, actionable defects ordered by severity, without modifying any files.

How does the review handle base-branch diffs?▼

It resolves the comparison ref to the branch's upstream when available, runs git merge-base HEAD against that ref, and reviews the diff from the merge-base. This ensures it reviews the changes that would actually merge rather than diffing against the branch tip.

What kinds of issues does this code review flag?▼

It flags discrete, actionable issues affecting correctness, security, performance, or maintainability that were introduced by the reviewed change. It skips speculative concerns, pre-existing problems, intentional behavior changes, and style nitpicks.

Can the review agent modify files or post comments?▼

No. The Skill is strictly read-only: it cannot modify files, create commits, push branches, post review comments, or delegate the review to another agent. It only returns findings and an overall assessment.

What happens when the review finds no issues?▼

It reports 'No findings.' rather than inventing issues to fill the result. It still adds a brief overall assessment and notes any material test gaps or residual risks.