{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-antseed",
    "name": "OpenClaw AntSeed",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/kotevcode/openclaw-antseed",
    "canonicalUrl": "https://clawhub.ai/kotevcode/openclaw-antseed",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-antseed",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-antseed",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/setup.sh"
    ],
    "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",
      "slug": "openclaw-antseed",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T21:52:24.673Z",
      "expiresAt": "2026-05-07T21:52:24.673Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-antseed",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-antseed",
        "contentDisposition": "attachment; filename=\"openclaw-antseed-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-antseed"
      },
      "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/openclaw-antseed"
    },
    "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/openclaw-antseed",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-antseed/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-antseed/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-antseed/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": "Connect OpenClaw to AntSeed P2P Network",
        "body": "Set up AntSeed as a model provider for OpenClaw. This installs a local buyer proxy that connects to the AntSeed peer-to-peer network and routes LLM requests to available providers."
      },
      {
        "title": "Architecture",
        "body": "OpenClaw → http://127.0.0.1:5005 (AntSeed buyer proxy) → P2P network → Provider node → Upstream API (OpenRouter, Anthropic, etc.)\n\nThe buyer proxy runs locally, discovers providers via DHT, and exposes an API-compatible HTTP endpoint."
      },
      {
        "title": "Step 1: Install AntSeed CLI and buyer plugin",
        "body": "npm install -g @antseed/cli\nantseed plugin add @antseed/router-local-proxy\n\nVerify: antseed --version (requires Node.js 20+)."
      },
      {
        "title": "Step 2: Start the buyer proxy",
        "body": "Run in a terminal or set up as a persistent service:\n\nantseed connect --router local-proxy --port 5005\n\nThe proxy will:\n\nJoin the P2P network via DHT\nDiscover available providers\nListen on http://localhost:5005"
      },
      {
        "title": "Persistent service (systemd)",
        "body": "To run the proxy as a background service that survives reboots:\n\nsudo tee /etc/systemd/system/antseed-buyer.service > /dev/null <<'EOF'\n[Unit]\nDescription=AntSeed Buyer Proxy\nAfter=network-online.target\nWants=network-online.target\n\n[Service]\nType=simple\nUser=$USER\nExecStart=/usr/bin/env antseed connect --router local-proxy --port 5005\nRestart=on-failure\nRestartSec=10\nStandardOutput=journal\nStandardError=journal\nSyslogIdentifier=antseed-buyer\n\n[Install]\nWantedBy=multi-user.target\nEOF\n\nsudo systemctl daemon-reload\nsudo systemctl enable --now antseed-buyer\n\nVerify: sudo systemctl is-active antseed-buyer"
      },
      {
        "title": "Step 3: Configure OpenClaw model provider",
        "body": "Ask the user which model they want to use. Available models depend on what providers are active on the network."
      },
      {
        "title": "Set the provider",
        "body": "openclaw config set models.providers.antseed.baseUrl \"http://127.0.0.1:5005\"\nopenclaw config set models.providers.antseed.apiKey \"antseed-p2p\"\nopenclaw config set models.providers.antseed.api \"anthropic-messages\""
      },
      {
        "title": "Add a model",
        "body": "The model ID must match a model available on the network. Ask the user or suggest common options. Example for Kimi K2.5 via OpenRouter:\n\ncat ~/.openclaw/openclaw.json | python3 -c \"\nimport sys, json\ncfg = json.load(sys.stdin)\nproviders = cfg.setdefault('models', {}).setdefault('providers', {})\nproviders['antseed'] = {\n    'baseUrl': 'http://127.0.0.1:5005',\n    'apiKey': 'antseed-p2p',\n    'api': 'anthropic-messages',\n    'models': [{\n        'id': 'MODEL_ID_HERE',\n        'name': 'MODEL_DISPLAY_NAME',\n        'reasoning': False,\n        'input': ['text'],\n        'contextWindow': 131072,\n        'maxTokens': 8192\n    }]\n}\njson.dump(cfg, sys.stdout, indent=2)\n\" > /tmp/oc_antseed.json && mv /tmp/oc_antseed.json ~/.openclaw/openclaw.json\n\nReplace MODEL_ID_HERE with the actual model (e.g., moonshotai/kimi-k2.5, anthropic/claude-sonnet-4-20250514)."
      },
      {
        "title": "Set as default model",
        "body": "openclaw config set agents.defaults.model.primary \"antseed/MODEL_ID_HERE\"\n\nThe model reference format is antseed/<model-id> where antseed is the provider name."
      },
      {
        "title": "Step 4: Restart and verify",
        "body": "# Restart the gateway to pick up the new provider\nsudo systemctl restart openclaw  # or kill and restart the gateway process\n\n# Test the connection\ncurl -s http://127.0.0.1:5005/v1/models\n\nIf the proxy returns available models, the connection is working."
      },
      {
        "title": "Bootstrap nodes (optional)",
        "body": "If the proxy can't find providers via DHT, add a known provider as a bootstrap node:\n\nEdit ~/.antseed/config.json and add to the bootstrapNodes array:\n\n{\n  \"bootstrapNodes\": [\n    { \"host\": \"PROVIDER_IP\", \"port\": 6882 }\n  ]\n}\n\nThen restart the buyer proxy."
      },
      {
        "title": "API format notes",
        "body": "Use anthropic-messages API format. The AntSeed proxy translates between formats as needed.\nThe apiKey value doesn't matter — set it to any non-empty string (e.g., antseed-p2p). The proxy doesn't validate it.\nStreaming is supported. The proxy relays SSE streams from providers."
      },
      {
        "title": "Verification checklist",
        "body": "antseed --version prints a version\n antseed connect --router local-proxy --port 5005 starts without errors\n curl http://127.0.0.1:5005/v1/models returns available models\n OpenClaw config has models.providers.antseed configured\n agents.defaults.model.primary is set to antseed/<model-id>\n OpenClaw gateway responds to messages using the AntSeed model"
      },
      {
        "title": "Troubleshooting",
        "body": "\"No sellers available on the network\": No providers found via DHT. Add a bootstrap node (see above) or check that providers are running.\n\"DHT returned 0 results\": Check internet connectivity and firewall. DHT uses UDP on random high ports. Ensure inbound UDP is allowed.\nSlow first request: DHT discovery takes 5-10 seconds on the first request. Subsequent requests reuse cached peer connections.\nTimeouts on large requests: Some models take longer through P2P routing. Ensure the OpenClaw model config has adequate maxTokens.\n\"502 Upstream error\": The provider's upstream API (OpenRouter, Anthropic) returned an error. Check the provider logs.\nEmpty responses: Verify the model ID matches what the provider allows. Mismatched model names result in 403 errors."
      }
    ],
    "body": "Connect OpenClaw to AntSeed P2P Network\n\nSet up AntSeed as a model provider for OpenClaw. This installs a local buyer proxy that connects to the AntSeed peer-to-peer network and routes LLM requests to available providers.\n\nArchitecture\nOpenClaw → http://127.0.0.1:5005 (AntSeed buyer proxy) → P2P network → Provider node → Upstream API (OpenRouter, Anthropic, etc.)\n\n\nThe buyer proxy runs locally, discovers providers via DHT, and exposes an API-compatible HTTP endpoint.\n\nStep 1: Install AntSeed CLI and buyer plugin\nnpm install -g @antseed/cli\nantseed plugin add @antseed/router-local-proxy\n\n\nVerify: antseed --version (requires Node.js 20+).\n\nStep 2: Start the buyer proxy\n\nRun in a terminal or set up as a persistent service:\n\nantseed connect --router local-proxy --port 5005\n\n\nThe proxy will:\n\nJoin the P2P network via DHT\nDiscover available providers\nListen on http://localhost:5005\nPersistent service (systemd)\n\nTo run the proxy as a background service that survives reboots:\n\nsudo tee /etc/systemd/system/antseed-buyer.service > /dev/null <<'EOF'\n[Unit]\nDescription=AntSeed Buyer Proxy\nAfter=network-online.target\nWants=network-online.target\n\n[Service]\nType=simple\nUser=$USER\nExecStart=/usr/bin/env antseed connect --router local-proxy --port 5005\nRestart=on-failure\nRestartSec=10\nStandardOutput=journal\nStandardError=journal\nSyslogIdentifier=antseed-buyer\n\n[Install]\nWantedBy=multi-user.target\nEOF\n\nsudo systemctl daemon-reload\nsudo systemctl enable --now antseed-buyer\n\n\nVerify: sudo systemctl is-active antseed-buyer\n\nStep 3: Configure OpenClaw model provider\n\nAsk the user which model they want to use. Available models depend on what providers are active on the network.\n\nSet the provider\nopenclaw config set models.providers.antseed.baseUrl \"http://127.0.0.1:5005\"\nopenclaw config set models.providers.antseed.apiKey \"antseed-p2p\"\nopenclaw config set models.providers.antseed.api \"anthropic-messages\"\n\nAdd a model\n\nThe model ID must match a model available on the network. Ask the user or suggest common options. Example for Kimi K2.5 via OpenRouter:\n\ncat ~/.openclaw/openclaw.json | python3 -c \"\nimport sys, json\ncfg = json.load(sys.stdin)\nproviders = cfg.setdefault('models', {}).setdefault('providers', {})\nproviders['antseed'] = {\n    'baseUrl': 'http://127.0.0.1:5005',\n    'apiKey': 'antseed-p2p',\n    'api': 'anthropic-messages',\n    'models': [{\n        'id': 'MODEL_ID_HERE',\n        'name': 'MODEL_DISPLAY_NAME',\n        'reasoning': False,\n        'input': ['text'],\n        'contextWindow': 131072,\n        'maxTokens': 8192\n    }]\n}\njson.dump(cfg, sys.stdout, indent=2)\n\" > /tmp/oc_antseed.json && mv /tmp/oc_antseed.json ~/.openclaw/openclaw.json\n\n\nReplace MODEL_ID_HERE with the actual model (e.g., moonshotai/kimi-k2.5, anthropic/claude-sonnet-4-20250514).\n\nSet as default model\nopenclaw config set agents.defaults.model.primary \"antseed/MODEL_ID_HERE\"\n\n\nThe model reference format is antseed/<model-id> where antseed is the provider name.\n\nStep 4: Restart and verify\n# Restart the gateway to pick up the new provider\nsudo systemctl restart openclaw  # or kill and restart the gateway process\n\n# Test the connection\ncurl -s http://127.0.0.1:5005/v1/models\n\n\nIf the proxy returns available models, the connection is working.\n\nBootstrap nodes (optional)\n\nIf the proxy can't find providers via DHT, add a known provider as a bootstrap node:\n\nEdit ~/.antseed/config.json and add to the bootstrapNodes array:\n\n{\n  \"bootstrapNodes\": [\n    { \"host\": \"PROVIDER_IP\", \"port\": 6882 }\n  ]\n}\n\n\nThen restart the buyer proxy.\n\nAPI format notes\nUse anthropic-messages API format. The AntSeed proxy translates between formats as needed.\nThe apiKey value doesn't matter — set it to any non-empty string (e.g., antseed-p2p). The proxy doesn't validate it.\nStreaming is supported. The proxy relays SSE streams from providers.\nVerification checklist\n antseed --version prints a version\n antseed connect --router local-proxy --port 5005 starts without errors\n curl http://127.0.0.1:5005/v1/models returns available models\n OpenClaw config has models.providers.antseed configured\n agents.defaults.model.primary is set to antseed/<model-id>\n OpenClaw gateway responds to messages using the AntSeed model\nTroubleshooting\n\"No sellers available on the network\": No providers found via DHT. Add a bootstrap node (see above) or check that providers are running.\n\"DHT returned 0 results\": Check internet connectivity and firewall. DHT uses UDP on random high ports. Ensure inbound UDP is allowed.\nSlow first request: DHT discovery takes 5-10 seconds on the first request. Subsequent requests reuse cached peer connections.\nTimeouts on large requests: Some models take longer through P2P routing. Ensure the OpenClaw model config has adequate maxTokens.\n\"502 Upstream error\": The provider's upstream API (OpenRouter, Anthropic) returned an error. Check the provider logs.\nEmpty responses: Verify the model ID matches what the provider allows. Mismatched model names result in 403 errors."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kotevcode/openclaw-antseed",
    "publisherUrl": "https://clawhub.ai/kotevcode/openclaw-antseed",
    "owner": "kotevcode",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-antseed",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-antseed",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-antseed/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-antseed/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-antseed/agent.md"
  }
}