
Pre Commit Check
- 34 installs
- 80 repo stars
- Updated July 29, 2026
- cartridge-gg/controller
Run format, lint, tests, and type checks before committing to verify changes pass all quality gates.
About
Runs all pre-commit quality checks (format, lint, tests, type check) before committing changes to the Cartridge monorepo. A developer uses it to verify changes pass quality gates before pushing.
- Runs format, lint, tests, and type checks before committing
- Mirrors the Husky pre-commit hook quality gates
Pre Commit Check by the numbers
- 34 all-time installs (skills.sh)
- Ranked #650 of 1,354 Code Review & Quality skills by installs in the Skillselion catalog
- Data as of Jul 30, 2026 (Skillselion catalog sync)
npx skills add https://github.com/cartridge-gg/controller --skill pre-commit-checkAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 34 |
|---|---|
| repo stars | ★ 80 |
| Last updated | July 29, 2026 |
| Repository | cartridge-gg/controller ↗ |
What it does
Run format, lint, tests, and type checks before committing to verify changes pass all quality gates.
Files
Pre-commit Check Skill
Run all pre-commit checks before committing changes.
Usage
Manually verify changes pass all quality gates before committing.
Steps
1. Run pnpm format to format code and fix auto-fixable lint issues 2. Run pnpm lint to check for remaining lint/format issues 3. Run appropriate tests based on changed files 4. Verify TypeScript compilation succeeds 5. Review changes one final time 6. Ready to commit if all checks pass
Notes
- Husky pre-commit hook automatically runs format + lint:check
- This skill useful for checking before pushing or during development
- Consider running
pnpm buildfor major changes