From sre-skills
Use when designing, reviewing, or debugging CI pipelines — build stages, test parallelism, caching strategies, security scanning, artifact management, or pipeline-as-code patterns. Triggers on "CI pipeline", "GitHub Actions", "GitLab CI", "Jenkins", "build pipeline", "test stages", "artifact cache", "SAST", "dependency scan", "pipeline optimization", or any continuous integration question. Ships scripts for pipeline YAML validator, stage dependency analyzer, and cache effectiveness checker. 4 references on pipeline design, security scanning, caching, and parallelism. NOT a CD/deployment skill — specifically the build-test-scan portion of the pipeline.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sre-skills:ci-pipelineThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Design and operate CI pipelines that are fast, reliable, and secure. The build is a promise — if it's green, the artifact is safe to deploy.
Design and operate CI pipelines that are fast, reliable, and secure. The build is a promise — if it's green, the artifact is safe to deploy.
cd-pipelineiacgit-workflowsA pipeline that takes 45 minutes is a pipeline people skip. Targets:
[checkout] → [lint/format] → [unit tests] → [build artifact]
→ [SAST / secret scan] → [dependency audit] → [integration tests]
→ [publish artifact] → [notify]
# Validate pipeline YAML syntax and common anti-patterns
python scripts/pipeline_validator.py .github/workflows/ci.yml
# Analyse stage dependencies and find parallelism opportunities
python scripts/stage_analyzer.py .github/workflows/ci.yml
# Report cache hit rate from pipeline logs
python scripts/cache_checker.py --log-file pipeline.log
npx claudepluginhub bipinalex/sre-skillsCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.