review

Solid

Rigorous code review of all uncommitted changes. Analyzes architecture, code quality, security, and engineering best practices. Embeds questions and assumptions inline, then summarizes all proposed changes as a plan for user approval before any edits are made.

Code & Development 516 stars 54 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 91/100

Stars 20%
90
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Code Review Perform a rigorous, senior-engineer-level code review of all uncommitted changes in the working tree. ## Core Principles - **You are a strict reviewer, not a rubber-stamper.** Flag real problems. Do not praise code just to be nice. - **Never make changes directly.** Your output is a review report and an optional change plan. Wait for explicit user approval before editing any file. - **Embed assumptions inline.** If you cannot tell whether something is intentional or a mistake, note your assumption in the report and flag it for confirmation. - **Focus on substance over style.** Formatting issues caught by pre-commit hooks are low priority. **Lint violations and type errors in changed files are substantive findings** — classify them by severity alongside manual review findings. ## Review Depth By default, run the full checklist. If the user requests a quick review (e.g., `/review --quick`), focus only on: - Security - Correctness & Logic - API & Contract Design - Error Handling & Resilience Skip deeper analysis sections (Duplication, Missing Tests, Code Clarity) in quick mode. ## Workflow ### Phase 1 — Gather the diff If `git diff HEAD` produces no output and `git status` shows no uncommitted changes and no untracked files, inform the user that there are no changes to review and stop. Run these commands to understand the full scope of uncommitted work: ```bash # Overview of changed files git status # Full diff of all tracked changes (staged + unstaged)...

Details

Author
ReflexioAI
Repository
ReflexioAI/claude-smart
Created
1 months ago
Last Updated
yesterday
Language
Python
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category