with one click
make-quality
Run code formatters, linters, type checks, and security audits
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run code formatters, linters, type checks, and security audits
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Run miscellaneous project utility scripts via Makefile
Run full CI pipeline validation targets via Makefile
Manage the docker-compose stack and volumes via Makefile
Manage local Kafka topics, consumer groups, and view lags via Makefile
Run unit tests, integration tests, and generate coverage reports via Makefile
| name | make-quality |
| description | Run code formatters, linters, type checks, and security audits |
| compatibility | opencode |
Provides the Makefile targets required to enforce codebase standards (formatting, linting, typing, security).
Use this before committing code to ensure it meets project standards, or when fixing code style issues.
make sync - Synchronize Python dependencies via uv. Run this if dependencies change.make format / make format-check - Formats code using ruff.make lint / make lint-fix - Lints the codebase with ruff. Use lint-fix to auto-fix issues.make type-check - Runs type checking (ignores airflow/).make security - Runs bandit to check for security vulnerabilities.make audit - Runs pip-audit to check for dependency vulnerabilities.