ci-pipelines

ci-pipelines is a skill for Claude Code from the-open-agent/oss-skills. It costs 104 tokens per session (2,381 once invoked), scanned B, original, Apache-2.0.

A set of practices for continuous integration, where a service automatically builds and tests code changes for a repository.

In plain words
What is it for?
It helps organize GitHub Actions workflows, test multiple operating systems or language versions, cache dependencies, handle pull requests from forks, and schedule slower checks.
Why use it?
It helps find problems quickly, keeps checks reliable, and lets contributors from copied repositories test changes without access to private secrets.

Skill for Claude Code

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

Part of the oss-skills plugin — 18 skills shipped together

Good fit It helps organize GitHub Actions workflows, test multiple operating systems or language versions, cache dependencies, handle pull requests from forks, and schedule slower checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/the-open-agent/oss-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 the-open-agent/oss-skills --skill ci-pipelines
Clone the repo
git clone --depth 1 https://github.com/the-open-agent/oss-skills

Made for: Claude Code.

Or install oss-skills, the plugin that ships this one along with the rest of its 18 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/the-open-agent/oss-skills/ci-pipelines/github.svg)](https://agentmods.dev/skills/the-open-agent/oss-skills/ci-pipelines)
Your own site
<a href="https://agentmods.dev/skills/the-open-agent/oss-skills/ci-pipelines"><img src="https://agentmods.dev/badge/skills/the-open-agent/oss-skills/ci-pipelines/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-pipelines

Your own site · 80×15
<a href="https://agentmods.dev/skills/the-open-agent/oss-skills/ci-pipelines"><img src="https://agentmods.dev/badge/skills/the-open-agent/oss-skills/ci-pipelines.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,381 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00104 $0.02381
Opus 5 $0.00052 $0.01190
Sonnet 5 $0.00021 $0.00476
Haiku 4.5 $0.00010 $0.00238

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

Security

Grade B, and why

ci-pipelines scanned grade B with 1 finding 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.

Unrestricted tool accessmediumExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

they are ephemeral and isolated. Every fork PR can run arbitrary code on them. If you
skills/ci-pipelines/SKILL.md · 232 lines

How it starts

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

CI Pipelines

CI in open source has a constraint that internal CI does not: most PRs come from forks, by people who cannot debug your pipeline and will not wait for it. Design for that.

Targets

Metric Target Why
PR feedback time < 10 min Beyond this, contributors context-switch away
Lint/format feedback < 2 min Fail fast on the cheap stuff
Flake rate < 1% Above this, red CI gets ignored (see testing-strategy)
Fork PR success 100% of non-secret jobs A contributor must be able to get green

The last one is the one projects get wrong. If a fork PR always shows a red X because a deploy job cannot access secrets, every contributor's first experience is failure.

Workflow structure

Split by purpose and speed, not into one giant workflow:

.github/workflows/
├── ci.yml            # lint + test on PR and push to main — the required check
├── release.yml       # tag-triggered publish (see release-engineering)
├── codeql.yml        # scheduled security scanning
├── nightly.yml       # slow: full matrix, fuzzing, benchmarks, downstream tests
└── docs.yml          # deploy docs on merge to main

A minimal, correct ci.yml:

name: CI
on:
  push:
    branches: [main]
  pull_request:

# Cancel superseded runs — the single biggest CI cost saving, one block long
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: ${{ github.event_name == 'pull_request' }}

permissions:
  contents: read          # least privilege by default; grant per-job as needed

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with: { node-version: '22', cache: 'npm' }
      - run: npm ci
      - run: npm run lint
      - run: npm run typecheck

  test:
    needs: lint                      # don't burn matrix minutes on unformatted code
    strategy:
      fail-fast: false               # show every failing cell, not just the first
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
        node: ['20', '22']
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with: { node-version: ${{ matrix.node }}, cache: 'npm' }
      - run: npm ci
      - run: npm test

Read the full file on GitHub · 232 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 · 232 lines · 104 tokens per session scan B dedab3b1b753

Subscribe to this mod's changes

ci-pipelines is a skill published in the GitHub repository the-open-agent/oss-skills (5 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 104 tokens to every session and 2,381 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). 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

babysit

Same-session monitoring loop for PRs, CI runs, tickets, and deployments using the monitorstart / monitorupdate / autonudgestop MCP tools. The loop re-injects your check instructions into THIS session on an idle interval — same context, same tools — and works from dashboard chat, Slack threads, and Discord DMs. Use…

kirodotdev/KiroCrew · 137 tokens

github-pr-workflow

GitHub PR yaşam döngüsü — branch, commit, aç, CI izle, merge et.

furkangonel/cowrangler · 25 tokens

github-release-management

Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.

amangit1314/repo-rag · 27 tokens

github-workflow-automation

Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management.

amangit1314/repo-rag · 26 tokens

opentrons-dev-update

Guide users through setting up or updating a local development environment for the Opentrons opentrons/opentrons monorepo. Use this skill whenever a user mentions setting up or updating Opentrons development, cloning the Opentrons repo, installing or refreshing dev dependencies for Opentrons, getting started…

koji/opentrons-devenv-skill · 170 tokens

opentrons-dev-setup

Guide users through setting up a local development environment for the Opentrons opentrons/opentrons monorepo. Use this skill whenever a user mentions setting up Opentrons development, cloning the Opentrons repo, installing dev dependencies for Opentrons, getting started contributing to Opentrons, or hits errors…

koji/opentrons-devenv-skill · 164 tokens