strict-typescript-mode
Installation
SKILL.md
Strict TypeScript Mode
This skill enforces TypeScript best practices based on the State-of-the-Art Guide 2025.
When to Activate
- When working with
.tsor.tsxfiles - On new feature implementations
- During code reviews
- When refactoring JavaScript to TypeScript
Strict Rules
1. NEVER use any without documentation
// FORBIDDEN
function process(data: any) { ... }