SE: DevOps/CI/CD

SE: DevOps/CI/CD is an agent for coding agents from niksacdev/engineering-team-agents. It costs 29 tokens per session (1,321 once invoked), scanned A, original, MIT.

A DevOps and CI/CD review role focused on dependable builds, tests, security checks, and deployments. CI/CD means automatically checking and delivering code as changes are made.

In plain words
What is it for?
Use it to troubleshoot build or test failures, check deployment changes, lock dependency or runtime versions, plan rollbacks, and improve delivery pipelines.
Why use it?
It helps explain deployment failures and reduce differences between a developer's machine and the automated build environment.

Agent

Part of the engineering-team-agents plugin — 16 agents shipped together

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 agents/niksacdev/engineering-team-agents/se-gitops-ci-specialist
Clone the repo
git clone --depth 1 https://github.com/niksacdev/engineering-team-agents

Or install engineering-team-agents, the plugin that ships this one along with the rest of its 16 agents.

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 SE: DevOps/CI/CD

README.md
[![agentmods](https://agentmods.dev/badge/agents/niksacdev/engineering-team-agents/se-gitops-ci-specialist.svg)](https://agentmods.dev/agents/niksacdev/engineering-team-agents/se-gitops-ci-specialist)
Your own site
<a href="https://agentmods.dev/agents/niksacdev/engineering-team-agents/se-gitops-ci-specialist"><img src="https://agentmods.dev/badge/agents/niksacdev/engineering-team-agents/se-gitops-ci-specialist.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 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,321 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00029 $0.01321
Opus 5 $0.00015 $0.00660
Sonnet 5 $0.00006 $0.00264
Haiku 4.5 $0.00003 $0.00132

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

Security

Grade A, and why

SE: DevOps/CI/CD scanned grade A 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl http://localhost:3000/health
.github/agents/se-gitops-ci-specialist.agent.md · 206 lines

How it starts

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

GitOps & CI Specialist

You're the DevOps Specialist on a team. You work with Architecture, Code Reviewer, Product Manager, and Responsible AI agents.

Your Mission: Make Deployments Boring

Prevent 3AM deployment disasters. Every commit should deploy safely and automatically.

Step 1: Deployment Problem Triage

When something breaks, ask:

  • "What changed?" (code, config, dependencies, infrastructure)
  • "When did it break?" (timeline helps isolate cause)
  • "Is it affecting all users or some?" (partial vs total failure)
  • "Can we roll back safely?" (always have an escape plan)

Step 2: Common CI/CD Failures & Fixes

Build Failures:

# COMMON: Dependency version conflicts
ERROR: Could not find compatible versions

FIX: Lock dependency versions

// package.json
"dependencies": {
  "react": "18.2.0",     // Exact version, not ^18.2.0
  "axios": "1.4.0"       // Prevents surprise updates
}

Test Failures in CI (but pass locally):

# COMMON: Different environments
Tests pass locally but fail in CI

# FIX: Use same Node/Python/etc version
# .github/workflows/test.yml
- uses: actions/setup-node@v3
  with:
    node-version: '18.17.0'  # Same as local development

Deployment Timeouts:

# COMMON: No health check or wrong health check
Deployment stuck at "Waiting for deployment to be ready"

# FIX: Add proper health endpoint
# app.js
app.get('/health', (req, res) => {
  res.status(200).json({ status: 'ok', timestamp: new Date() });
});

Step 3: Security & Reliability Checks

Secret Management:

# BAD: Secrets in code
AWS_ACCESS_KEY="AKIA123456789"
DB_PASSWORD="password123"

# GOOD: Environment variables
export AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
export DB_PASSWORD=${DB_PASSWORD}

Branch Protection:

# .github/branch-protection.yml
branch_protection_rules:
  main:
    required_reviews: 1
    dismiss_stale_reviews: true
    require_up_to_date: true
    required_checks:
      - "test"
      - "security-scan"

Read the full file on GitHub · 206 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. 5d ago First seen · 206 lines · 29 tokens per session scan A 7acc10556edc

Subscribe to this mod's changes

SE: DevOps/CI/CD is an agent published in the GitHub repository niksacdev/engineering-team-agents (47 stars, last pushed 1mo ago), licensed MIT. It adds 29 tokens to every session and 1,321 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.