What problem does it solve? Setting up CI pipelines from scratch often means copying brittle YAML from other projects that doesn't match the actual stack. This Skill detects languages, package managers, and build commands from repository files, then generates a matching GitHub Actions or GitLab CI baseline with lint, test, and build stages. ## Core Features & Use Cases - Stack Detection: Scans lockfiles, manifests, and scripts to identify Node, Python, Go, Terraform, and Docker stacks, emitting JSON or text reports. - Pipeline Generation: Produces GitHub Actions or GitLab CI YAML with caching, stage separation, and detected lint/test/build commands. - Deployment Guidance: Reference notes cover deployment gates, protected environments, rollback requirements, and pre-merge validation checklists. - Use Case: When bootstrapping CI for a new repository, run the stack detector, feed the JSON report into the generator, and commit a working pipeline aligned with the project's actual tooling. ## Quick Start Ask the assistant to detect the stack of the current repository and generate a GitHub Actions CI workflow file from the detection results.