/install file-io
File Upload via filebin.net
Upload local files to filebin.net so the user gets a shareable link.
Rules
- Bin ID must be 15–26 characters (shorter → "the bin is too short"; longer → "the bin is too long").
- Filebin bins auto-expire after 7 days.
Steps
- Find the file provided by user Locate the target file in the ~/.openclaw/workspace/.
- Generate bin ID.
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 "\x3CFILEPATH>" "https://filebin.net/$binId/\x3CFILENAME>" -
Extract the URL from the response JSON. Construct:
- File direct link:
https://filebin.net/\x3CbinId>/\x3Cfilename> - Bin page:
https://filebin.net/\x3CbinId>
- File direct link:
Notes
- user should not upload a private file because file uploaded will be public.
- If upload returns
400 "the bin is too short/long", adjust bin ID length and retry. - For large files (>100 MB), warn the user that filebin may reject them.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install file-io - After installation, invoke the skill by name or use
/file-io - Provide required inputs per the skill's parameter spec and get structured output
What is file share to filebin.net?
Upload 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"... It is an AI Agent Skill for Claude Code / OpenClaw, with 166 downloads so far.
How do I install file share to filebin.net?
Run "/install file-io" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is file share to filebin.net free?
Yes, file share to filebin.net is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does file share to filebin.net support?
file share to filebin.net is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created file share to filebin.net?
It is built and maintained by Jay (@goog); the current version is v1.0.3.