code-review
Installation
SKILL.md
Code Review Skill
Performs systematic code review across the portfolio, covering TypeScript correctness, React best practices, accessibility, performance, styling consistency, and security.
When to use this skill
- Before committing code changes
- When reviewing a PR
- When asked to audit code quality
- After implementing a new feature or fixing a bug
Workflow
-
TypeScript correctness — Verify strict mode passes (
npx tsc --noEmit). Noanytypes unless explicitly justified. Proper generics and type narrowing. -
React best practices — Components are properly structured. No missing
keyprops in lists. NouseStatewhere derived state suffices. NouseEffectfor derived state. Hooks follow rules of hooks. -
Accessibility — See
accessibility-auditskill. All interactive elements are keyboard-operable. Proper ARIA attributes. Semantic HTML.