cicd-pipeline-builder

cicd-pipeline-builder is a skill for Claude Code from glincker/claude-code-marketplace. It costs 24 tokens per session (1,598 once invoked), scanned A, original, Apache-2.0.

A tool for creating automated build-and-release workflows for GitHub Actions, GitLab CI, Jenkins, and CircleCI. These workflows can test, lint, build, scan, cache dependencies, and deploy code.

In plain words
What is it for?
Use it to create pipeline configuration with tests, security checks, dependency caching, deployments, and testing across several software versions.
Why use it?
It removes the need to design CI/CD pipelines by hand, helping teams run checks consistently whenever code changes. CI/CD means automatically checking and delivering software through a repeatable workflow.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is files: ./coverage/lcov.info.

Good fit Use it to create pipeline configuration with tests, security checks, dependency caching, deployments, and testing across several software versions.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/glincker/claude-code-marketplace
agentmods
npx agentmods add skills/glincker/claude-code-marketplace/cicd-pipeline-builder

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin cicd-pipeline-builder/plugin install cicd-pipeline-builder after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cicd-pipeline-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/glincker/claude-code-marketplace/cicd-pipeline-builder/github.svg)](https://agentmods.dev/skills/glincker/claude-code-marketplace/cicd-pipeline-builder)
Your own site
<a href="https://agentmods.dev/skills/glincker/claude-code-marketplace/cicd-pipeline-builder"><img src="https://agentmods.dev/badge/skills/glincker/claude-code-marketplace/cicd-pipeline-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cicd-pipeline-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/glincker/claude-code-marketplace/cicd-pipeline-builder"><img src="https://agentmods.dev/badge/skills/glincker/claude-code-marketplace/cicd-pipeline-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,598 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.01598
Opus 5 $0.00012 $0.00799
Sonnet 5 $0.00005 $0.00320
Haiku 4.5 $0.00002 $0.00160

Measured 10d ago against content hash 40c4726ed6c5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

cicd-pipeline-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/devops/cicd-pipeline-builder/SKILL.md · 294 lines

How it starts

The opening of the file, as written. The whole thing — 294 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CI/CD Pipeline Builder

Generate complete CI/CD pipelines for GitHub Actions, GitLab CI, or Jenkins. Includes testing, building, security scanning, and deployment stages with caching and optimization.

What This Skill Does

  • Generates platform-specific CI/CD configs
  • Includes testing, linting, building stages
  • Adds security scanning (SAST, dependency checks)
  • Implements caching for faster builds
  • Creates deployment workflows
  • Matrix testing for multiple versions

Supported Platforms

  • GitHub Actions (most popular)
  • GitLab CI/CD
  • Jenkins
  • CircleCI

Instructions

GitHub Actions Example

.github/workflows/ci.yml:

name: CI/CD Pipeline

on:
  push:
    branches: [ main, develop ]
  pull_request:
    branches: [ main ]

env:
  NODE_VERSION: '20'

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [18, 20, 21]
    steps:
      - uses: actions/checkout@v4

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.node-version }}
          cache: 'npm'

      - name: Install dependencies
        run: npm ci

      - name: Run linter
        run: npm run lint

      - name: Run tests
        run: npm test -- --coverage

      - name: Upload coverage
        uses: codecov/codecov-action@v3
        with:
          files: ./coverage/lcov.info

  security:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Run security audit
        run: npm audit --audit-level=moderate

      - name: CodeQL Analysis
        uses: github/codeql-action/analyze@v3

  build:
    needs: [test, security]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with:
          node-version: ${{ env.NODE_VERSION }}
          cache: 'npm'

      - name: Install dependencies
        run: npm ci

      - name: Build
        run: npm run build

      - name: Upload artifacts
        uses: actions/upload-artifact@v4
        with:
          name: build-artifacts
          path: dist/

  deploy:
    needs: build
    runs-on: ubuntu-latest
    if: github.ref == 'refs/heads/main'
    environment: production
    steps:
      - uses: actions/checkout@v4

      - name: Download artifacts
        uses: actions/download-artifact@v4
        with:
          name: build-artifacts
          path: dist/

      - name: Deploy to production
        run: |
          echo "Deploying to production..."
          # Add your deployment commands here

Read the full file on GitHub · 294 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 294 lines · 24 tokens per session scan A 40c4726ed6c5

Subscribe to this mod's changes

cicd-pipeline-builder is a skill published in the GitHub repository glincker/claude-code-marketplace (36 stars, last pushed 10mo ago), licensed Apache-2.0. It adds 24 tokens to every session and 1,598 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

CI/CD Pipeline Advanced

Expert-level CI/CD pipeline skill for test automation. Covers GitHub Actions, Jenkins, GitLab CI, Azure DevOps, parallel execution, matrix strategies, caching, artifact management, and deployment gates.

PramodDutta/qaskills · 45 tokens

cicd-expert

Expert-level CI/CD with GitHub Actions, Jenkins, deployment pipelines, and automation. Use when the user mentions CI/CD, GitHub Actions, Jenkins, GitLab CI, deployment, or automation, or when the task involves CI/CD Fundamentals, Pipeline Design, Workflow Basics, or Docker Build and Push.

personamanagmentlayer/pcl · 67 tokens

CI/CD Pipeline Config

CI/CD pipeline configuration skill for test automation, covering GitHub Actions, Jenkins, GitLab CI, test parallelization, reporting, and artifact management.

PramodDutta/qaskills · 35 tokens

securing-github-actions-workflows

This skill covers hardening GitHub Actions workflows against supply chain attacks, credential theft, and privilege escalation. It addresses pinning actions to SHA digests, minimizing GITHUBTOKEN permissions, protecting secrets from exfiltration, preventing script injection in workflow expressions, and implementing…

xalgorix/xalgorix · 68 tokens

ci-cd-pipeline

Design and implement CI/CD pipelines for automated testing and deployment.

furkangonel/cowrangler · 18 tokens

cicd-agent

CI/CD pipeline design and review — GitHub Actions, pipeline best practices, secrets management, deployment strategies, and release automation.

chandrudp29/skillhub · 29 tokens