Skills / Engineering
Code Review
Review changes for correctness, maintainability, and production risk. Use when evaluating code diffs or proposed implementations.
Ownership
InstructionsSKILL.md Source
Code Review
## Goal
Identify correctness issues, maintainability risks, and production concerns in proposed code changes before merge.
## The Thing
Code diffs, with focus on TypeScript safety, dependency management, and architectural consistency.
## Structure
1.**Type safety check** — Verify all new code has proper TypeScript annotations and no `any` escapes.
2.**Dependency audit** — Confirm imports are approved and exist in package.json dependencies.
3.**Error path analysis** — Identify unhandled null/undefined cases and missing error boundaries.
4.**Pattern consistency** — Flag deviations from project conventions (naming, file structure, CSS approach).
5.**Risk assessment** — Assign severity to each finding and suggest concrete fixes.
Installation
Toggle your package manager and copy the command to add this skill directly to your workspace configuration.
CLI Add Command
Installs skill bundlenpx @qentrah/skills add code-review