typescript-refactorer
Installation
SKILL.md
TypeScript Refactorer
Before generating any output, read config/defaults.md and adapt all patterns, imports, and code examples to the user's configured stack.
Analysis Process
- Scan the specified files for type-related code smells
- Categorize issues by severity
- Provide corrected code for each issue
Code Smells to Detect
Explicit any Usage
// BAD
function process(data: any) {
return data.value;
}