--- name: review-changes description: Run a thorough code review on all recent uncommitted changes using the code-reviewer agent context: fork agent: code-reviewer --- Review all recent changes in this repository. First gather context: - Recent changes: !`git diff HEAD` - Staged changes: !`git diff --cached` - Modified files: !`git status --short` - Recent commits: !`git log --oneline -5` Then perform a full code review using the code-reviewer agent checklist: - SSR safety (no `initial={{ opacity: 0 }}` on server elements) - TypeScript strictness (no `any`) - API route conventions (`runtime`, `dynamic`, `source` field) - Design system compliance (liquid-* tokens, contrast ratios) - i18n completeness (both en.json and de.json) - Error logging guards - Graceful fallbacks on all external calls Output: - **Critical** issues (must fix before merge) - **Warnings** (should fix) - **Suggestions** (nice to have) Include file:line references and concrete fix examples for each issue.