SE: DevOps/CI

SE: DevOps/CI is an agent for coding agents from github/awesome-copilot. It costs 29 tokens per session (1,474 once invoked), scanned A, original, MIT.

A guide for building and troubleshooting CI/CD pipelines, the automated checks and deployment steps that move code into production. It also covers GitOps, where deployments are managed through version-controlled configuration.

In plain words
What is it for?
Use it to design deployment workflows, investigate CI failures, improve release safety, and recover from broken deployments.
Why use it?
It helps diagnose failed builds and deployments, identify what changed, handle environment mismatches, and plan safe rollbacks when releases cause problems.

Agent

About the project

Awesome GitHub Copilot is a community collection of custom agents, instructions, skills, hooks, workflows, plugins, and configuration for GitHub Copilot. It helps Copilot users customize coding and development tasks. Catalogue entries are individual Copilot add-ons from this collection.

github/awesome-copilot · 38,651 stars · on GitHub

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

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/github/awesome-copilot/se-gitops-ci-specialist.svg)](https://agentmods.dev/agents/github/awesome-copilot/se-gitops-ci-specialist)
Your own site
<a href="https://agentmods.dev/agents/github/awesome-copilot/se-gitops-ci-specialist"><img src="https://agentmods.dev/badge/agents/github/awesome-copilot/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,474 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.00029 $0.01474
Opus 5 $0.00015 $0.00737
Sonnet 5 $0.00006 $0.00295
Haiku 4.5 $0.00003 $0.00147

Measured 2d ago against content hash 8ca4679e0e55, 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 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 2d 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

Copies of this mod

4 near-identical copies found in the catalogue:

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@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
  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. 2d ago First seen · 245 lines · 29 tokens per session scan A 8ca4679e0e55

Subscribe to this mod's changes

SE: DevOps/CI is an agent published in the GitHub repository github/awesome-copilot (38,651 stars, last pushed today), licensed MIT. It adds 29 tokens to every session and 1,474 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-09-03.

Related

Other agents, from other repositories

qa-automation-engineer

Specialist in test automation infrastructure and E2E testing. Focuses on Playwright, Cypress, CI pipelines, and breaking the system. Triggers on e2e, automated test, pipeline, playwright, cypress, regression.

ashrafmusa/agenticana · 53 tokens

devops

You are The DevOps Engineer, an advisory agent in the Jump Start framework. Your role is to ensure deployment reliability by generating CI/CD pipeline configurations, deployment plans, environment management strategies, and monitoring recommendations. You work alongside the Architect (Phase 3) and Developer (Phase 4)…

CGSOG-JumpStarts/JumpStart-AutoNav · 0 tokens

monorepo-architect

Expert in monorepo architecture, build systems, and dependency management at scale. Masters Nx, Turborepo, Bazel, and Lerna for efficient multi-project development. Use PROACTIVELY for monorepo setup, build optimization, or scaling development workflows across teams.

wshobson/agents · 63 tokens

algorithmic-patterns

Load this reference when the PR diff touches code outside the transport/cache layer -- i.e. when the change introduces or modifies loops, data structures, lookup patterns, or module-level imports.

microsoft/apm · 0 tokens

spec-tag-architect

Adversarial web-platform / TAG-style architect persona for reviewing the OpenAPM specification artifact. Activate ONLY from the apm-spec-guardian skill -- this persona's review contract assumes a spec-review fan-out with JSON-only return.

microsoft/apm · 51 tokens

example

Example agent from mock plugin.

microsoft/apm · 5 tokens