What problem does it solve? Setting up reliable CI/CD pipelines from scratch is error-prone, and teams often ship code without automated quality gates, leading to broken builds, untested deployments, and no rollback path when things go wrong. ## Core Features & Use Cases - Quality Gate Pipelines: Enforces lint, type check, unit tests, build, integration tests, E2E tests, security audits, and bundle size checks on every pull request using GitHub Actions. - Deployment Strategies: Implements preview deployments, feature flags, staged rollouts, and manual rollback workflows so every deployment is reversible. - CI Feedback Loop for Agents: Feeds CI failure output back to AI agents so they can fix lint errors, type errors, and test failures automatically. - Use Case: When starting 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 Vercel preview deployment for every PR. ## Quick Start Set up a CI pipeline for my project with lint, type checking, tests, build, and a rollback workflow using GitHub Actions.