code-review-simplifylisted
Install: claude install-skill mickeyyaya/evolve-loop
> Unified code review + simplification. Single-pass, multi-dimensional scoring, adaptive depth. Integrates with evolve-loop auditor and builder phases.
## Contents
- [Architecture](#architecture) — hybrid pipeline+agentic model
- [Single-Pass Flow](#single-pass-flow) — read diff once, analyze both dimensions
- [Multi-Dimensional Scoring](#multi-dimensional-scoring) — 4 dimensions with numeric scores
- [Adaptive Depth Routing](#adaptive-depth-routing) — scale analysis with diff complexity
- [Integration Hooks](#integration-hooks) — evolve-loop auditor and builder wiring
- [Simplification Catalog](#simplification-catalog) — what to simplify and when
- [Output Schema](#output-schema) — structured review+simplify report
## Architecture
Hybrid pipeline+agentic model. Structured passes handle known patterns cheaply; agentic reasoning handles contextual issues that require understanding intent.
```
Input: git diff (changed files)
│
▼
┌─────────────────────────┐
│ PIPELINE LAYER (fast) │ Deterministic pattern checks
│ ───────────────────── │
│ 1. Complexity scan │ Cognitive complexity, nesting depth
│ 2. Smell detection │ 22-smell catalog from detect-code-smells
│ 3. Security scan │ OWASP patterns, secrets, injection
│ 4. Style check │ Naming, file size, function length
│ 5. Duplication check │ Near-duplicate code blocks
└─────────┬───────────────┘
│ Structured findings
▼
┌─────────────────────────┐
│ A