Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
jeremylongshore avatar

Building Cicd Pipelines

  • 40 installs
  • 2.6k repo stars
  • Updated August 5, 2026
  • jeremylongshore/claude-code-plugins-plus-skills

Generates CI/CD pipeline configs for GitHub Actions, GitLab CI, Jenkins, CircleCI, and Azure DevOps with linting, testing, build, scan, and deploy stages.

About

Produces multi-stage CI/CD pipeline configurations covering linting, testing, container builds, security scanning, and gated staging/production deploys with rollback. A developer uses it to set up or extend a deployment pipeline on a major CI platform.

  • Multi-stage workflows with security scanning and rollback gates
  • Targets GitHub Actions, GitLab CI, Jenkins, CircleCI, Azure DevOps

Building Cicd Pipelines by the numbers

  • 40 all-time installs (skills.sh)
  • Ranked #810 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill building-cicd-pipelines

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs40
repo stars2.6k
Last updatedAugust 5, 2026
Repositoryjeremylongshore/claude-code-plugins-plus-skills

What it does

Generates CI/CD pipeline configs for GitHub Actions, GitLab CI, Jenkins, CircleCI, and Azure DevOps with linting, testing, build, scan, and deploy stages.

Files

SKILL.mdMarkdownGitHub ↗

Building CI/CD Pipelines

Current State

!ls .github/workflows/*.yml .gitlab-ci.yml Jenkinsfile .circleci/config.yml 2>/dev/null || echo 'No CI/CD config found'

Overview

Generate CI/CD pipeline configurations for GitHub Actions, GitLab CI, Jenkins, CircleCI, and Azure DevOps. Produce multi-stage workflows covering linting, testing, building container images, security scanning, and deploying to staging/production with proper gating and rollback mechanisms.

Prerequisites

  • Git repository hosted on a supported platform (GitHub, GitLab, Bitbucket, Azure DevOps)
  • Container runtime (Docker) if building images
  • Target deployment environment credentials configured as pipeline secrets
  • Test suite that can run headlessly (npm test, pytest, go test, etc.)
  • Understanding of branching strategy (trunk-based, GitFlow, or environment branches)

Instructions

1. Scan the project for existing CI/CD configuration files (.github/workflows/, .gitlab-ci.yml, Jenkinsfile, .circleci/config.yml) 2. Identify the application stack: language, framework, test runner, package manager, and deployment target 3. Define pipeline stages: lint -> test -> build -> security-scan -> deploy-staging -> integration-test -> deploy-production 4. Generate the pipeline configuration file with appropriate triggers (push to main, PR events, tags) 5. Add caching for dependencies (node_modules, .pip-cache, Go modules) to reduce build times 6. Configure matrix builds for multiple language versions or OS targets where appropriate 7. Add secret references for deployment credentials, container registry tokens, and API keys (never hardcode) 8. Implement deployment gates: manual approval for production, automated rollback on health check failure 9. Add status badges and notifications (Slack, email) for build results 10. Validate the pipeline syntax using platform-specific tools (actionlint, gitlab-ci-lint)

Output

  • Pipeline configuration files (.github/workflows/*.yml, .gitlab-ci.yml, Jenkinsfile)
  • Dockerfile for container builds (multi-stage, minimal base image)
  • Deployment scripts or Kubernetes manifests referenced by the pipeline
  • Environment-specific variable files for staging vs. production

Error Handling

ErrorCauseSolution
Pipeline triggered but no jobs runTrigger conditions (paths, branches) do not matchReview on: / only: / rules: filters and verify branch names
Docker build failed: layer cache missCache key changed or cache storage expiredUse content-based cache keys (hashFiles('**/package-lock.json')) and verify cache backend
Secret not foundSecret name mismatch or not set in pipeline settingsCheck secret names match exactly (case-sensitive) in repository/project settings
Deploy failed: unauthorizedExpired or incorrect deployment credentialsRotate credentials, update pipeline secrets, and verify IAM role/service account permissions
Tests pass locally but fail in CIEnvironment differences (OS, node version, timezone)Pin runtime versions in pipeline config; use matrix to test across environments

Examples

  • "Create a GitHub Actions workflow for a Node.js app: lint with ESLint, test with Jest, build Docker image, push to ECR, deploy to EKS staging on PR merge."
  • "Generate a GitLab CI pipeline with parallel test jobs, SAST scanning, and manual production deployment gate."
  • "Build a Jenkins pipeline that runs Python tests in a Docker agent, publishes coverage to SonarQube, and deploys via Terraform."

Resources

  • GitHub Actions: https://docs.github.com/en/actions
  • GitLab CI/CD: https://docs.gitlab.com/ee/ci/
  • Jenkins Pipeline: https://www.jenkins.io/doc/book/pipeline/
  • CI/CD best practices: https://martinfowler.com/articles/continuousIntegration.html

Related skills

DevOps & CI/CDdeployinfra

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.