| name | code-review |
| description | Use when reviewing code, auditing a PR, or doing an adversarial review of a change. Runs quality, security, accessibility, and convention checks specific to this codebase. |
Code Review — Yosemite Crew
Description
Use this skill when reviewing code, checking a PR, or performing an adversarial review of changes. Runs through quality, security, accessibility, and convention checks specific to this codebase.
TRIGGER: when asked to review code, check a PR, or audit changes in any part of this monorepo.
Review Checklist
Universal (all apps)
Frontend Specific
Backend Specific
Mobile Specific
How to Run a Review
- Read the changed files.
- Run through the relevant checklist sections above.
- For frontend changes, run:
npx tsc --noemit + pnpm --filter frontend run lint.
- For frontend changes, run targeted tests for every modified file:
pnpm --filter frontend run test -- --testPathPattern="<ModifiedFile>". Verify no existing tests are broken by the change.
- For each issue found, state: file + line, the rule violated, and the fix.
- Summarize: blocking issues vs. suggestions.