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.
curl -O https://raw.githubusercontent.com/strikersam/autonomous-ai-agency/master/.claude/commands/devops-check.mdgit clone --depth 1 https://github.com/strikersam/autonomous-ai-agencyWrote 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.
[](https://agentmods.dev/commands/strikersam/autonomous-ai-agency/devops-check)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
-
CI status check
# Check recent workflow results (via GitHub MCP if available) # Or review .github/workflows/ for known issues ls .github/workflows/ -
Workflow configuration audit
- Verify
ci.ymlruns tests on every push - Verify
security-scan.ymlruns CodeQL and bandit - Verify
deploy-backend.ymlonly deploys frommaster - Check for hardcoded secrets in workflow files:
grep -rn --include="*.yml" "password\|secret\|token\|key" .github/workflows/ | \ grep -v "\${{" | grep -v "#" | grep -v "example" - Verify
-
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" -
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 -
Production readiness gate
- Read
audit/production-readiness.md - Check which Must-Fix items are still open
- Run doctor endpoint if server is available
- Read
-
Dependency freshness check
pip list --outdated 2>/dev/null | head -20 -
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 -xpasses locally - No hardcoded secrets in workflow files
- Docker images build successfully
- Environment variables documented in
.env.example -
docs/changelog.mdhas unreleased changes documented - Health endpoint responds correctly
- No open P0/P1 security issues
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.
- 5d ago First seen · 72 lines · 0 tokens per session scan A 70df9bfb7d92
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.
Other commands, from other repositories
validate-pr-description
Use when validating a PR title and description for conventional commit format, issue linking keywords, and template compliance before submission.
fix-develop
Autonomous fix loop for failing CI on the repo's default branch.
CLAUDE
Multi-agent system for software development.
ops-k8s
Kubernetes deployment and orchestration.
ops-serverless
Deployment of serverless applications (AWS Lambda, Vercel, Cloudflare Workers).
fix-ci
Automated CI failure resolution loop — diagnoses failures on a PR, applies targeted fixes, pushes, and loops until green or max attempts reached.