What problem does it solve? After an AI coding agent finishes a turn that changes files, there is no built-in quality gate to catch regressions, missing tests, or maintainability issues before the work is accepted. This Skill automates a structured review-and-fix loop so every meaningful code change gets inspected without manual prompting. ## Core Features & Use Cases - Parallel Reviewer Fanout: Dispatches baseline reviewers (correctness, tests/validation, maintainability) plus configured reviewer profiles and skills as isolated read-only subagent tasks, then synthesizes deduplicated Critical/Warning/Suggestion findings. - Single-Writer Auto-Fix: When Critical or Warning findings are accepted, exactly one fixer subagent applies the fixes, keeping the main session as orchestrator and avoiding conflicting parallel writes. - Smart Skip Gates: Skips review for clean worktrees, lockfile/generated-only changes, identical already-reviewed diffs, and committed bookkeeping follow-ups, using scoped read-only git commands. - Layered Configuration: Merges defaults, global config, and project config via a helper script, with natural-language mapping to /auto-review commands for changing settings. - Use Case: After an agent refactors a module and commits, the skill detects the committed range, fans out reviewers scoped to the worktree, synthesizes findings, and dispatches one fixer to address accepted Critical issues. ## Quick Start Ask the agent to run the auto-review workflow on the current worktree changes, for example by saying "review the changes from the last turn and fix any critical issues".