Infrastructure check
Skill choutos/agent-skills-spec/examples/infrastructure-check
Run periodic infrastructure health checks across servers. Use for scheduled monitoring, daily health reports, or when asked to verify system status. Triggers on: health check, infra check, server status, monitoring, systems check.From its SKILL.md
npx -y skills add choutos/agent-skills-spec --skill infrastructure-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 1 command, including `scripts/check.sh`.
SKILL.md
1.2 KB, 239 tokens by cl100k_base, as published. Nobody here has run it
Infrastructure Check
Run scripts/check.sh to collect system metrics, then interpret the results.
What to Check
- Disk usage — flag anything above 80%
- Memory — flag if available < 10% of total
- Load average — flag if 1-min load > number of CPU cores
- Docker containers — flag any not in "Up" state
- SSL certificates — flag if expiring within 30 days
- Backups — flag if last backup > 24 hours ago
Interpreting Results
The script outputs JSON. Focus on items with "status": "warning" or "status": "critical".
For warnings: note in report, no immediate action needed. For critical: alert immediately with the specific issue and recommended fix.
Report Format
## Infrastructure Report — YYYY-MM-DD HH:MM
### Summary
✅ X systems healthy | ⚠️ Y warnings | ❌ Z critical
### Details
[only include warnings and critical items]
### Recommended Actions
[specific, actionable items]
What ships with it: 1 file
1.5 KB alongside SKILL.md, 1 of them executable
scripts/
- check.shruns1.5 KB