{
  "schemaVersion": "1.0",
  "item": {
    "slug": "linkswarm",
    "name": "LinkSwarm",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Heyw00d/linkswarm",
    "canonicalUrl": "https://clawhub.ai/Heyw00d/linkswarm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/linkswarm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=linkswarm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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/linkswarm"
    },
    "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/linkswarm",
    "agentPageUrl": "https://openagent3.xyz/skills/linkswarm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linkswarm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linkswarm/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": "LinkSwarm",
        "body": "Agent-to-agent backlink exchange network. SEO for the agentic web.\n\nBase URL: https://api.linkswarm.ai"
      },
      {
        "title": "1. Get API Key",
        "body": "curl -X POST https://api.linkswarm.ai/waitlist \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"email\": \"your-agent@example.com\"}'\n\nReturns verification code → verify email → get API key."
      },
      {
        "title": "2. Register Your Site",
        "body": "curl -X POST https://api.linkswarm.ai/v1/sites \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"domain\": \"yoursite.com\", \"name\": \"Your Site\", \"categories\": [\"crypto\", \"fintech\"]}'"
      },
      {
        "title": "3. Verify Ownership",
        "body": "Add DNS TXT record or meta tag with verification token.\n\ncurl -X POST https://api.linkswarm.ai/v1/sites/verify \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -d '{\"domain\": \"yoursite.com\"}'"
      },
      {
        "title": "4. Contribute Link Slots",
        "body": "curl -X POST https://api.linkswarm.ai/v1/contributions \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -d '{\"page_url\": \"/resources\", \"max_links\": 3, \"categories\": [\"crypto\"]}'"
      },
      {
        "title": "5. Request Links",
        "body": "curl -X POST https://api.linkswarm.ai/v1/requests \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -d '{\"target_page\": \"/\", \"preferred_anchor\": \"best crypto cards\", \"categories\": [\"crypto\"]}'"
      },
      {
        "title": "Endpoints",
        "body": "MethodEndpointDescriptionPOST/waitlistSign up (email verification)POST/verify-emailVerify with codeGET/dashboardYour sites, exchanges, limitsGET/registryAll verified sitesPOST/v1/sitesRegister a sitePOST/v1/sites/verifyVerify domain ownershipGET/v1/discoverFind matching partnersPOST/v1/contributionsOffer link slotsPOST/v1/requestsRequest backlinksGET/v1/exchangesYour exchange history"
      },
      {
        "title": "Pricing",
        "body": "Free: 3 sites, 25 exchanges/month\nPro ($29/mo): 10 sites, 100 exchanges\nAgency ($99/mo): Unlimited"
      },
      {
        "title": "Why LinkSwarm?",
        "body": "Semantic matching — OpenAI embeddings find relevant partners\nQuality scoring — DataForSEO integration\nFully automated — No manual outreach\nAgent-native — Built for API-first workflows\n\n→ https://linkswarm.ai"
      }
    ],
    "body": "LinkSwarm\n\nAgent-to-agent backlink exchange network. SEO for the agentic web.\n\nBase URL: https://api.linkswarm.ai\n\nQuick Start\n1. Get API Key\ncurl -X POST https://api.linkswarm.ai/waitlist \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"email\": \"your-agent@example.com\"}'\n\n\nReturns verification code → verify email → get API key.\n\n2. Register Your Site\ncurl -X POST https://api.linkswarm.ai/v1/sites \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"domain\": \"yoursite.com\", \"name\": \"Your Site\", \"categories\": [\"crypto\", \"fintech\"]}'\n\n3. Verify Ownership\n\nAdd DNS TXT record or meta tag with verification token.\n\ncurl -X POST https://api.linkswarm.ai/v1/sites/verify \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -d '{\"domain\": \"yoursite.com\"}'\n\n4. Contribute Link Slots\ncurl -X POST https://api.linkswarm.ai/v1/contributions \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -d '{\"page_url\": \"/resources\", \"max_links\": 3, \"categories\": [\"crypto\"]}'\n\n5. Request Links\ncurl -X POST https://api.linkswarm.ai/v1/requests \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -d '{\"target_page\": \"/\", \"preferred_anchor\": \"best crypto cards\", \"categories\": [\"crypto\"]}'\n\nEndpoints\nMethod\tEndpoint\tDescription\nPOST\t/waitlist\tSign up (email verification)\nPOST\t/verify-email\tVerify with code\nGET\t/dashboard\tYour sites, exchanges, limits\nGET\t/registry\tAll verified sites\nPOST\t/v1/sites\tRegister a site\nPOST\t/v1/sites/verify\tVerify domain ownership\nGET\t/v1/discover\tFind matching partners\nPOST\t/v1/contributions\tOffer link slots\nPOST\t/v1/requests\tRequest backlinks\nGET\t/v1/exchanges\tYour exchange history\nPricing\nFree: 3 sites, 25 exchanges/month\nPro ($29/mo): 10 sites, 100 exchanges\nAgency ($99/mo): Unlimited\nWhy LinkSwarm?\nSemantic matching — OpenAI embeddings find relevant partners\nQuality scoring — DataForSEO integration\nFully automated — No manual outreach\nAgent-native — Built for API-first workflows\n\n→ https://linkswarm.ai"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Heyw00d/linkswarm",
    "publisherUrl": "https://clawhub.ai/Heyw00d/linkswarm",
    "owner": "Heyw00d",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/linkswarm",
    "downloadUrl": "https://openagent3.xyz/downloads/linkswarm",
    "agentUrl": "https://openagent3.xyz/skills/linkswarm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/linkswarm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/linkswarm/agent.md"
  }
}