| name | code-quality |
| description | Run code quality checks. Use after making code changes, before commits, or when asked to check code quality. |
| allowed-tools | Bash, Read, Grep, Glob |
Code Quality Checks
Run code quality checks after making code changes.
Commands
# Full check (type checking + linting)
./start.sh check
# Type checking only
./start.sh typecheck
# Linting only
./start.sh lint
# Linting with auto-fix
./start.sh lint-fix
Workflow
- Make code changes
- Run
./start.sh check - If lint errors can be auto-fixed, run
./start.sh lint-fix - Fix remaining errors manually
- Re-run check to verify