| name | post-coding-check |
| description | Use right after finishing a feature or bugfix, before committing. Runs the project's build/test/lint command and a quick credential grep — fast, not a full audit. |
Post-Coding Check Skill
Quick verification after coding sessions. Keep it fast.
When to Use
- After finishing a feature or bugfix
- Before committing
Quick Check (< 1 minute)
Run the build command for your project.
npm run build
python -m pytest
cargo build
That's it. If build passes, you're good.
Full Check (optional, before release)
npm run build
npm run typecheck
npm run lint
git grep -iE "password|secret" --cached
Success Criteria
Notes
- Do NOT commit if build fails
- Warnings are OK
- Speed matters more than perfection