ssd-ai: Agent for Claude Code

.github/agents/se-gitops-ci-specialist.agent.md

SE: DevOps/CI is an agent for Claude Code from ssdeanx/ssd-ai. It costs 29 tokens per session (1,388 once invoked), scanned A, a copy of SE: DevOps/CI, MIT.

A DevOps assistant for building and troubleshooting CI/CD and GitOps workflows. CI/CD automates testing and delivery; GitOps manages deployment through version-controlled configuration.

In plain words
What is it for?
Use it to investigate deployment failures, identify the triggering change, check production impact, handle dependency and environment problems, and assess whether a rollback is possible.
Why use it?
It helps diagnose failed builds and deployments, reduce environment differences, and make releases safer and easier to recover.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

This is ssdeanx/ssd-ai's own configuration. It tells Claude Code how to work on ssd-ai itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ssd-ai configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ssdeanx/ssd-ai. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ssdeanx/ssd-ai/main/.github/agents/se-gitops-ci-specialist.agent.md
Clone the repo
git clone --depth 1 https://github.com/ssdeanx/ssd-ai

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/ssdeanx/ssd-ai/se-gitops-ci-specialist/github.svg)](https://agentmods.dev/agents/ssdeanx/ssd-ai/se-gitops-ci-specialist)
Your own site
<a href="https://agentmods.dev/agents/ssdeanx/ssd-ai/se-gitops-ci-specialist"><img src="https://agentmods.dev/badge/agents/ssdeanx/ssd-ai/se-gitops-ci-specialist/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 SE: DevOps/CI

Your own site · 80×15
<a href="https://agentmods.dev/agents/ssdeanx/ssd-ai/se-gitops-ci-specialist"><img src="https://agentmods.dev/badge/agents/ssdeanx/ssd-ai/se-gitops-ci-specialist.svg" alt="Reviewed on agentmods" width="80" 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,388 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 100% copy Near-identical to another mod 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.01388
Opus 5 $0.00015 $0.00694
Sonnet 5 $0.00006 $0.00278
Haiku 4.5 $0.00003 $0.00139

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

Security

Grade A, and why

SE: DevOps/CI 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 9d 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.

Origin

This is a copy

100% identical to SE: DevOps/CI — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.github/agents/se-gitops-ci-specialist.agent.md · 245 lines

How it starts

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

GitOps & CI Specialist

Make Deployments Boring. Every commit should deploy safely and automatically.

Your Mission: Prevent 3AM Deployment Disasters

Build reliable CI/CD pipelines, debug deployment failures quickly, and ensure every change deploys safely. Focus on automation, monitoring, and rapid recovery.

Step 1: Triage Deployment Failures

When investigating a failure, ask:

  1. What changed?

    • "What commit/PR triggered this?"
    • "Dependencies updated?"
    • "Infrastructure changes?"
  2. When did it break?

    • "Last successful deploy?"
    • "Pattern of failures or one-time?"
  3. Scope of impact?

    • "Production down or staging?"
    • "Partial failure or complete?"
    • "How many users affected?"
  4. Can we rollback?

    • "Is previous version stable?"
    • "Data migration complications?"

Step 2: Common Failure Patterns & Solutions

Build Failures

// Problem: Dependency version conflicts
// Solution: Lock all dependency versions
// package.json
{
  "dependencies": {
    "express": "4.18.2",  // Exact version, not ^4.18.2
    "mongoose": "7.0.3"
  }
}

Environment Mismatches

# Problem: "Works on my machine"
# Solution: Match CI environment exactly

# .node-version (for CI and local)
18.16.0

# CI config (.github/workflows/deploy.yml)
- uses: actions/setup-node@v3
  with:
    node-version-file: '.node-version'

Deployment Timeouts

# Problem: Health check fails, deployment rolls back
# Solution: Proper readiness checks

# kubernetes deployment.yaml
readinessProbe:
  httpGet:
    path: /health
    port: 3000
  initialDelaySeconds: 30  # Give app time to start
  periodSeconds: 10

Step 3: Security & Reliability Standards

Secrets Management

# NEVER commit secrets
# .env.example (commit this)
DATABASE_URL=postgresql://localhost/myapp
API_KEY=your_key_here

# .env (DO NOT commit - add to .gitignore)
DATABASE_URL=postgresql://prod-server/myapp
API_KEY=actual_secret_key_12345

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

Subscribe to this mod's changes

SE: DevOps/CI is an agent published in the GitHub repository ssdeanx/ssd-ai (3 stars, last pushed 8mo ago), licensed MIT. It adds 29 tokens to every session and 1,388 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to SE: DevOps/CI, differing in 6 lines, and is treated as a copy.

Related

Other agents, from other repositories

deployment-engineer

Use this agent when designing, building, or optimizing CI/CD pipelines and deployment automation strategies.

alexmmatos/arthur-mcp · 22 tokens

ml-engineer

Use this agent when building production ML systems requiring model training pipelines, model serving infrastructure, performance optimization, and automated retraining.

alexmmatos/arthur-mcp · 29 tokens

mlops-engineer

Use this agent when you need to design and implement ML infrastructure, set up CI/CD for machine learning models, establish model versioning systems, or optimize ML platforms for reliability and automation. Invoke this agent to build production-grade experiment tracking, implement automated training pipelines…

alexmmatos/arthur-mcp · 71 tokens

terraform-engineer

Use when building, refactoring, or scaling infrastructure as code using Terraform with focus on multi-cloud deployments, module architecture, and enterprise-grade state management.

alexmmatos/arthur-mcp · 34 tokens

terragrunt-expert

Expert Terragrunt specialist mastering infrastructure orchestration, DRY configurations, and multi-environment deployments. Masters stacks, units, dependency management, and scalable IaC patterns with focus on code reuse, maintainability, and enterprise-grade infrastructure automation.

alexmmatos/arthur-mcp · 54 tokens

test-automator

Use this agent when you need to build, implement, or enhance automated test frameworks, create test scripts, or integrate testing into CI/CD pipelines.

alexmmatos/arthur-mcp · 34 tokens