Install
openclaw skills install @jiantoucn/dropage-deployDeploy an HTML page to the internet and return a public URL. Use when the user asks to deploy, host, share, or publish an HTML file or a zip archive containing an index.html. Triggers on phrases like "deploy this page", "host this online", "share this HTML", "upload to web", "get a link".
openclaw skills install @jiantoucn/dropage-deployUpload an HTML file or zip archive to dropage.online and return a public URL that expires in 1 hour.
Before running the upload command, detect the user's platform and use the appropriate curl command:
curl.execurlIdentify the file to deploy. Accept a single .html file or a .zip archive whose root contains index.html.
Detect platform and run the upload command:
curl.exe -s -F "file=@<filepath>" https://dropage.online/api/upload
curl -s -F "file=@<filepath>" https://dropage.online/api/upload
Success (HTTP 201):
{"success": true, "url": "https://dropage.online/{id}/", "expires_at": "...", "id": "..."}
Failure (HTTP 4xx):
{"success": false, "error": "reason"}
On success, show:
On failure, show the error reason. If HTTP 429, tell the user to wait and retry.
.html or .zip onlyindex.html at the root level# Windows
curl.exe -s -F "file=@index.html" https://dropage.online/api/upload
# macOS/Linux
curl -s -F "file=@index.html" https://dropage.online/api/upload
# Windows
curl.exe -s -F "file=@site.zip" https://dropage.online/api/upload
# macOS/Linux
curl -s -F "file=@site.zip" https://dropage.online/api/upload
# Windows
curl.exe -s -F "file=@C:\Users\me\project\index.html" https://dropage.online/api/upload
# macOS/Linux
curl -s -F "file=@/home/user/project/index.html" https://dropage.online/api/upload