code-review

Reviews code changes with three parallel reviewer agents and consolidates findings into a prioritized report.

1|Updated Mar 5, 2026
One-click install
npx skills add https://github.com/AlessioScarfone/aine-copilot-plugins --skill code-review-alessioscarfone
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/AlessioScarfone/aine-copilot-plugins/tree/main/src/aine-misc/skills/code-review
Command: npx skills add https://github.com/AlessioScarfone/aine-copilot-plugins --skill code-review-alessioscarfone

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Reviewing your own changes before pushing is error-prone, and a single-pass review often misses bugs, duplication, or convention violations. This Skill runs a structured multi-perspective review so issues are caught from several quality angles and reported in one prioritized summary. ## Core Features & Use Cases - Scoped Review: Automatically determines what to review — unstaged changes, staged changes, a branch diff, specific files, or a PR — using the appropriate git diff command. - Parallel Multi-Perspective Analysis: Launches three reviewer agents simultaneously covering simplicity/DRY, bugs/correctness, and project conventions/abstractions, each reporting only high-confidence issues. - Consolidated Prioritized Report: Deduplicates overlapping findings, classifies them as Critical, Important, or Minor, and presents a single sorted report with file locations and suggested fixes. - Use Case: Before pushing a feature branch, ask for a review of your changes; the Skill diffs against main, audits the changeset from three angles, and returns a report listing a critical null-handling bug plus minor DRY suggestions. ## Quick Start Ask the assistant to review my current branch changes against main and report any bugs or convention violations.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I review my code changes before pushing?▼

Ask for a review of your changes and the Skill runs git diff to capture unstaged, staged, or branch changes, then launches three parallel reviewer agents. Findings are deduplicated, severity-classified, and returned as one prioritized report with suggested fixes.

How to review a branch or PR against main?▼

Specify the branch or PR as the scope, and the Skill uses git diff main...HEAD (or the PR base) to capture the changeset. The three reviewer agents then analyze that diff for simplicity, correctness, and convention issues.

What quality dimensions does an automated code review cover?▼

This review covers three dimensions in parallel: simplicity and DRY violations, bugs and functional correctness including security and edge cases, and adherence to project conventions and abstractions. Only issues with confidence of 80 or higher are reported.

Can I review only specific files instead of a full diff?▼

Yes, you can name specific files or paths as the review scope, and only those files are analyzed. The same three-perspective parallel review and consolidated reporting still apply to the narrowed scope.

When should I not use an automated code review workflow?▼

Do not use it for implementing features, writing new code, or refactoring, since those have their own workflows. It is designed strictly for auditing existing changes and reporting issues, not modifying code.