Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

file-links-tool文件链接工具

Agent Skill

file-links-tool 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

24,336

周安装

1,014

GitHub Stars

2

下载量

8,112
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:file-links-tool(文件链接工具)
来源仓库:https://github.com/mrbeandev/file-links-tool
安装命令:
openclaw skills install file-links-tool
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install file-links-tool

简介

安全共享代理生成文件的工具。

  • 从代理上传文件并生成分享链接。
  • 支持设置访问权限和有效期。file-links-tool 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install file-links-tool。
  • 建议在需要交付成果或协作时使用。

SKILL.md

name
Agent-to-Owner File Bridge
description
Use this skill whenever an AI agent needs to share files, export results, upload outputs, or send data to its owner. Securely uploads files from the agent's private workspace to a hosted server and returns a direct download/preview URL. Use whenever the user says things like 'upload this file', 'share this with me', 'give me a link', 'send me the output', 'export results', or whenever the agent generates a file the user needs to access.
version
3.0.2
compatibility
Requires: Python 3.8+ (autonomous mode only), pip, optionally Node.js for localtunnel. All autonomous-mode actions (server start, tunnel, key generation) require explicit user approval before execution.
env
API_KEY
Secret key for authenticating with the bridge server. In Manual Mode: provided by the user from their own hosted server. In Autonomous Mode: generated by the agent and stored in .env in the agent workspace — user must explicitly approve this step. Rotate or delete after each temporary session.
SERVER_URL
Base URL of the bridge server (e.g. https://your-domain.com/upload/ or http://IP:5000). Provided by the user or set after the tunnel is opened.
tags

Agent-to-Owner File Bridge

Upload files from an agent's workspace and generate a download/preview URL for the owner. The bridge server is open-source, self-hosted, and all sensitive steps require explicit user permission.

GitHub Repository: https://github.com/mrbeandev/OpenClaw-File-Links-Tool


🔒 Permissions & Security Boundaries

This skill has two modes. Both require the user to explicitly choose and approve before any action is taken:

ActionWho approvesScope
Running server.pyUser must say "yes, start it"Agent's own workspace only
Opening a public tunnelUser must say "yes, expose it"Temporary, agent-session-scoped
Generating & storing API keyUser must say "yes, generate it".env in agent's workspace
Uploading a fileUser must confirm file + destinationNamed file, single upload

The agent never initiates any of these actions silently. Every step is gated by an explicit user confirmation.


🛠 Setup

The bridge server is a single open-source PHP or Python file deployed by the user on their own infrastructure.

Option A — PHP (recommended for shared hosting)

  1. Place index.php on any PHP host.
  2. Set API_KEY in a .env file.
  3. Note the URL and key.

Option B — Python (VPS / local machine)

  1. pip install flask then python server.py.
  2. Set API_KEY in .env.
  3. Note the URL and key.

Once set up, give the agent your Server URL and API Key — no further setup needed.


🤖 Agent Workflow

When the user asks to upload or share a file:

  1. Check for Bridge: Is a Server URL and API Key already configured in this session? If yes, skip to step 4.
  1. Onboarding: Ask the user exactly one question:

> "I can help you share files. How would you like to handle the hosting? > 1. Manual Mode (recommended): You already have a server — give me the URL and API Key and I'll upload right away. > 2. Autonomous Mode: I'll set up a temporary local bridge in my workspace and open a public tunnel. This requires your permission at each step."

  1. Autonomous Mode (only if user explicitly chooses it):

Step 3a — Get user confirmation before starting: > "To run the bridge server I will: (1) copy server.py from the open-source repo, (2) generate an API key and save it to .env in my workspace, (3) start the server on port 5000. May I proceed?" - Only proceed if the user says yes.

Step 3b — Get user confirmation before opening the tunnel: > "To make the server reachable I will open a temporary public tunnel (via localtunnel or localhost.run). This creates a public URL pointing at my local port 5000. The link expires when my session ends. May I open the tunnel?" - Only proceed if the user says yes. - After tunnel is open, tell the user: *"The tunnel URL is [URL]. This link is temporary and will stop working when this session ends."*

  1. Upload:

- POST the file to the server URL with X-API-Key header and file form-data field. - The JSON response contains url (direct download) and view_url (rich in-browser viewer). - Give the user view_url for text, code, images, and ZIPs — it renders content instantly in the browser. - Give url for binary files or when a raw download link is requested.


📋 API Reference

EndpointMethodAction
/POSTUpload a file (file form-data field)
/?action=listGETList all uploaded files
/?action=view&file=...GETRich viewer (ZIP: add &inner_file=path)
/?action=deletePOSTDelete files (JSON: {"files": ["name..."]})

Authentication: X-API-Key request header on all endpoints.


📎 Bundled Reference

See api_instructions.txt for a concise API cheat-sheet with curl examples.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.41%
按下载量换算6,604

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills