Linkfuse
/install linkfuse
Linkfuse Skill
Creates an affiliate short link via the Linkfuse REST API — same API used by the Chrome and Firefox extensions.
Trigger Conditions
Use this skill when the user:
- Says
/linkfuse [url] - Asks to "create a Linkfuse link" for a URL
- Wants to shorten an affiliate/Amazon URL via Linkfuse
Authentication
This skill reads the Bearer token exclusively from the LINKFUSE_TOKEN environment variable. If it is not set, tell the user:
LINKFUSE_TOKENis not set. Get your token fromhttps://app.linkfuse.net/user/external-tokenand add it to your environment:export LINKFUSE_TOKEN=your_token_hereThen retry.
Do not proceed without a token.
Workflow
Step 1 — Get the URL
If the user did not provide a URL, ask for one before proceeding.
Step 2 — Create the link
node scripts/create-link.js --url "\x3Curl>"
- Exit 0: stdout contains JSON
{ "url": "...", "title": "..." }— proceed to Step 3. - Exit 2 (Unauthorized): Tell the user their
LINKFUSE_TOKENis invalid or expired and they should update it. - Exit 1: Display the stderr error message to the user.
Step 3 — Display result
Show the user:
✓ Link created: \x3Cshort-url>
Title: \x3Ctitle>
Offer to copy the short URL to the clipboard:
echo -n "\x3Cshort-url>" | xclip -selection clipboard 2>/dev/null || echo -n "\x3Cshort-url>" | pbcopy 2>/dev/null || true
Notes
allowRecycle: trueis sent with every request — if the same URL was shortened before, the existing link is returned rather than creating a duplicate.- The
X-API-CLIENT: claude-skillheader identifies this client to the server.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linkfuse - 安装完成后,直接呼叫该 Skill 的名称或使用
/linkfuse触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Linkfuse 是什么?
Create a Linkfuse affiliate short link from any URL. Trigger this skill when the user wants to create a Linkfuse link, shorten an affiliate URL, or says "/li... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 767 次。
如何安装 Linkfuse?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfuse」即可一键安装,无需额外配置。
Linkfuse 是免费的吗?
是的,Linkfuse 完全免费(开源免费),可自由下载、安装和使用。
Linkfuse 支持哪些平台?
Linkfuse 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Linkfuse?
由 Oliver Weichhold(@oliverw)开发并维护,当前版本 v1.0.4。