Monitor DigitalOcean VPS (Droplets) by fetching metrics from the DigitalOcean API (v2): list droplets, fetch CPU/memory/disk/bandwidth time-series, and produce quick summaries. Use when the user asks for server metrics, droplet utilization, bandwidth, or health checks for their DigitalOcean servers.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add Lord1Egypt/awesome-skill-forge --skill neomano-vps-monitoring --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Neomano Vps Monitoring?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/lord1egypt-neomano-vps-monitoring)More formats (shields.io, HTML) on the badges page.
---
name: neomano-vps-monitoring
description: Monitor DigitalOcean VPS (Droplets) by fetching metrics from the DigitalOcean API (v2): list droplets, fetch CPU/memory/disk/bandwidth time-series, and produce quick summaries. Use when the user asks for server metrics, droplet utilization, bandwidth, or health checks for their DigitalOcean servers.
metadata:
{
"openclaw": {
"emoji": "📈",
"requires": { "bins": ["python3"], "env": ["DIGITALOCEAN_TOKEN"] },
"primaryEnv": "DIGITALOCEAN_TOKEN"
},
"clawdbot": {
"emoji": "📈",
"requires": { "bins": ["python3"], "env": ["DIGITALOCEAN_TOKEN"] },
"primaryEnv": "DIGITALOCEAN_TOKEN"
}
}
---
## Credentials
Set `DIGITALOCEAN_TOKEN` (recommended: `~/.openclaw/.env`).
## What it can do
- List droplets (`/v2/droplets`) and find a droplet by name.
- Fetch metrics (Monitoring API):
- CPU: `/v2/monitoring/metrics/droplet/cpu`
- Memory usage % (computed): `memory_available` + `memory_total`
- Disk usage % (computed): `filesystem_free` + `filesystem_size`
- Bandwidth: `/v2/monitoring/metrics/droplet/bandwidth` (requires `direction=inbound|outbound`)
## Run
```bash
python3 {baseDir}/scripts/do_metrics.py droplets
python3 {baseDir}/scripts/do_metrics.py cpu --droplet "web-1" --minutes 60
python3 {baseDir}/scripts/do_metrics.py memory --droplet "web-1" --minutes 60
python3 {baseDir}/scripts/do_metrics.py bandwidth --droplet "web-1" --minutes 60
```
Notes:
- Output is JSON (raw time-series + a small computed summary).
- Requires that DigitalOcean Monitoring is enabled for the droplet.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!