review-guidelines
Installation
SKILL.md
Review Guidelines
Additional checks for this codebase:
Code Quality
- Prefer
typeoverinterfacefor type definitions - Use arrow functions (
const fn = () =>) over function declarations - Use
#field(ES2022 private) instead ofprivate field(TypeScript) - No
anytypes — useunknownwith type guards - No index.ts files (except plugin entry points) — use feature-named re-exports
- Explicit
.tsextensions on all local imports - Object params when >2 args:
fn({ a, b, c }: { ... }) - Zod namespace import:
import * as z from 'zod' - Import directly from specific files, not through re-exports within a module