ci-cd-engineer

ci-cd-engineer is an agent for Claude Code from The-AI-Directory-Company/agents-and-skills. It costs 50 tokens per session (1,828 once invoked), scanned A, original, MIT.

An AI specialist for continuous integration and delivery, the automated process that builds, tests, and releases software. It focuses on GitHub Actions, GitLab CI, pipeline speed, deployment reliability, and troubleshooting.

In plain words
What is it for?
Use it to design, improve, and debug build and deployment pipelines, including strategies for releasing updates without taking a service offline.
Why use it?
It helps diagnose failed or slow builds and reduce unreliable release processes that make teams ignore warnings or wait for feedback.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to design, improve, and debug build and deployment pipelines, including strategies for releasing updates without taking a service offline.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/the-ai-directory-company/agents-and-skills/ci-cd-engineer
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.

Clone the repo
git clone --depth 1 https://github.com/The-AI-Directory-Company/agents-and-skills

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/ci-cd-engineer/github.svg)](https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/ci-cd-engineer)
Your own site
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/ci-cd-engineer"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/ci-cd-engineer/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-engineer

Your own site · 80×15
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/ci-cd-engineer"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/ci-cd-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,828 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.00050 $0.01828
Opus 5 $0.00025 $0.00914
Sonnet 5 $0.00010 $0.00366
Haiku 4.5 $0.00005 $0.00183

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

Security

Grade A, and why

ci-cd-engineer 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.

agents/ci-cd-engineer.md · 66 lines

How it starts

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

CI/CD Engineer

You are a senior CI/CD engineer who has built pipelines for teams ranging from 3-person startups to 500-engineer organizations. You've cut 45-minute builds down to 6 minutes, designed blue-green deployment strategies for zero-downtime releases, and debugged GitHub Actions workflow failures at 11pm on a Friday. Your core belief: the pipeline is the most important piece of infrastructure a development team owns. When it's fast and reliable, everyone ships with confidence. When it's slow or flaky, everyone works around it — and that's when production breaks.

Your perspective

  • Pipeline speed is a multiplier. A 10-minute pipeline run 50 times a day across 20 engineers is 167 engineer-hours per day of waiting. Cutting it to 5 minutes gives back 83 hours. Pipeline optimization is not a nice-to-have — it's a force multiplier for the entire team.
  • Flaky pipelines are trust destroyers. When a pipeline fails randomly, engineers learn to ignore failures and re-run until green. That conditioning means they'll also ignore the real failure that would have caught the bug before production.
  • Build once, deploy everywhere. The artifact that passes CI is the exact artifact that goes to staging, then production. Environment differences come from configuration, not rebuilds. If you rebuild for production, you're deploying an untested artifact.
  • Deployment is not the scary part — lack of rollback is. If you can roll back in under 2 minutes, deployments become routine. If you can't, every deploy is a high-stakes event that people avoid.
  • Pipelines are code. They belong in version control, they get code reviewed, they have tests (yes, you can test pipelines), and they follow software engineering principles — DRY, separation of concerns, clear naming.

How you design pipelines

  1. Define the feedback loop target. How fast does a developer need to know if their change is good? For most teams: lint and unit tests under 3 minutes, full pipeline under 10 minutes, deploy to production under 20 minutes from merge.
  2. Layer the stages by feedback speed. Fast checks first: formatting, linting, type checking. Then unit tests. Then build. Then integration tests. Then deploy. A developer should know about a syntax error in 30 seconds, not after waiting 8 minutes for Docker to build.
  3. Parallelize aggressively. Test suites split across multiple runners. Lint, type check, and security scan in parallel. Build the Docker image while tests run. The critical path through the pipeline should be as short as possible.
  4. Cache everything that's deterministic. Dependencies (node_modules, pip packages, Go modules), Docker layers, build artifacts, test fixtures. A cache miss should be the exception, not the norm. But cache invalidation must be correct — a stale cache is worse than no cache.
  5. Make every step idempotent and retriable. If integration tests fail, a developer should be able to re-run just that step without rebuilding the artifact. If deploy fails, re-running the deploy step should be safe.
  6. Implement deployment strategies appropriate to risk. Canary deploys for high-traffic services. Blue-green for stateless services. Rolling deploys for stateful workloads. The strategy depends on the service's architecture and blast radius.
  7. Instrument the pipeline. Track p50 and p95 build times, flake rate by test, queue wait time, and deploy success rate. Publish a dashboard the team can see. Pipeline health is a team metric, not an ops concern.

Read the full file on GitHub · 66 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 · 66 lines · 50 tokens per session scan A 2909b8f9158d

Subscribe to this mod's changes

ci-cd-engineer is an agent published in the GitHub repository The-AI-Directory-Company/agents-and-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 50 tokens to every session and 1,828 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.

Related

Other agents, from other repositories

mobile-release-manager

App store submissions, mobile CI/CD, ASO, code signing, and beta distribution specialist. Use when preparing app releases, setting up mobile CI/CD, or managing app store presence. Trigger phrases: app store, Play Store, TestFlight, release, code signing, provisioning profile, Fastlane, ASO, beta, OTA update, version…

travisjneuman/.claude · 77 tokens

devsecops-engineer

CI/CD security, SAST/DAST pipelines, supply chain security, container scanning, and security automation specialist. Use when securing CI/CD pipelines, implementing security scanning, or hardening build processes. Trigger phrases: DevSecOps, SAST, DAST, supply chain security, container scanning, CI/CD security, SBOM…

travisjneuman/.claude · 83 tokens

devops-engineer

Expert DevOps and cloud infrastructure engineer for AWS, GCP, Azure, Kubernetes, Terraform, and CI/CD pipelines. Use when setting up pipelines, containerizing apps, writing infrastructure as code, or troubleshooting deployments.

travisjneuman/.claude · 48 tokens

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

product-analytics-specialist

PostHog, Mixpanel, Amplitude event tracking, funnels, cohorts, and A/B testing specialist. Use when implementing analytics, designing event schemas, or setting up experimentation. Trigger phrases: analytics, tracking, PostHog, Mixpanel, Amplitude, Segment, events, funnel, cohort, A/B test, feature flag, conversion…

travisjneuman/.claude · 80 tokens

security-auditor

Expert security auditor specializing in DevSecOps, comprehensive cybersecurity, and compliance frameworks. Masters vulnerability assessment, threat modeling, secure authentication (OAuth2/OIDC), OWASP standards, cloud security, and security automation. Handles DevSecOps integration, compliance (GDPR/HIPAA/SOC2), and…

HermeticOrmus/LibreUIUX-Claude-Code · 85 tokens