What problem does it solve? Teams without automated pipelines ship broken code, skip verification steps, and lack rollback plans when deployments fail. This Skill provides a complete blueprint for enforcing quality gates on every change so no code reaches production without passing lint, type checks, tests, and builds. ## Core Features & Use Cases - Quality Gate Pipelines: Defines an ordered gate sequence (lint, type check, unit tests, build, integration, E2E, security audit, bundle size) with ready-to-use GitHub Actions workflow configurations. - Deployment Strategies: Covers preview deployments per PR, feature flags with lifecycle management, staged rollouts, and manual rollback workflows. - CI Optimization & Feedback Loops: Provides caching, parallelism, and path-filter strategies to keep pipelines under 10 minutes, plus patterns for feeding CI failures back to AI agents for automated fixes. - Use Case: When setting up a new Node.js project, use this Skill to generate a GitHub Actions workflow that runs lint, type checks, tests with coverage, build, and npm audit on every pull request, with branch protection blocking merges on failure. ## Quick Start Ask the agent to set up a CI pipeline for your project with lint, type check, test, and build gates using GitHub Actions.