file share to filebin.net

👤 goog 📦 v1.0.3 ⭐ 4.0 ⬇️ 736 下載
🤖 AI-Agent 免費

📖 技能介紹


name: file-io description: > 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" / "put on filebin.net". NOT for downloading or general file management.


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

  1. Find the file provided by user Locate the target file in the ~/.openclaw/workspace/.
  2. Generate bin ID.
    import uuid u = uuid.uuid4().hex # hex string (32 chars) bin_id = f"my-upload{u[-6:]}" print(bin_id)
  3. Upload via curl (PowerShell):

curl -si -X POST -H "Content-Type: application/octet-stream" -T "<FILEPATH>" "https://filebin.net/$binId/<FILENAME>"

  1. Extract the URL from the response JSON. Construct:
  2. File direct link: https://filebin.net/<binId>/<filename>
  3. Bin page: https://filebin.net/<binId>

Notes

發現更多技能外掛,請訪問7w4.net。

  • 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.

🤖 AI 評測

質量中上,核心功能描述清晰,提供了可參考的上傳步驟,但整體內容偏簡潔。優點是使用場景和限制說明明確,缺點是缺少完整的使用示例和錯誤處理指引,新手可能需要自行摸索。適合有基礎的使用者快速上手,但對新手不太友好。

📊 多維度評分

適應性4.3
規範性4.2
有效性4
可靠性3.7
可信度4.3

📁 包含檔案 (2 個)

📄 SKILL.md 1.4 KB
📄 _meta.json 126 B