| name | agentic-devops |
| version | 1.0.0 |
| description | Production-grade agent DevOps toolkit — Docker, process management, log analysis, and health monitoring. Built by engineers who run production. |
| author | Anvil AI |
| license | MIT |
| homepage | https://github.com/cacheforge-ai/cacheforge-skills |
| user-invocable | true |
| tags | ["cacheforge","devops","docker","monitoring","log-analysis","health-check","infrastructure","sre","discord","discord-v2"] |
| metadata | {"openclaw":{"emoji":"🛠️","homepage":"https://github.com/cacheforge-ai/cacheforge-skills","requires":{"bins":"[Truncated]"}}} |
When to use this skill
Use this skill when the user wants to:
- Run system diagnostics or health checks
- Manage Docker containers (status, logs, health, compose)
- Inspect running processes, ports, or resource hogs
- Analyze log files for errors, patterns, or frequency
- Check HTTP endpoint availability or port status
- Get a quick one-command system overview
Commands
Quick Diagnostics (start here)
python3 skills/agentic-devops/devops.py diag
Docker Operations
python3 skills/agentic-devops/devops.py docker status
python3 skills/agentic-devops/devops.py docker logs <container> --tail 100 --grep "error|warn"
python3 skills/agentic-devops/devops.py docker health
python3 skills/agentic-devops/devops.py docker compose-status --file docker-compose.yml
Process Management
python3 skills/agentic-devops/devops.py proc list --sort cpu
python3 skills/agentic-devops/devops.py proc ports
python3 skills/agentic-devops/devops.py proc zombies
Log Analysis
python3 skills/agentic-devops/devops.py logs analyze /var/log/syslog --pattern "error|fail|critical"
python3 skills/agentic-devops/devops.py logs tail /var/log/app.log --highlight "ERROR|WARN"
python3 skills/agentic-devops/devops.py logs frequency /var/log/app.log --top 20
Health Checks
python3 skills/agentic-devops/devops.py health check https://myapp.com/healthz
python3 skills/agentic-devops/devops.py health ports 80,443,8080,5432
python3 skills/agentic-devops/devops.py health system