Run code quality checks. Use after making code changes, before commits, or when asked to check code quality.
View on GitHubGantisStorm/claude-code-pair-planning-framework
codex-swarm
codex-swarm/skills/code-quality/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/GantisStorm/claude-code-pair-planning-framework/blob/main/codex-swarm/skills/code-quality/SKILL.md -a claude-code --skill code-qualityInstallation paths:
.claude/skills/code-quality/# Code Quality Checks Run code quality checks after making code changes. ## Commands ```bash # 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 1. Make code changes 2. Run `./start.sh check` 3. If lint errors can be auto-fixed, run `./start.sh lint-fix` 4. Fix remaining errors manually 5. Re-run check to verify