What problem does it solve? CI pipelines fail for many small reasons—formatting, lint, test failures, security findings—and fixing them one CI round-trip at a time is slow. This Skill runs the full local gate sequence in a fixed order, auto-fixes what it can, and reports a complete status picture before you commit. ## Core Features & Use Cases - Seven-Gate Sequence: Runs ruff format, ruff lint, qlty check, pre-commit, pytest, bandit, and pip-audit in a fixed order, re-running each gate after every fix attempt. - Auto-Fix with Blocker Tracking: Applies deterministic fixes (ruff format, ruff check --fix), marks gates that fail twice as BLOCKER, and always reports all seven gates in a status table. - Operational Runbooks: Includes diagnosed patterns for GitHub Actions failures such as stale-base failures, frozen merge-commit reruns, startup_failure contract mismatches, and workflow authoring anti-patterns. - Use Case: Your pre-commit hooks and tests are failing before a release. Invoke the skill to run every gate locally, auto-fix lint and format issues, identify the two failing tests as blockers, and get a commit offer only when all required gates are green. ## Quick Start Ask the AI to run ci-fix to execute all CI gates, auto-fix what it can, and report any remaining blockers.