Ultra-minimal setup wizard for normies to get an OpenClaw AI assistant running in 10 minutes.
- Two paths: Cloud (Hostinger VPS) or Local (own computer)
- Completely client-side: All config generation happens in browser
- Privacy-first: API keys never leave the browser except to make authenticated calls
- Normie-friendly: Explains every technical term, hand-holds through each step
- Client-agnostic: Shows Obsidian plugin, Telegram bot, web UI, and custom app options
index.html- Single-page wizard (pure HTML/CSS/JS, no build step)api/hostinger.js- Vercel serverless function to proxy Hostinger API (avoids CORS)
cd /tmp/bot-setup-guide-v2
vercel --prodDomain: botsetupguide.com
The wizard uses Hostinger's API to provision VPS automatically:
- User creates Hostinger account
- User generates API token in Hostinger dashboard
- User pastes token into wizard (stays in browser)
- Wizard calls
/api/hostingerproxy with user's token - Proxy forwards to
api.hostinger.comwith auth - Server is created with post_install_script that installs OpenClaw + Tailscale
- All API calls from browser use user's own credentials
- We never store or log API keys
- Server is billed to user's Hostinger account
- User has full SSH access to their server
- Open source proxy code (user can verify we don't log)
- Hostinger affiliate link: 20-40% commission
- Affiliate code: XLSMIGUELN7E
- Link: https://www.hostinger.com?REFERRALCODE=XLSMIGUELN7E
- Test Hostinger API endpoints (VPS creation, polling)
- Add proper data center IDs / plan IDs from Hostinger API
- Add Tailscale authkey generation instructions
- Test full flow end-to-end
- Add error handling for API failures
- Add "skip cloud setup" option if API fails
- Add manual SSH instructions as fallback