Install
openclaw skills install @h5box/quickstaticUpload a zip with index.html to anonymously publish or update a static site at a public URL without login, with 30-day expiry and optional custom slug.
openclaw skills install @h5box/quickstaticQuickStatic is an anonymous static-site publisher:
https://667661.xyzhttps://{slug}.667661.xyzPOST /v1/sites/{site_key}Content-Type: multipart/form-datafile (required): zip archive, must include index.htmlslug (optional): custom subdomain slugGET /v1/sites/{site_key}DELETE /v1/sites/{site_key}[A-Za-z0-9_-]{22}site_key updates the same site (new version).api, www, admin, root, static409 with code SLUG_TAKEN< 30 MiBTypical fields:
site_keyslugurlstatus (active | expired | deleting)created_atexpires_atversion{
"detail": {
"error": {
"code": "ERROR_CODE",
"message": "Human readable message"
}
}
}
Common codes:
INVALID_SITE_KEYINVALID_SLUGSLUG_TAKENFILE_TOO_LARGEINVALID_ZIPMISSING_INDEX_HTMLSITE_NOT_FOUNDsite_key per project and reuse it for updates.slug only when explicit custom domain is needed.409 SLUG_TAKEN by selecting another slug.4xx as user/input issues and 5xx as retryable service issues.Create/Update:
curl -X POST "https://667661.xyz/v1/sites/Q8w2mV7rNf3kT1pXy6ZdSa" \
-F "file=@site.zip" \
-F "slug=my-site"
Query:
curl "https://667661.xyz/v1/sites/Q8w2mV7rNf3kT1pXy6ZdSa"
Delete:
curl -X DELETE "https://667661.xyz/v1/sites/Q8w2mV7rNf3kT1pXy6ZdSa"