What problem does it solve? Setting up a complete, secure CI pipeline for a Go project requires coordinating many moving parts — test matrices, linting, vulnerability scanning, dependency updates, Docker builds, and releases — and misconfigurations silently weaken quality gates. ## Core Features & Use Cases - Stage-by-stage pipeline generation: Produces GitHub Actions workflows in the order test → lint → security → release, with ready-to-adapt templates for each stage. - Security and dependency automation: Configures govulncheck, CodeQL, gosec, Trivy container scanning, Dependabot or Renovate with guarded auto-merge, plus a repository security settings checklist. - Release and AI review workflows: Provides GoReleaser configs for CLI tools, libraries, and monorepos, multi-platform Docker builds with SBOM and provenance, and Claude Code or Copilot AI review jobs. - Use Case: You are bootstrapping a new Go service and need CI that runs race-enabled tests across Go versions, blocks vulnerable dependencies, and publishes signed container images on tagged releases. ## Quick Start Set up a complete GitHub Actions CI pipeline for my Go project with testing, linting, security scanning, and a GoReleaser release workflow.