From claude-code-agents
Runs pre-commit workflow: audits staged files for 'any' types, empty catch blocks, console.logs, bugs; executes full test suite; reports commit readiness.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code-agents:pre-commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run before every commit to catch issues early.
Run before every commit to catch issues early.
Spawn code-auditor on staged/changed files:
any types, empty catch blocks, console.logs, obvious bugsSpawn test-runner:
# Pre-Commit Check
## Status: PASS / FAIL
### Code Quality
- [x] No new `any` types
- [x] No empty catch blocks
- [x] No console.logs in production code
### Tests
- [x] All tests pass
- [x] No regressions
## Verdict
Ready to commit / Fix issues first
npx claudepluginhub undeadlist/claude-code-agents --plugin claude-code-agentsRuns quality gates, reviews staged changes for issues, and creates a conventional commit. Useful when ready to commit after making changes.
Runs lint, typecheck, and tests before AI review. Mechanical checks gate AI review — failures block commit.
Detects and runs linters, formatters, type checkers from configs before commits/PRs. Supports JS/TS, Python, Go, Rust; auto-fixes on staged files.