From code-quality-gate
Auto-fix all fixable quality issues including formatting and lint errors. Use this skill when the user asks to "fix formatting", "auto-fix lint", "clean up the code", "fix quality issues", or after a failed quality gate to resolve auto-fixable problems.
npx claudepluginhub ats-kinoshita-iso/agent-workshop --plugin code-quality-gateThis skill uses the workspace's default tool permissions.
Run all auto-fixable quality checks to clean up the codebase. Execute these commands:
Guides strict Test-Driven Development (TDD): write failing tests first for features, bugfixes, refactors before any production code. Enforces red-green-refactor cycle.
Guides systematic root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Guides A/B test setup with mandatory gates for hypothesis validation, metrics definition, sample size calculation, and execution readiness checks.
Run all auto-fixable quality checks to clean up the codebase. Execute these commands:
uv run ruff format . — auto-format all Python filesbunx biome check --write . — auto-format all JS/TS files (skip if no biome config)uv run ruff check --fix . — auto-fix lint issues where possibleAfter running the fixes, run /quality to verify the current state.
Report what was fixed and what still needs manual attention.