What problem does it solve? Manually reviewing pull requests in a Next.js project is time-consuming and inconsistent, often missing architectural violations, missing error states, or convention breaches that tests do not catch. This Skill automates a structured review of the diff against the base branch, producing a severity-classified report with concrete fixes. ## Core Features & Use Cases - Deterministic pre-checks: Runs pnpm run lint and pnpm run typecheck before semantic analysis, blocking approval on violations. - Structured checklist review: Verifies architecture (modules vs app router), conventions (aliases, MUI import restrictions), forms (react-hook-form + zod), React Query patterns, TypeScript quality, and UI states (loading, empty, error). - Severity-classified report: Writes a full report to .agents/reviews/<branch>-review.md using a template, classifying findings as CRÍTICO, ALTO, MEDIO, or BAJO with file, line, and suggested fix, while returning only a synthetic summary in chat. - Use Case: Before merging a feature branch, ask for a review of the diff against develop; the Skill inspects every changed file, flags a hardcoded query key as ALTO, and saves the full report to disk. ## Quick Start Ask the agent to review the diff of your current branch against develop before merging the pull request.