file share to filebin.net

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

📖 技能介绍

File Upload via filebin.net

Upload local files to filebin.net so the user gets a shareable link.

7w4.net提供免费和付费技能下载。

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>"
  4. Extract the URL from the response JSON. Construct:

    • File direct link: https://filebin.net/<binId>/<filename>
    • Bin page: https://filebin.net/<binId>

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.

🤖 AI 评测

质量中上,核心功能描述清晰,提供了可参考的上传步骤,但整体内容偏简洁。优点是使用场景和限制说明明确,缺点是缺少完整的使用示例和错误处理指引,新手可能需要自行摸索。适合有基础的用户快速上手,但对新手不太友好。

📊 多维度评分

适应性4.3
规范性4.2
有效性4
可靠性3.7
可信度4.3

📁 包含文件 (2 个)

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