autonomous-ai-agency: Command for Claude Code

.claude/commands/devops-check.md

devops-check is a command for Claude Code from strikersam/autonomous-ai-agency. It costs 0 tokens per session (578 once invoked), scanned A, original, MIT.

A review command for deployment and operations setup, including CI/CD workflows, Docker files, environment variables, and security checks. CI/CD means automated systems that test, scan, and deploy code.

In plain words
What is it for?
Use it before releases, when CI workflows fail, or when preparing a new environment or production health review.
Why use it?
It finds common release and deployment problems before they affect an environment, such as missing checks, unsafe container settings, or incomplete configuration.

Command for Claude Code

Written for Claude Code: installed under .claude/.

This is strikersam/autonomous-ai-agency's own configuration. It tells Claude Code how to work on autonomous-ai-agency 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 autonomous-ai-agency configures →

Reuse

Borrowing it

Nothing to install: this file belongs to strikersam/autonomous-ai-agency. 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/strikersam/autonomous-ai-agency/master/.claude/commands/devops-check.md
Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency

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 devops-check

README.md
[![agentmods](https://agentmods.dev/badge/commands/strikersam/autonomous-ai-agency/devops-check/github.svg)](https://agentmods.dev/commands/strikersam/autonomous-ai-agency/devops-check)
Your own site
<a href="https://agentmods.dev/commands/strikersam/autonomous-ai-agency/devops-check"><img src="https://agentmods.dev/badge/commands/strikersam/autonomous-ai-agency/devops-check/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 devops-check

Your own site · 80×15
<a href="https://agentmods.dev/commands/strikersam/autonomous-ai-agency/devops-check"><img src="https://agentmods.dev/badge/commands/strikersam/autonomous-ai-agency/devops-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 578 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.00000 $0.00578
Opus 5 $0.00000 $0.00289
Sonnet 5 $0.00000 $0.00116
Haiku 4.5 $0.00000 $0.00058

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

Security

Grade A, and why

devops-check 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 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.

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.

.claude/commands/devops-check.md · 72 lines

How it starts

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

/devops-check — DevOps Agent

Audit CI/CD pipelines, deployment configuration, and operational readiness.

When to use

  • Before any release
  • When CI workflows fail unexpectedly
  • When deploying a new environment
  • Monthly production health review

Steps

  1. CI status check

    # Check recent workflow results (via GitHub MCP if available)
    # Or review .github/workflows/ for known issues
    ls .github/workflows/
    
  2. Workflow configuration audit

    • Verify ci.yml runs tests on every push
    • Verify security-scan.yml runs CodeQL and bandit
    • Verify deploy-backend.yml only deploys from master
    • Check for hardcoded secrets in workflow files:
    grep -rn --include="*.yml" "password\|secret\|token\|key" .github/workflows/ | \
      grep -v "\${{" | grep -v "#" | grep -v "example"
    
  3. Docker image audit

    # Check Dockerfiles for security issues
    grep -n "USER root\|--privileged\|sudo" Dockerfile* 2>/dev/null
    # Check .dockerignore
    cat .dockerignore 2>/dev/null || echo "WARNING: No .dockerignore found"
    
  4. Environment variable completeness

    # Check that .env.example has all required vars
    cat .env.example 2>/dev/null | grep -v "^#" | grep -v "^$" | sort
    # Compare against vars used in proxy.py
    grep -n "os.environ.get" proxy.py | head -30
    
  5. Production readiness gate

    • Read audit/production-readiness.md
    • Check which Must-Fix items are still open
    • Run doctor endpoint if server is available
  6. Dependency freshness check

    pip list --outdated 2>/dev/null | head -20
    
  7. Report

    • Green: all CI checks pass, no critical issues found
    • Yellow: non-blocking issues found (document in PR description)
    • Red: blocking issues found (must fix before release)

Deployment Checklist

Before any production deployment:

  • pytest -x passes locally
  • No hardcoded secrets in workflow files
  • Docker images build successfully
  • Environment variables documented in .env.example
  • docs/changelog.md has unreleased changes documented
  • Health endpoint responds correctly
  • No open P0/P1 security issues

Read the full file on GitHub · 72 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 · 72 lines · 0 tokens per session scan A 70df9bfb7d92

Subscribe to this mod's changes

devops-check is a command published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 578 tokens. 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.