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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-quality-gate:quality-fixThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run all auto-fixable quality checks to clean up the codebase. Execute these commands:
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.
npx claudepluginhub ats-kinoshita-iso/agent-workshop --plugin code-quality-gateProvides autofix commands, patterns, and detection script for linters like biome, ruff, clippy, eslint, prettier across JS/TS, Python, Rust, Go, Shell.
Detects linter (Biome, ESLint, Deno lint) and formatter (Prettier), runs with auto-fix on target path or codebase, reports fixed and remaining issues. Use before commits, after AI code gen, or CI lint failures.
Sets up Python code quality toolchain with ruff linting/formatting, mypy type checking, complexity gating, dead code detection, pre-commit hooks, pyproject.toml config, and Makefile targets.