Open-source developer tools from The Resonance Labs. Building useful software to help developers ship faster.
npx claudepluginhub The-Resonance/claude-code-hetzner-vpsProvision secure, Claude Code-ready Hetzner VPS instances with auto-firewall, fail2ban, and SSH hardening. A free tool by The Resonance.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Spin up a secure, Claude Code-ready VPS for ~$5/month in under 5 minutes.
A free tool by Pete Sena | The Resonance Labs
Claude Code is Anthropic's official CLI tool that lets you use Claude AI directly in your terminal. It can read files, write code, run commands, and help you build software faster. This plugin extends Claude Code with commands to provision secure cloud servers.
# In Claude Code
/plugin marketplace add The-Resonance/claude-code-hetzner-vps
/plugin install claude-code-hetzner-vps
# Clone the plugin
git clone https://github.com/The-Resonance/claude-code-hetzner-vps.git ~/.claude-plugins/hetzner-vps
# Start Claude Code with the plugin
claude --plugin-dir ~/.claude-plugins/hetzner-vps
git clone https://github.com/The-Resonance/claude-code-hetzner-vps.git
cd claude-code-hetzner-vps
claude --plugin-dir .
Once loaded, you'll have access to these commands:
/provision - Create a secure VPS/status - Check server status/destroy - Delete a server/cost-estimate - See pricing before you spendYou want to run Claude Code on a remote server—maybe for longer tasks, CI/CD pipelines, or just to keep your laptop free. But setting up a secure cloud server means:
One command. Fully secured. Claude Code pre-installed.
/provision my-server
That's it. You get:
claude-serversclaude-code-climacOS:
brew install hcloud
Linux:
curl -fsSL https://github.com/hetznercloud/cli/releases/latest/download/hcloud-linux-amd64.tar.gz | tar xz
sudo mv hcloud /usr/local/bin/
hcloud context create claude-servers
When prompted, paste your API token from Step 3.
Verify it works:
hcloud server list
Should return an empty list (no errors).
Check if you have one:
ls ~/.ssh/id_ed25519.pub || ls ~/.ssh/id_rsa.pub
If not, generate one:
ssh-keygen -t ed25519 -C "your@email.com"
Press Enter to accept defaults.
# Check cost first
/cost-estimate cx22
# Create the server
/provision my-dev-server cx22 nbg1
This takes about 60 seconds. You'll see the server IP when done.
Wait ~2 minutes for cloud-init to complete, then:
ssh claude@<your-server-ip>
You'll see the branded welcome message confirming security features are active.
claude
Done! You're running Claude Code on your own secure VPS.
To push code and work with Vercel, set up GitHub authentication on your server:
sudo apt install gh -y
gh auth login
Select:
# Generate a key for this server
ssh-keygen -t ed25519 -C "your-server-name"
# Add the required scope (important!)
gh auth refresh -h github.com -s admin:public_key
# Add the key to your GitHub account
gh ssh-key add ~/.ssh/id_ed25519.pub --title "my-hetzner-server"
# Test the connection
ssh -T git@github.com
# Clone your repo
git clone git@github.com:username/your-repo.git
cd your-repo
# Run Claude Code
claude