What problem does it solve? Teams without automated pipelines ship untested code, miss broken builds, and lack rollback plans when deployments fail. This Skill establishes enforced quality gates so every change passes lint, type checks, tests, and builds before reaching production. ## Core Features & Use Cases - Quality Gate Pipelines: Defines a staged pipeline covering lint, type check, unit tests, build, integration tests, E2E tests, security audit, and bundle size checks, with ready-to-use GitHub Actions YAML configurations. - Deployment Strategies: Covers preview deployments per PR, feature flags, staged rollouts, and manual rollback workflows so every deployment is reversible. - CI Feedback Loop for Agents: Provides patterns for feeding CI failure output back to coding agents so they can fix lint errors, type errors, and test failures autonomously. - Use Case: When setting up a new Node.js project, use this Skill to generate a complete GitHub Actions workflow with parallel lint, typecheck, and test jobs, branch protection rules, and a Dependabot configuration. ## Quick Start Ask your agent to set up a CI pipeline for this repository with lint, type checking, tests, and a staging deployment workflow.