Install
openclaw skills install file-ioUpload local files to filebin.net for quick sharing. Use when the user asks to upload a file, share a file via link, host a file, or says "upload to filebin" / "put on filebin.net". NOT for downloading or general file management.
openclaw skills install file-ioUpload local files to filebin.net so the user gets a shareable link.
import uuid
u = uuid.uuid4().hex # hex string (32 chars)
bin_id = f"my-upload{u[-6:]}"
print(bin_id)
Upload via curl (PowerShell):
curl -si -X POST -H "Content-Type: application/octet-stream" -T "<FILEPATH>" "https://filebin.net/$binId/<FILENAME>"
Extract the URL from the response JSON. Construct:
https://filebin.net/<binId>/<filename>https://filebin.net/<binId>400 "the bin is too short/long", adjust bin ID length and retry.