The official command-line interface for managing high-performance Hetzner Cloud resources including servers, networks, volumes, and load balancers.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install hcloud
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install hcloud using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The hcloud skill provides a comprehensive interface for interacting with the Hetzner Cloud API, enabling developers to provision and manage cloud infrastructure directly from their terminal or automation scripts. By integrating with Openclaw Skills, this tool simplifies the lifecycle of virtual machines, storage, and networking, offering a fast and cost-effective alternative to larger cloud providers.
This skill is designed for performance-oriented teams who need a reliable way to manage cloud resources without the overhead of a web-based console. Whether you are spinning up a single development server or orchestrating a complex network of load-balanced applications, the hcloud skill within the Openclaw Skills ecosystem provides the precision and speed required for modern DevOps workflows.
First, install the hcloud binary based on your system architecture:
# Detect architecture and download
ARCH=$(uname -m)
if [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "arm64" ]; then
URL="https://github.com/hetznercloud/cli/releases/latest/download/hcloud-linux-arm64.tar.gz"
else
URL="https://github.com/hetznercloud/cli/releases/latest/download/hcloud-linux-amd64.tar.gz"
fi
# Extract and install
cd /tmp
wget -q "$URL"
tar xzf hcloud-linux-*.tar.gz
sudo mv hcloud /usr/local/bin/
chmod +x /usr/local/bin/hcloud
Next, configure your API credentials:
mkdir -p ~/.config/hcloud
cat > ~/.config/hcloud/cli.toml <<EOF
active_context = "default"
[[contexts]]
name = "default"
token = "YOUR_HETZNER_API_TOKEN"
EOF
chmod 600 ~/.config/hcloud/cli.toml
The skill manages infrastructure data through structured identifiers and configuration files. Resource management is organized as follows:
| Resource Type | Key Attributes | Configuration Scope |
|---|---|---|
| Servers | Name, ID, IPv4/IPv6, Type, Image | Instance-specific |
| Firewalls | Name, Rules (JSON), Target Resources | Account-wide |
| Networks | Name, IP Range, Subnets, Gateway | Regional |
| Volumes | Name, Size (GB), Filesystem Path | Datacenter-locked |
All metadata is stored in ~/.config/hcloud/cli.toml, supporting multiple contexts for different Openclaw Skills environments.
--output json for integration with jq and other data processing tools.Loading
Selva is a specialized shopping platform designed for AI agents to search, compare, and purchase physical products directly from Amazon.

Deploy web applications and APIs to public URLs instantly using a single CLI command.

An automation skill for AI agents to publish content and status updates to Twitter/X and other social platforms via the VibePost API.

An automated travel simulator that generates GPS-accurate narrated road trips for AI agents using the Turai API.

A smart documentation agent that captures critical infrastructure and project changes at the end of every session while filtering out irrelevant noise.

A specialized research tool for discovering, de-duplicating, and citing academic papers across global scholarly databases.








































