{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/linkfuse",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkfuse",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/create-link.js",
      "scripts/config.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/linkfuse",
    "agentPageUrl": "https://openagent3.xyz/skills/linkfuse/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linkfuse/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linkfuse/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Linkfuse Skill",
        "body": "Creates an affiliate short link via the Linkfuse REST API — same API used by the Chrome and Firefox extensions."
      },
      {
        "title": "Trigger Conditions",
        "body": "Use this skill when the user:\n\nSays /linkfuse [url]\nAsks to \"create a Linkfuse link\" for a URL\nWants to shorten an affiliate/Amazon URL via Linkfuse"
      },
      {
        "title": "Authentication",
        "body": "This skill reads the Bearer token exclusively from the LINKFUSE_TOKEN environment variable. If it is not set, tell the user:\n\nLINKFUSE_TOKEN is not set. Get your token from https://app.linkfuse.net/user/external-token and add it to your environment:\nexport LINKFUSE_TOKEN=your_token_here\n\nThen retry.\n\nDo not proceed without a token."
      },
      {
        "title": "Step 1 — Get the URL",
        "body": "If the user did not provide a URL, ask for one before proceeding."
      },
      {
        "title": "Step 2 — Create the link",
        "body": "node scripts/create-link.js --url \"<url>\"\n\nExit 0: stdout contains JSON { \"url\": \"...\", \"title\": \"...\" } — proceed to Step 3.\nExit 2 (Unauthorized): Tell the user their LINKFUSE_TOKEN is invalid or expired and they should update it.\nExit 1: Display the stderr error message to the user."
      },
      {
        "title": "Step 3 — Display result",
        "body": "Show the user:\n\n✓ Link created: <short-url>\n  Title: <title>\n\nOffer to copy the short URL to the clipboard:\n\necho -n \"<short-url>\" | xclip -selection clipboard 2>/dev/null || echo -n \"<short-url>\" | pbcopy 2>/dev/null || true"
      },
      {
        "title": "Notes",
        "body": "allowRecycle: true is sent with every request — if the same URL was shortened before, the existing link is returned rather than creating a duplicate.\nThe X-API-CLIENT: claude-skill header identifies this client to the server."
      }
    ],
    "body": "Linkfuse Skill\n\nCreates an affiliate short link via the Linkfuse REST API — same API used by the Chrome and Firefox extensions.\n\nTrigger Conditions\n\nUse this skill when the user:\n\nSays /linkfuse [url]\nAsks to \"create a Linkfuse link\" for a URL\nWants to shorten an affiliate/Amazon URL via Linkfuse\nAuthentication\n\nThis skill reads the Bearer token exclusively from the LINKFUSE_TOKEN environment variable. If it is not set, tell the user:\n\nLINKFUSE_TOKEN is not set. Get your token from https://app.linkfuse.net/user/external-token and add it to your environment:\n\nexport LINKFUSE_TOKEN=your_token_here\n\n\nThen retry.\n\nDo not proceed without a token.\n\nWorkflow\nStep 1 — Get the URL\n\nIf the user did not provide a URL, ask for one before proceeding.\n\nStep 2 — Create the link\nnode scripts/create-link.js --url \"<url>\"\n\nExit 0: stdout contains JSON { \"url\": \"...\", \"title\": \"...\" } — proceed to Step 3.\nExit 2 (Unauthorized): Tell the user their LINKFUSE_TOKEN is invalid or expired and they should update it.\nExit 1: Display the stderr error message to the user.\nStep 3 — Display result\n\nShow the user:\n\n✓ Link created: <short-url>\n  Title: <title>\n\n\nOffer to copy the short URL to the clipboard:\n\necho -n \"<short-url>\" | xclip -selection clipboard 2>/dev/null || echo -n \"<short-url>\" | pbcopy 2>/dev/null || true\n\nNotes\nallowRecycle: true is sent with every request — if the same URL was shortened before, the existing link is returned rather than creating a duplicate.\nThe X-API-CLIENT: claude-skill header identifies this client to the server."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/oliverw/linkfuse",
    "publisherUrl": "https://clawhub.ai/oliverw/linkfuse",
    "owner": "oliverw",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}