Install
openclaw skills install agentic-devopsProduction-grade agent DevOps toolkit — Docker, process management, log analysis, and health monitoring. Built by engineers who run production.
openclaw skills install agentic-devopsUse this skill when the user wants to:
# Full system health report — CPU, memory, disk, Docker, ports, errors, top processes
python3 skills/agentic-devops/devops.py diag
# Container status overview
python3 skills/agentic-devops/devops.py docker status
# Tail container logs with pattern filtering
python3 skills/agentic-devops/devops.py docker logs <container> --tail 100 --grep "error|warn"
# Docker health summary (running, stopped, unhealthy)
python3 skills/agentic-devops/devops.py docker health
# Docker Compose service status
python3 skills/agentic-devops/devops.py docker compose-status --file docker-compose.yml
# List processes sorted by resource usage
python3 skills/agentic-devops/devops.py proc list --sort cpu
# Show ports in use
python3 skills/agentic-devops/devops.py proc ports
# Detect zombie processes
python3 skills/agentic-devops/devops.py proc zombies
# Analyze log file for error patterns
python3 skills/agentic-devops/devops.py logs analyze /var/log/syslog --pattern "error|fail|critical"
# Tail log file with highlighted patterns
python3 skills/agentic-devops/devops.py logs tail /var/log/app.log --highlight "ERROR|WARN"
# Frequency analysis of log patterns
python3 skills/agentic-devops/devops.py logs frequency /var/log/app.log --top 20
# Check HTTP endpoint health
python3 skills/agentic-devops/devops.py health check https://myapp.com/healthz
# Scan specific ports
python3 skills/agentic-devops/devops.py health ports 80,443,8080,5432
# System resource health (CPU, memory, disk)
python3 skills/agentic-devops/devops.py health system