ci-cd-pipelines

ci-cd-pipelines is a skill for Claude Code, Codex from New1Direction/korgex. It costs 15 tokens per session (327 once invoked), scanned A, original, MIT.

Guidance for CI/CD pipelines: automated workflows that build and test every code change and can then deliver the tested result. They act as checks before changes are merged and released.

In plain words
What is it for?
Use it to configure build, lint, test, merge checks, artifact promotion, secret handling, and automated delivery through environments such as staging and production.
Why use it?
Manual release steps are easy to perform differently or forget. An automated, repeatable pipeline makes failures visible before code reaches users.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/new1direction/korgex/ci-cd-pipelines
Any agent
npx skills add New1Direction/korgex --skill ci-cd-pipelines
Clone the repo
git clone --depth 1 https://github.com/New1Direction/korgex

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/new1direction/korgex/ci-cd-pipelines.svg)](https://agentmods.dev/skills/new1direction/korgex/ci-cd-pipelines)
Your own site
<a href="https://agentmods.dev/skills/new1direction/korgex/ci-cd-pipelines"><img src="https://agentmods.dev/badge/skills/new1direction/korgex/ci-cd-pipelines.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 327 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00015 $0.00327
Opus 5 $0.00008 $0.00163
Sonnet 5 $0.00003 $0.00065
Haiku 4.5 $0.00002 $0.00033

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

Security

Grade A, and why

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

src/skills_builtin/ci-cd-pipelines/SKILL.md · 28 lines

What it actually says

CI/CD makes quality automatic: every change is built, tested, and (when trusted) shipped the same way, every time.

  1. CI gates merges. On every push/PR, run: install → lint → build → test. The pipeline is the source of truth for "is this mergeable" — keep it green and treat a red build as stop-the-line.
  2. Make it fast and deterministic. Cache dependencies; parallelize independent jobs; pin tool versions so runs are reproducible. A slow or flaky pipeline gets ignored.
  3. No flaky gates. A test that fails intermittently erodes trust in the whole pipeline — fix or quarantine it (see condition-based-waiting for the usual cause).
  4. CD ships the artifact CI built — don't rebuild for deploy. Promote the exact tested artifact through environments (e.g. staging → prod).
  5. Secrets via the CI secret store, never in the config or logs. Scope them to the jobs that need them.
  6. Match the project. Use its existing CI system and config conventions; add a job, don't introduce a second CI tool.
  7. Surface results where people see them (status checks, required checks on the default branch) so the gate actually gates.

Pair with deploying-safely for what happens after the pipeline goes green.

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. 6d ago First seen · 28 lines · 15 tokens per session scan A 9ebab3358ef5

Subscribe to this mod's changes

ci-cd-pipelines is a skill published in the GitHub repository New1Direction/korgex (5 stars, last pushed 2mo ago), licensed MIT. It adds 15 tokens to every session and 327 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-31.

Related

Other skills, from other repositories

gh-fix-ci

Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions. Use the GitHub app from this plugin for PR metadata and patch context, and use gh for Actions check and log inspection before implementing any approved fix.

rojim666/SztuCode · 58 tokens

ci-self-heal

针对 CI 失败日志输出结构化诊断与修复建议. 识别失败分类(test/lint/build/type/dependency/config/flaky/timeout) / 根因假设 / 可执行 fix, 引用具体 file:line. 专为 PR-to-Prod 流程的 CI 卡点兜底设计.

rushengzhou/sid-code · 73 tokens

ci-debugger

Use when the user asks to diagnose or fix a CI, build, test, packaging, or deployment pipeline failure. 用户提到排查 CI、构建失败、测试失败、打包失败或部署流水线时使用。 Inspect the actual failed job, logs, configuration, inputs, cache, and local reproduction path before changing code or retrying jobs; distinguish infrastructure failures from…

lfyxhappy/lfcode · 85 tokens

ci-cd-and-automation

Design CI/CD pipelines with fast feedback, quality gates, and reliable deployments.

vignesh2027/AI-AGENT-SKILLS · 21 tokens

dsh-ci-test-reliability

Design, review, and diagnose DeepSeek Harness tests and fixtures that can fail nondeterministically under CI concurrency, shared host resources, clocks, process-global state, subprocesses, network listeners, or asynchronous teardown. Use when adding or changing tests with those risks, investigating flaky CI, or…

SparkElf/deepseek-harness-plus · 83 tokens

autonomous-loops

Patterns and architectures for autonomous Claude Code loops — from simple sequential pipelines to RFC-driven multi-agent DAG systems.

affaan-m/ECC · 26 tokens