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.
npx claudepluginhub undeadlist/claude-code-agents --plugin claude-code-agentsThis skill uses the workspace's default tool permissions.
Run before every commit to catch issues early.
Runs quality gates (lint, typecheck, tests) on staged git changes, scans production code for console.logs, secrets, and unchecked TODOs, then creates conventional commits.
Detects and runs linters, formatters, type checkers from configs before commits/PRs. Supports JS/TS, Python, Go, Rust; auto-fixes on staged files.
Runs full pre-commit checks: lint-fix, build, test across Node.js, Python, Rust, Go, Java, Ruby projects. Use for quality gates on precommit, lint and test triggers.
Share bugs, ideas, or general feedback.
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