Check code style compliance. Use when asked to validate code style, check naming conventions, review comments quality, or ensure file naming follows conventions. Works on whole codebase or specific changes (branch, PR, uncommitted).
Add this skill
npx mdskills install vasylenko/codestyleClear scope and rules but lacks specific instructions on how the agent validates each code style rule
1---2name: codestyle3description: Check code style compliance. Use when asked to validate code style, check naming conventions, review comments quality, or ensure file naming follows conventions. Works on whole codebase or specific changes (branch, PR, uncommitted).4---56# Code Style Checker78## Scope910Determine what to check based on user request:11- **Specific changes**: Compare branch with main (`git diff main...HEAD`), or check uncommitted changes (`git diff`)12- **Whole codebase**: Scan `./src` directory1314## Rules15161. **Naming**: Descriptive, self-documenting names for functions and variables172. **Files**: Lowercase with hyphens, test files with `.test.ts` suffix183. **Comments**: JSDoc for public APIs; inline comments explain "why", never "what"1920## Workflow21221. Identify scope (specific changes vs whole codebase)232. Create TODO items for each rule243. Validate each rule separately254. Fix deviations265. Run `task build && task style` to verify27
Full transparency — inspect the skill content before installing.