What problem does it solve? Setting up CI/CD pipelines from scratch requires knowing each platform's YAML syntax, caching strategies, and deployment patterns, which is repetitive and error-prone across projects. ## Core Features & Use Cases - Automatic Stack Detection: Detects the project's language, framework, package manager, and existing CI config before generating anything. - Multi-Platform Generation: Produces pipeline configs for GitHub Actions, GitLab CI, CircleCI, Jenkins, and Bitbucket Pipelines with lint, test, build, and deploy stages. - Best Practices Built In: Enforces dependency caching, matrix builds, pinned action versions, secret usage, and separated CI/CD workflows. - Use Case: You have a Node.js project with no CI. The skill detects npm scripts, then generates a GitHub Actions workflow with lint and test jobs across Node 18, 20, and 22, plus a deploy job gated behind environment protection rules. ## Quick Start Generate a GitHub Actions CI pipeline for this project with lint, test, and build stages using the existing npm scripts.