Static Hosting AI Skill
One markdown file that teaches any AI agent to publish instantly. Free, no account needed.
SKILL.md
---
name:
ship
---
# Install
$
npm install -g @shipstatic/ship
# Deploy
$
ship ./dist --label production
# Link domain
$
ship domains set www.example.com <id>
Agent Skill
Teach your AI to ship.
One file that gives any AI agent the ability to publish, set up domains, and go live. No account needed. Publish first, claim later.
- Works with Claude Code, Cursor, Gemini CLI & more
- Publish without an account
- Claim URL to keep it permanently
- Open standard, just a SKILL.md file
$
curl --create-dirs -so .claude/skills/ship/SKILL.md https://www.shipstatic.com/SKILL.md
Configuration as Code
One file. Full control.
Drop a ship.json in your project root to configure rewrites, redirects, and custom headers. No dashboard clicks, no deploy flags, just code.
SPA Rewrites
Route all paths to index.html for client-side routing.
Redirects
Permanent or temporary redirects with status codes.
Custom Headers
Set CORS, CSP, cache-control, and any other HTTP header.
ship.json
{
"rewrites": [
{
"source": "/**",
"destination": "/index.html"
}
]
}