If SimpleHost was already installed before, run the same command again to refresh to the latest version of the skill.Or if you prefer npx: npx skills add sk-code-01/simplehost-skill -g -yWorks with Claude Code, Cursor, Windsurf, and any agent supporting the Agent Skills standard.
The agent handles everything — scanning files, uploading, and returning a live URL.Your agent publishes instantly — no questions, no setup. If you don’t have an API key, it publishes as a temporary link (expires in 24 hours). After publishing, the agent will offer to make it permanent for free.Newer versions of the skill also check for updates automatically, but the install command above is always the simplest way to refresh immediately.
Agent: "Your site is live! This link expires in 24 hours. Want me to make it permanent? It's free — I just need your email and it takes 30 seconds."You: "yes, use me@example.com"Agent: "Check your email for a verification code (XXXX-XXXX)."You: "ABCD-1234"Agent: "Done! Your site is now permanent. https://bright-canvas-a7k2.simplehost.dev/"
The agent saves your API key automatically. From now on, every publish is permanent — no setup ever again.
That’s the entire flow. Install → publish → done. Your agent handles everything.
Build your own integration with the REST API. See the API Reference for full details.
# Create a sitecurl -X POST https://simplehost.dev/api/v1/publish \ -H "Authorization: Bearer sh_live_your_key" \ -H "Content-Type: application/json" \ -d '{"files": [{"path": "index.html", "size": 1024, "contentType": "text/html"}]}'# Upload files to the returned presigned URLs# Then finalize to go live
Your agent can also discover the API automatically via: