spawn/hostkey
A fba986abea
feat: add HOSTKEY cloud provider (#909)
Add HOSTKEY (https://hostkey.com/) as a new cloud provider to the spawn
matrix. HOSTKEY offers affordable VPS hosting starting from €1/month with
hourly billing, making it suitable for running AI agents that use remote
API inference.

Changes:
- Created hostkey/lib/common.sh with HOSTKEY API wrappers
- Implemented hostkey/claude.sh (Claude Code agent)
- Implemented hostkey/openclaw.sh (OpenClaw agent)
- Added HOSTKEY to manifest.json clouds section
- Added matrix entries for all 15 agents (2 implemented, 13 missing)
- Updated test/record.sh with HOSTKEY test infrastructure
- Updated test/mock.sh with HOSTKEY URL handling
- Created hostkey/README.md with usage instructions

Data centers: Amsterdam, Frankfurt, Helsinki, Reykjavik, Istanbul, New York

Agent: cloud-scout

Co-authored-by: B (Discovery Team) <6723574+louisgv@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-13 05:08:26 -08:00
..
lib feat: add HOSTKEY cloud provider (#909) 2026-02-13 05:08:26 -08:00
claude.sh feat: add HOSTKEY cloud provider (#909) 2026-02-13 05:08:26 -08:00
openclaw.sh feat: add HOSTKEY cloud provider (#909) 2026-02-13 05:08:26 -08:00
README.md feat: add HOSTKEY cloud provider (#909) 2026-02-13 05:08:26 -08:00

HOSTKEY

HOSTKEY VPS hosting via REST API. HOSTKEY

Agents

Claude Code

bash <(curl -fsSL https://openrouter.ai/labs/spawn/hostkey/claude.sh)

OpenClaw

bash <(curl -fsSL https://openrouter.ai/labs/spawn/hostkey/openclaw.sh)

Authentication

To use HOSTKEY spawn scripts, you need a HOSTKEY API key:

  1. Log in to HOSTKEY
  2. Navigate to API settings in your account
  3. Generate a new API key
  4. Set the HOSTKEY_API_KEY environment variable

Non-Interactive Mode

HOSTKEY_SERVER_NAME=dev-mk1 \
HOSTKEY_API_KEY=your-api-key \
OPENROUTER_API_KEY=sk-or-v1-xxxxx \
  bash <(curl -fsSL https://openrouter.ai/labs/spawn/hostkey/claude.sh)

Environment Variables

  • HOSTKEY_API_KEY - Your HOSTKEY API key (required)
  • HOSTKEY_SERVER_NAME - Server name (prompted if not set)
  • HOSTKEY_LOCATION - Data center location: nl, de, fi, is, tr, us (default: nl)
  • HOSTKEY_INSTANCE_PRESET - Instance preset ID (default: 1)
  • OPENROUTER_API_KEY - Your OpenRouter API key (prompted via OAuth if not set)

Pricing

HOSTKEY offers affordable VPS hosting starting from €1/month with hourly billing available. Check HOSTKEY pricing for current rates.

Locations

  • nl - Amsterdam, Netherlands
  • de - Frankfurt, Germany
  • fi - Helsinki, Finland
  • is - Reykjavik, Iceland
  • tr - Istanbul, Turkey
  • us - New York, United States