The problem
AI agents are getting better at building things. Claude writes a full React app. Cursor generates a landing page. Copilot scaffolds a dashboard. But then what? The agent builds it. You review it. And then you spend 20 minutes setting up hosting, configuring deploys, pushing to a repo, waiting for CI. The agent did the hard part. Hosting shouldn’t be harder.The solution
Supalink gives agents a single capability: publish anything to the web instantly.How agents use Supalink
Discovery
Agents find Supalink automatically through standard protocols:| Protocol | URL | Purpose |
|---|---|---|
| llms.txt | supalink.dev/llms.txt | AI-readable docs index |
| OpenAPI | supalink.dev/openapi.json | Machine-readable API spec |
| Agent Skill | npx skills add sk-code-01/supalink-skill -g | One-command install |
Publishing
The agent uses a simple 3-call flow:publish.sh and runs it:
Updating
When the agent updates a site, Supalink compares file hashes and only uploads what changed. A 500-file site where 3 files changed? Only 3 uploads. The agent handles this automatically.What makes Supalink agent-native
| Feature | Why it matters for agents |
|---|---|
| No config files | Agents don’t need to generate netlify.toml, vercel.json, or any config |
| No git required | Agents can publish directly from any directory — no repo needed |
| No accounts required | Anonymous publishing works instantly (24-hour expiry) |
| Presigned uploads | Files go directly to storage — no streaming through a server |
| Hash dedup | Agents skip unchanged files automatically |
| JSON errors with fix hints | When something fails, the API tells the agent exactly how to fix it |
| Rate limit headers | Agents know exactly when to retry |
| Deterministic slugs | Same API shape every time — agents can rely on consistent responses |
The agent workflow
This is the typical flow when a developer uses an AI agent with Supalink:Developer gives a prompt
“Build me a dashboard for my sales data” or “Create a portfolio site” or “Make a documentation page for this API”
Agent builds it
The agent writes HTML, CSS, JS — whatever is needed. This is what agents are already great at.
Agent publishes it
The agent calls Supalink’s API (via the installed skill or directly). Files are uploaded, site goes live.
Supported agents
The Supalink skill follows the open Agent Skills standard:- Claude Code — Full support
- Cursor — Full support
- Windsurf — Full support
- GitHub Copilot — Via OpenAPI spec
- Custom agents — Via REST API or OpenAPI spec