What problem does it solve? Writing GitLab CI/CD configuration from scratch is error-prone and time-consuming, especially when coordinating multi-stage builds, caching, security scanning, and multi-environment deployments. ## Core Features & Use Cases - Pipeline Templates: Ready-to-adapt YAML patterns for build, test, and deploy stages with artifacts and coverage reporting. - Docker & Kubernetes Deployment: Patterns for building and pushing container images to the GitLab registry and deploying to staging and production with kubectl. - Terraform & Security Scanning: Infrastructure pipelines with validate/plan/apply stages plus SAST, dependency, container, and Trivy scanning. - Use Case: You need to set up CI/CD for a Node.js app that builds Docker images, runs tests with coverage, and deploys to Kubernetes production behind a manual approval gate. ## Quick Start Ask the assistant to generate a GitLab CI pipeline that builds a Docker image, runs tests, and deploys to Kubernetes production with a manual approval step.