What problem does it solve? Without automated pipelines, broken code reaches production, quality checks get skipped under pressure, and deployments become risky manual events. This Skill establishes enforced quality gates so every change passes lint, type checks, tests, and builds before merge. ## Core Features & Use Cases - Quality Gate Pipelines: Configures GitHub Actions workflows running lint, type check, unit tests, build, integration tests, E2E tests, and security audits on every pull request. - Deployment Strategies: Implements preview deployments, feature flags, staged rollouts, and rollback workflows so releases are reversible and low-risk. - CI Feedback Loops: Feeds CI failure output back to AI agents so lint errors, type errors, and test failures get fixed and re-verified automatically. - Use Case: A team starting a new Node.js project uses this Skill to set up a GitHub Actions pipeline with parallel lint, typecheck, and test jobs, branch protection on main, and a Vercel preview deployment per PR. ## Quick Start Set up a CI pipeline for my project that runs lint, type checking, tests, and build on every pull request with branch protection on main.