What problem does it solve? Maintaining a consistent CI/CD pipeline for the SwarmXQ monorepo requires enforcing an 8-gate quality checklist (TypeScript compilation, vitest suites, regression scripts, next build, and invariant checks) across every pull request, and misconfigured gates let console.* drift, type errors, and dependency inconsistencies reach the main branch. ## Core Features & Use Cases - 8-Gate Quality Pipeline: Defines the exact execution order for tsc --noEmit across three packages, two vitest suites, five offline regression scripts, next build, and invariant checks (console.* zero-tolerance, process.env coverage, TONE_RULES completeness). - GitHub Actions Configuration: Provides a production-ready ci.yml with pnpm store caching keyed on pnpm-lock.yaml, Node 20 setup, frozen-lockfile installs, and job timeouts. - Offline CI Protocol: Documents which gates run without Ollama or Redis and how to mark skipped gates explicitly with if: false conditions. - Release Governance: Standardizes CHANGELOG.md entry format, semantic release tagging (vMAJOR.MINOR.PATCH), and branch protection requirements for main. - Use Case: When a pull request fails Gate 8a because a console.log slipped into apps/swarmx-api/src/services, use this Skill to diagnose the invariant violation, fix the offending file, and verify the grep check returns zero hits before merging. ## Quick Start Ask the AI to review the current .github/workflows/ci.yml against the 8-gate checklist and identify any missing or misordered quality gates.