Scan Report
5 /100
tonic-vm-check
Instant VM health checks for Docker-based Linux servers — CPU, memory, disk, containers, DB sizes, and Docker disk usage reporting.
A straightforward Docker VM health-check tool that SSHes into configured hosts and reports system metrics; all capabilities are fully declared and the script contains no obfuscation or hidden behavior.
Safe to install
No action required. The skill is a clean, well-scoped monitoring tool.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | SSH key path resolution (id_rsa default) |
| Network | READ | READ | ✓ Aligned | SSH to VM_HOST via declared env var |
| Shell | WRITE | WRITE | ✓ Aligned | Remote command execution over SSH for diagnostics |
| Environment | READ | READ | ✓ Aligned | VM_HOST, VM_USER, SSH_KEY env var reads |
| Skill Invoke | NONE | NONE | — | No cross-skill invocations |
| Clipboard | NONE | NONE | — | Not used |
| Browser | NONE | NONE | — | Not used |
| Database | NONE | NONE | — | DB query via docker exec within the remote VM (read-only sizes) |
File Tree
2 files · 6.0 KB · 185 lines Shell 1f · 100L
Markdown 1f · 85L
├─
▾
scripts
│ └─
vm-check.sh
Shell
└─
SKILL.md
Markdown
Security Positives
✓ SKILL.md fully documents all sections, environment variables, thresholds, and safety rules
✓ No obfuscation, base64, or eval — plain shell script
✓ Cleanup operations are gated behind the 'cleanup' section flag and include user warnings
✓ No external network calls to third-party services (only SSH to user-specified VM)
✓ MySQL/Postgres queries are read-only (SELECT only) and handle auth failures gracefully
✓ No credential exfiltration — SSH key is used locally to authenticate, not harvested
✓ No supply chain dependencies — pure POSIX shell