ci-cd-pipeline

ci-cd-pipeline is a skill for Claude Code, Codex from tmj-90/gaffer. It costs 67 tokens per session (798 once invoked), scanned A, original, Apache-2.0.

A CI/CD workflow that automatically runs project checks and can build, scan, test, and deploy software. CI means continuous integration; CD means continuously delivering or deploying changes.

In plain words
What is it for?
Use it to create or update GitHub Actions or GitLab CI workflows, migrate pipeline platforms, standardise deployment, add caching, or investigate slow CI.
Why use it?
It makes code changes easier to verify and deployments more repeatable, while avoiding pipeline steps the project does not need.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create or update GitHub Actions or GitLab CI workflows, migrate pipeline platforms, standardise deployment, add caching, or investigate slow CI.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tmj-90/gaffer/ci-cd-pipeline
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 tmj-90/gaffer --skill ci-cd-pipeline
Clone the repo
git clone --depth 1 https://github.com/tmj-90/gaffer

Made for: Claude Code, Codex.

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-cd-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/tmj-90/gaffer/ci-cd-pipeline/github.svg)](https://agentmods.dev/skills/tmj-90/gaffer/ci-cd-pipeline)
Your own site
<a href="https://agentmods.dev/skills/tmj-90/gaffer/ci-cd-pipeline"><img src="https://agentmods.dev/badge/skills/tmj-90/gaffer/ci-cd-pipeline/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 ci-cd-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/tmj-90/gaffer/ci-cd-pipeline"><img src="https://agentmods.dev/badge/skills/tmj-90/gaffer/ci-cd-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 798 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.00067 $0.00798
Opus 5 $0.00034 $0.00399
Sonnet 5 $0.00013 $0.00160
Haiku 4.5 $0.00007 $0.00080

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

Security

Grade A, and why

ci-cd-pipeline 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 9d 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.

runner/skills/ci-cd-pipeline/SKILL.md · 65 lines

How it starts

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

Build pragmatic CI/CD pipelines

A pipeline that runs in 2 minutes and deploys reliably beats one that does everything and breaks weekly. Detect the real stack; emit stages that match the project's actual commands.

Canonical pipeline stages

lint → test → build → scan → deploy-staging → smoke-test → deploy-prod

Not every project needs all stages. Drop what adds no signal; never skip test and lint.

Stack detection signals

File present Inferred stack
package.json + tsconfig.json TypeScript/Node
pom.xml Java/Maven
build.gradle Java/Gradle
requirements.txt / pyproject.toml Python
go.mod Go
Cargo.toml Rust
Dockerfile Container build needed
.terraform/ or *.tf Terraform plan/apply stage

Steps

  1. Detect the stack. Read package.json, pom.xml, lockfiles, and Dockerfile — do not guess. Extract the actual test, lint, and build commands from the project's own scripts.
  2. Choose the minimal stage set. Map detected commands to pipeline stages. If a stage has no command, omit it — a placeholder stage that always passes adds noise.
  3. Configure caching. Cache dependency directories keyed by lockfile hash (e.g. pnpm-lock.yaml, go.sum). A cache miss should still produce a correct build.
  4. Add secrets hygiene. All credentials via CI secret store — never hardcoded. Mask secrets in logs. Principle of least privilege for deploy tokens.
  5. Emit the pipeline file. GitHub Actions (.github/workflows/ci.yml) or GitLab CI (.gitlab-ci.yml) depending on the platform. Validate YAML syntax before committing.
  6. Verify. Trigger the pipeline on a feature branch; confirm all stages pass; record timings; submit for review.

Build / Test

  • Validate YAML with the platform's own linter (actionlint for GitHub Actions, gitlab-ci-lint for GitLab) before push.
  • Confirm cache restores by running the pipeline twice — second run should be significantly faster.
  • Deploy stages: dry-run (--dry-run or preview) first; then gate production deploy on staging smoke-test pass.

Read the full file on GitHub · 65 lines

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. 9d ago First seen · 65 lines · 67 tokens per session scan A 4ef3a17763f4

Subscribe to this mod's changes

ci-cd-pipeline is a skill published in the GitHub repository tmj-90/gaffer (2 stars, last pushed 2d ago), licensed Apache-2.0. It adds 67 tokens to every session and 798 once invoked, about $0.0003 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.