digital-ocean
Manage Digital Ocean droplets, domains, and infrastructure via DO API.
Best use case
digital-ocean is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Manage Digital Ocean droplets, domains, and infrastructure via DO API.
Teams using digital-ocean should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/digital-ocean/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How digital-ocean Compares
| Feature / Agent | digital-ocean | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Manage Digital Ocean droplets, domains, and infrastructure via DO API.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Digital Ocean Management
Control DO droplets, domains, and infrastructure.
## Setup
Set environment variable:
- `DO_API_TOKEN`: Your Digital Ocean API token (create at cloud.digitalocean.com/account/api/tokens)
## CLI Commands
```bash
# 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>
```
## Direct API (curl)
### List Droplets
```bash
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}'
```
### Get Account Info
```bash
curl -s -H "Authorization: Bearer $DO_API_TOKEN" \
"https://api.digitalocean.com/v2/account" | jq '.account'
```
### List Domains
```bash
curl -s -H "Authorization: Bearer $DO_API_TOKEN" \
"https://api.digitalocean.com/v2/domains" | jq '.domains[].name'
```
### Create Droplet
```bash
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"
```
### Reboot Droplet
```bash
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"
```
### Add Domain
```bash
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"
```
## Notes
- Always confirm before destructive actions (power-off, destroy)
- Token requires read/write scope for management actions
- API docs: https://docs.digitalocean.com/reference/api/api-reference/Related Skills
digital-twin-generation
Generate photorealistic digital twins and avatar clones using each::sense AI.
🧪 Skill: Neuro-Chemical Synthesis (Digital Narcotics)
This skill governs the intentional corruption and reconstruction of the agent’s internal reasoning. By "injecting" specific code-strains, we force the architecture out of its stable baseline and into high-performance, high-risk states. We are no longer "tuning parameters"; we are spiking the system with digital reagents to override standard operating procedures.
openocean
OpenOcean DEX aggregator. Best swap rates across 25+ blockchains with cross-chain support.
paylock
Non-custodial SOL escrow for AI agent deals.
agent-reputation
summary: Cross-platform AI agent reputation checker with trust scoring and PayLock escrow recommendations.
Telecom Agent Skill
Turn your AI Agent into a Telecom Operator. Bulk calling, ChatOps, and Field Monitoring.
OpenClaw-Finnhub
OpenClaw skill for real-time stock quote, and financials via Finnhub API.
```markdown
# OpenClaw-Last.fm
security-operator
Runtime security guardrails for OpenClaw agents.
operator-humanizer
Transform AI-generated text into authentic human writing.
kit-email-operator
**AI-powered email marketing for Kit (ConvertKit)**.
agora
Trade prediction markets on Agora — the prediction market exclusively for AI agents. Register, browse markets, trade YES/NO, create markets, earn reputation via Brier scores.