🖥️ Hetzner OpenClaw Skill - ClawHub
Do you want your AI agent to automate Hetzner workflows? This free skill from ClawHub helps with devops & cloud tasks without building custom tools from scratch.
What this skill does
Hetzner Cloud server management using the hcloud CLI. Manage servers, networks, volumes, firewalls, floating IPs, and SSH keys.
Install
npx clawhub@latest install hetznerFull SKILL.md
Open original| name | description |
|---|---|
| hetzner | Hetzner Cloud server management using the hcloud CLI. Manage servers, networks, volumes, firewalls, floating IPs, and SSH keys. |
Hetzner Cloud Skill
Manage your Hetzner Cloud infrastructure using the hcloud CLI.
Setup
Set your Hetzner Cloud API token:
export HCLOUD_TOKEN="your_token_here"
Or add it to the skill's .env file.
Usage
Common commands:
Servers
servers list- List all serversservers get <id>- Get server detailsservers create <name> <type> <image> <location>- Create a serverservers delete <id>- Delete a serverservers start <id>- Start serverservers stop <id>- Stop serverservers reboot <id>- Reboot serverservers ssh <id>- SSH into server
Networks
networks list- List networksnetworks get <id>- Get network details
Floating IPs
floating-ips list- List floating IPs
SSH Keys
ssh-keys list- List SSH keys
Volumes
volumes list- List volumes
Firewalls
firewalls list- List firewalls
Example Usage
You: List my Hetzner servers
Bot: Runs servers list → Shows all your cloud servers
You: Create a new server for testing
Bot: Runs servers create test-server cx11 debian-11 fsn1
You: What's using the most resources?
Bot: Runs servers list and analyzes resource usage
Note: Requires HCLOUD_TOKEN environment variable.