| name | impeccable |
| description | Quick repo-hygiene and consistency checks before committing. |
Impeccable Skill
Quick hygiene and consistency checks to run before any commit. Catches common issues fast.
When to use this skill
- Before every commit
- After large merges or refactors
- When asked to "check everything is clean"
Workflow
- Git status —
git status — no untracked files that should be gitignored, no staged files with secrets
- Unused imports — Check new/changed files for unused imports
- console.log — No
console.log in production source files (guarded ones OK)
- TypeScript —
npx tsc --noEmit passes
- Lint —
npm run lint passes
- Tests —
npm run test -- --run passes
- Doctor —
npm run doctor score 100/100
- Comments — No code comments unless explicitly asked for