Run code quality checks. Use after making code changes, before commits, or when asked to check code quality.
This skill is limited to using the following tools:
Run code quality checks after making code changes.
# 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
./start.sh check./start.sh lint-fix