ci-pipelines

ci-pipelines is a skill for Claude Code from arjunprabhulal/devops-skills. It costs 117 tokens per session (1,569 once invoked), scanned A, original, MIT.

Guidance for designing continuous integration, or CI, pipelines that automatically check code changes before they are merged. It covers the order of checks, repeatable results, caching, and which checks should block a merge.

In plain words
What is it for?
Use it when writing or debugging GitHub Actions, GitLab CI, or Jenkins workflows, especially when checks are slow, unreliable, or poorly ordered.
Why use it?
It helps make CI both fast and trustworthy, avoiding pipelines that are slow, flaky, or skip problems that matter. It focuses on producing a dependable answer about whether a change is safe to merge.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the devops-skills plugin — 56 skills shipped together

Good fit Use it when writing or debugging GitHub Actions, GitLab CI, or Jenkins workflows, especially when checks are slow, unreliable, or poorly ordered.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arjunprabhulal/devops-skills/ci-pipelines
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add arjunprabhulal/devops-skills --skill ci-pipelines
Clone the repo
git clone --depth 1 https://github.com/arjunprabhulal/devops-skills

Made for: Claude Code.

Or install devops-skills, the plugin that ships this one along with the rest of its 56 skills.

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 ci-pipelines

README.md
[![agentmods](https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/ci-pipelines.svg)](https://agentmods.dev/skills/arjunprabhulal/devops-skills/ci-pipelines)
Your own site
<a href="https://agentmods.dev/skills/arjunprabhulal/devops-skills/ci-pipelines"><img src="https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/ci-pipelines.svg" alt="Measured on agentmods" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,569 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.00117 $0.01569
Opus 5 $0.00059 $0.00785
Sonnet 5 $0.00023 $0.00314
Haiku 4.5 $0.00012 $0.00157

Measured 7d ago against content hash 681d076cec3f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

ci-pipelines 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 7d 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/ci-cd/ci-pipelines/SKILL.md · 131 lines

How it starts

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

CI Pipelines

The purpose of CI is to answer one question as fast and as truthfully as possible: is this change safe to merge? Every design decision — stage order, what runs in parallel, what blocks merge — should be judged against that question. A pipeline that is fast but lies (flaky, non-deterministic, skips real checks) is worse than no pipeline, because people stop trusting it and start merging past red.

A pipeline that takes twenty minutes but never lies beats one that takes two minutes and is wrong once a week.

A CI pipeline exists to produce a merge signal that is fast, deterministic, and trusted — in that order of what you sacrifice first.

For concrete GitHub Actions patterns — caching, matrix builds, SHA pinning, OIDC, reusable workflows — read references/github-actions.md.

1. Order stages cheapest-and-most-likely-to-fail first

Lint and type-check fail faster than unit tests, which fail faster than integration tests, which fail faster than end-to-end tests. Run them in that order and fail fast on the first red stage instead of running everything to completion. This isn't just about total wall-clock time — it's about the time a developer waits for the first useful signal, since that's when they context-switch back to the PR.

  • Static checks first: formatting, linting, type-checking — seconds, and catch the most common mistakes.
  • Unit tests second: no network, no containers, fully parallelizable.
  • Integration/e2e last: slowest, most infrastructure-dependent, most prone to flakiness.

Done when: a developer gets their first CI failure signal in under two minutes for the common case (lint or unit test failure).

2. Pin everything the pipeline touches

A pipeline that produces a different answer on a re-run of the same commit is not a merge signal, it's a random number generator. Pin the CI runner image, the language/toolchain version, and every dependency via a lockfile (package-lock.json, poetry.lock, go.sum, Gemfile.lock). "Latest" tags for base images and unpinned action versions (uses: actions/checkout@v4 vs @sha256:...) are the two most common sources of a pipeline that passed yesterday and fails today for no code reason.

Read the full file on GitHub · 131 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. 7d ago First seen · 131 lines · 117 tokens per session scan A 681d076cec3f

Subscribe to this mod's changes

ci-pipelines is a skill published in the GitHub repository arjunprabhulal/devops-skills (3 stars, last pushed 12d ago), licensed MIT. It adds 117 tokens to every session and 1,569 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

google-cloud-slo-alert-configuration

Configures PromQL-based Service Level Objective (SLO) alerting policies for Google Cloud resources registered in App Hub or individually specified. Generates Terraform output. Use when the user asks to configure an SLO or Service Level Objective. Don't use for standard alerting policies.

google/skills · 62 tokens

cloud-build-basics

Teaches the fundamentals of Google Cloud Build (GCB). Covers core concepts, API enablement, console navigation to the Build History page, and the end-to-end workflow for creating and manually running a basic build trigger. Do not use for managing private pools or complex pipeline architectures.

google/skills · 61 tokens

ci-cd-and-automation

Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.

addyosmani/agent-skills · 45 tokens

google-mobile-ads-android-migrate-to-next-gen

Migrates Android applications from the old, legacy Google Mobile Ads (GMA) SDK (com.google.android.gms:play-services-ads) to the new GMA Next-Gen SDK (com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk). Provides comprehensive mapping tables for imports, classes, and method signatures to help determine…

google/skills · 105 tokens

google-cloud-solution-guided-gke-ai-migration

Guides the migration of existing AI workloads (Cloud Run, Gemini API, Gemini Enterprise Agent Platform) to self-hosted GKE inference using gcloud and kubectl. Use when the user has an existing AI inference workload (on Cloud Run, the Gemini API, Gemini Enterprise Agent Platform, or a custom VM) and wants to move it to…

google/skills · 157 tokens

gke-alert-configuration

Configures alerting policies in Terraform for Google Kubernetes Engine (GKE) clusters, workloads, and services using PromQL and Google Cloud Managed Service for Prometheus. Use when writing, analyzing, validating, or deploying Terraform alerting policies to monitor GKE service latency, traffic, error rates using…

google/skills · 120 tokens