What problem does it solve? Writing GitLab CI/CD pipelines from scratch is error-prone and time-consuming, especially when configuring Docker builds, Terraform deployments, caching, and security scanning correctly. ## Core Features & Use Cases - Docker Build Patterns: Templates for building and pushing container images to the GitLab registry using docker-in-docker with commit-SHA tagging. - Terraform IaC Pipelines: Multi-stage validate, plan, and apply workflows with manual approval gates for production changes. - Security & Optimization: SAST, dependency scanning, container scanning with Trivy, caching strategies, and dynamic child pipelines. - Use Case: A team setting up CI/CD for a containerized service can apply the Docker template to build and push images, add Trivy scanning to catch vulnerabilities, and use caching to speed up repeated builds. ## Quick Start Ask the agent to create a GitLab CI pipeline that builds a Docker image, runs security scans, and deploys with Terraform using a manual approval step.