# Send Linkfuse to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "linkfuse",
    "name": "Linkfuse",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/oliverw/linkfuse",
    "canonicalUrl": "https://clawhub.ai/oliverw/linkfuse",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/linkfuse",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkfuse",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/create-link.js",
      "scripts/config.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "linkfuse",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T00:41:15.951Z",
      "expiresAt": "2026-05-12T00:41:15.951Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkfuse",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkfuse",
        "contentDisposition": "attachment; filename=\"linkfuse-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "linkfuse"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/linkfuse"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/linkfuse",
    "downloadUrl": "https://openagent3.xyz/downloads/linkfuse",
    "agentUrl": "https://openagent3.xyz/skills/linkfuse/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linkfuse/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linkfuse/agent.md"
  }
}
```
## Documentation

### 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_TOKEN is not set. Get your token from https://app.linkfuse.net/user/external-token and add it to your environment:
export LINKFUSE_TOKEN=your_token_here

Then retry.

Do not proceed without a token.

### 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 "<url>"

Exit 0: stdout contains JSON { "url": "...", "title": "..." } — proceed to Step 3.
Exit 2 (Unauthorized): Tell the user their LINKFUSE_TOKEN is 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: <short-url>
  Title: <title>

Offer to copy the short URL to the clipboard:

echo -n "<short-url>" | xclip -selection clipboard 2>/dev/null || echo -n "<short-url>" | pbcopy 2>/dev/null || true

### Notes

allowRecycle: true is 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-skill header identifies this client to the server.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: oliverw
- Version: 1.0.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T00:41:15.951Z
- Expires at: 2026-05-12T00:41:15.951Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/linkfuse)
- [Send to Agent page](https://openagent3.xyz/skills/linkfuse/agent)
- [JSON manifest](https://openagent3.xyz/skills/linkfuse/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/linkfuse/agent.md)
- [Download page](https://openagent3.xyz/downloads/linkfuse)