code-review

Review git changes or commits using code-reviewer and architect-reviewer agents.

1|Updated Mar 8, 2026
One-click install
npx skills add https://github.com/kubrickcode/cine-mirror --skill code-review-kubrickcode
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/kubrickcode/cine-mirror/tree/main/.agents/skills/code-review
Command: npx skills add https://github.com/kubrickcode/cine-mirror --skill code-review-kubrickcode

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually reviewing code changes for quality, security, and architectural impact is time-consuming and inconsistent. This Skill automates comprehensive review of uncommitted changes or specific commits by orchestrating specialized reviewer agents. ## Core Features & Use Cases - Automated Change Analysis: Detects uncommitted changes or reviews a specified commit, filtering out lock files, build artifacts, and binary files from the diff. - Dual-Agent Review: Always invokes a code-reviewer agent for quality and security feedback, and conditionally invokes an architect-reviewer agent based on a scored scope assessment (files changed, API contracts, database schema, security-sensitive files). - Structured Report: Produces a consolidated markdown report with change summary, prioritized action items (Critical/Warning/Suggestion), and next steps. - Use Case: After finishing a feature branch with changes across 10 files including a database migration, run the review to get both line-level code feedback and architectural impact assessment before merging. ## Quick Start Ask the assistant to review your current uncommitted changes or a specific commit hash 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 git changes automatically?▼

Run the code-review skill with no arguments to review uncommitted changes. It detects staged and unstaged modifications via git status and git diff HEAD, then invokes a code-reviewer agent with the filtered diff.

How to review a specific git commit for code quality?▼

Provide the commit hash in your request, and the skill runs git show on that commit to extract the diff. The code-reviewer agent then analyzes it for quality, security, and maintainability issues.

When does the architect-reviewer agent get invoked?▼

The architect-reviewer runs only when the change scope scores 3 or more points. Criteria include 8+ files changed, 300+ lines modified, API contract or database schema changes, and modifications to security-sensitive files.

Does the code review modify my source files?▼

No, the skill is strictly read-only. It uses only git status, diff, log, and show commands, and never modifies code. It produces a review report with findings and action items.

What files are excluded from the code review diff?▼

Lock files (package-lock.json, pnpm-lock.yaml, yarn.lock, go.sum, Cargo.lock), build outputs (dist/, build/), source maps, minified files, and binary media are excluded from diff analysis to keep reviews focused.

What happens if there are no changes to review?▼

If the diff is empty, the skill reports "No changes to review" and stops. If a git command fails, it reports the error along with the failed command.