From sundial-org-awesome-openclaw-skills-4
Manages Digital Ocean droplets, domains, and infrastructure via DO API using Python CLI scripts and curl examples. Supports listing, details, power on/off, reboots.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Control DO droplets, domains, and infrastructure.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Control DO droplets, domains, and infrastructure.
Set environment variable:
DO_API_TOKEN: Your Digital Ocean API token (create at cloud.digitalocean.com/account/api/tokens)# Account info
uv run {baseDir}/scripts/do.py account
# List all droplets
uv run {baseDir}/scripts/do.py droplets
# Get droplet details
uv run {baseDir}/scripts/do.py droplet <droplet_id>
# List domains
uv run {baseDir}/scripts/do.py domains
# List domain records
uv run {baseDir}/scripts/do.py records <domain>
# Droplet actions
uv run {baseDir}/scripts/do.py power-off <droplet_id>
uv run {baseDir}/scripts/do.py power-on <droplet_id>
uv run {baseDir}/scripts/do.py reboot <droplet_id>
curl -s -H "Authorization: Bearer $DO_API_TOKEN" \
"https://api.digitalocean.com/v2/droplets" | jq '.droplets[] | {id, name, status, ip: .networks.v4[0].ip_address}'
curl -s -H "Authorization: Bearer $DO_API_TOKEN" \
"https://api.digitalocean.com/v2/account" | jq '.account'
curl -s -H "Authorization: Bearer $DO_API_TOKEN" \
"https://api.digitalocean.com/v2/domains" | jq '.domains[].name'
curl -s -X POST -H "Authorization: Bearer $DO_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "my-droplet",
"region": "nyc1",
"size": "s-1vcpu-1gb",
"image": "ubuntu-22-04-x64"
}' \
"https://api.digitalocean.com/v2/droplets"
curl -s -X POST -H "Authorization: Bearer $DO_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"type":"reboot"}' \
"https://api.digitalocean.com/v2/droplets/<DROPLET_ID>/actions"
curl -s -X POST -H "Authorization: Bearer $DO_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "example.com"}' \
"https://api.digitalocean.com/v2/domains"