Temporary static hosting for AI Agents. Say "deploy to show" in your Agent, get a public preview URL, auto-expire after 48 hours.
npx skills add polunzh/showThen say "deploy to show" in your Agent. That's it.
- Agent-native — just say "deploy to show" in Claude Code, Codex, or OpenCode
- Zero install — skill uses bash, tar, and curl. Nothing to install.
- 48-hour auto-expiry — deployments clean up automatically
- SPA support — handles client-side routing fallback
- Anonymous deploys — no token needed for the public instance, IP rate-limited
- Token auth for self-hosted — optional deploy token for private instances
- Zero cost — runs within Cloudflare free tier limits
The skill instructs your Agent to:
- Find the build output directory (
./dist,./build, etc.) - Pack it into a tar.gz
- Upload via
curlto the Show API - Return the live URL
No CLI binary, no global install, no config. Just npx skills add and go.
| Constraint | Value |
|---|---|
| Max upload size | 10 MB (compressed and extracted) |
| Max files per deployment | 100 |
| Deployment lifetime | 48 hours |
| Supported file types | HTML, CSS, JS, JSON, images, fonts, SVG, XML, etc. |
Show is open source and designed to run on your own Cloudflare account at zero cost. See Self-Hosting Guide for setup instructions.
# Start Worker locally
vp run worker:dev
# Run tests
vp test
# Lint and type check
vp checkMIT