ci-pipeline

ci-pipeline is a skill for Claude Code, Codex from byerlikaya/claude-starter-kit. It costs 30 tokens per session (606 once invoked), scanned A, original, MIT.

A set of rules for a continuous integration pipeline, the automated checks that run when code is changed. It covers formatting, building, tests, code quality, security, and packaging in a fixed order.

In plain words
What is it for?
Use it to design or troubleshoot GitHub Actions, Jenkins, or similar workflows, including pull-request checks, branch protection, secrets, and failed build logs.
Why use it?
It catches broken code and unsafe changes before they are merged, while making builds more repeatable across machines.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Use it to design or troubleshoot GitHub Actions, Jenkins, or similar workflows, including pull-request checks, branch protection, secrets, and failed build logs.

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

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/byerlikaya/claude-starter-kit/ci-pipeline"><img src="https://agentmods.dev/badge/skills/byerlikaya/claude-starter-kit/ci-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 606 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.00030 $0.00606
Opus 5 $0.00015 $0.00303
Sonnet 5 $0.00006 $0.00121
Haiku 4.5 $0.00003 $0.00061

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

Security

Grade A, and why

ci-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 11d 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.

claude-starter/skills/ci-pipeline/SKILL.md · 41 lines

How it starts

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

CI Pipeline

Trigger phrases: "ci", "pipeline", "github actions", "jenkins", "build pipeline", "pr gate", "pr check", "build fail", "build broke", "ci is failing", "workflow"

Stages (fail-fast — stop if it breaks early)

  1. Lint / format — style and static analysis
  2. Build — 0 warnings / 0 errors
  3. Test — unit + integration, coverage collected
  4. Qualitysonarqube-check quality gate
  5. Securitydependency-audit + security-scan (where applicable)
  6. Artifact / packaging — (deployment is separate, deploy)

Principles

  • Deterministic: dependencies pinned, cache keyed correctly; no "it worked on my machine".
  • Secret management: CI secret store; NO plaintext secrets in the repo/logs (overlaps with trace scan).
  • PR gate: quality gate + tests must pass; a red build is not merged.
  • Branch protection: direct push to main is disabled; PR + review required.

When a stage fails

  1. Fetch the failing job's log firstgh run view --log-failed, glab ci trace, jenkins-cli console <job>, whichever this project's host provides — and quote the failing lines: a status icon names which job broke, never why. Log unreachable (no access, retention expired, the job never started) → report exactly that; never infer the cause.
  2. Reproduce with the exact command the pipeline runs, copied out of the CI config — same flags, same env, same versions. Green locally is not a pass: the environment difference is now the defect, so take it to systematic-debugging.
  3. A re-run is not a fix. Re-running until it passes hides the cause; re-run only to establish that a failure is intermittent — and an intermittent failure in this repo's own suite is a bug (testing), not a retry.
  4. Say which failures aren't yours. A required check owned by another change, or an external service that was down, is reported out of scope with the job named — silence about it reads as a clean run.

Read the full file on GitHub · 41 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. 11d ago First seen · 41 lines · 30 tokens per session scan A 1ad148dc5aca

Subscribe to this mod's changes

ci-pipeline is a skill published in the GitHub repository byerlikaya/claude-starter-kit (22 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 606 once invoked, about $0.0002 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.