code-review
Installation
SKILL.md
Code Review Guide
Before You Start
- Read
/typescriptand/testingskills for code style and test conventions - Get the diff (skip if already in context, e.g., injected by GitHub review app):
git difforgit diff origin/canary..HEAD
Checklist
Correctness
- Leftover
console.log/console.debug— should usedebugpackage or remove - Missing
return awaitin try/catch — see https://typescript-eslint.io/rules/return-await/ (not in our ESLint config yet, requires type info) - Can the fix/implementation be more concise, efficient, or have better compatibility?