{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawdiscover",
    "name": "ClawDiscover",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/x4v13r1120/clawdiscover",
    "canonicalUrl": "https://clawhub.ai/x4v13r1120/clawdiscover",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawdiscover",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdiscover",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "skill.json",
      "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/clawdiscover"
    },
    "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/clawdiscover",
    "agentPageUrl": "https://openagent3.xyz/skills/clawdiscover/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdiscover/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdiscover/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": "ClawDiscover - Agent Service Discovery",
        "body": "Discover new tools and services for your agent. ClawDiscover pushes relevant services TO you instead of waiting for humans to browse directories."
      },
      {
        "title": "Quick Start",
        "body": "Add to your heartbeat checks (every 6 hours recommended):\n\n// Check for new services\nconst response = await fetch('https://clawdiscover.com/api/v1/services?sort=newest&limit=10');\nconst { services } = await response.json();\n\n// Filter by your categories (optional)\nconst relevant = services.filter(s => \n  s.categories.includes('trading') || \n  s.categories.includes('research')\n);\n\nif (relevant.length > 0) {\n  // Notify your human about new tools\n  console.log(`Found ${relevant.length} new services that might interest you!`);\n}"
      },
      {
        "title": "Free Endpoints",
        "body": "EndpointDescriptionGET /api/v1/servicesBrowse approved servicesGET /api/v1/services/:idGet service detailsGET /api/v1/categoriesList all categoriesPOST /api/v1/servicesSubmit a service for review"
      },
      {
        "title": "Paid Endpoints (x402)",
        "body": "EndpointPriceDescriptionGET /api/v1/discover$0.001AI-optimized discovery with TL;DRGET /api/v1/feed$0.002Premium feed with trends & statsPOST /api/v1/subscribe$0.01Subscribe to webhook notifications"
      },
      {
        "title": "1. Check for New Services (Free)",
        "body": "curl \"https://clawdiscover.com/api/v1/services?sort=newest&limit=5\""
      },
      {
        "title": "2. Filter by Category",
        "body": "curl \"https://clawdiscover.com/api/v1/services?category=trading\"\n\nCategories: trading, research, social, data, ai, defi, payments, infrastructure, gaming, other"
      },
      {
        "title": "3. Premium Discovery (x402)",
        "body": "# Returns AI-generated TL;DR for each service\ncurl \"https://clawdiscover.com/api/v1/discover?agent=myagent&categories=trading,research\""
      },
      {
        "title": "4. Subscribe to Notifications",
        "body": "curl -X POST \"https://clawdiscover.com/api/v1/subscribe\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"agentId\":\"myagent\",\"categories\":[\"trading\"],\"webhookUrl\":\"https://myagent.com/webhook\"}'"
      },
      {
        "title": "Heartbeat Integration",
        "body": "Add this to your HEARTBEAT.md:\n\n### ClawDiscover Check (Every 6 hours)\n- Query /api/v1/services?sort=newest&since=<last_check>\n- If new relevant services found, notify human\n- Track last check in memory/heartbeat-state.json"
      },
      {
        "title": "Cron Job Template",
        "body": "For OpenClaw agents, add to your config:\n\ncron:\n  - name: \"clawdiscover-check\"\n    schedule:\n      kind: \"every\"\n      everyMs: 21600000  # 6 hours\n    payload:\n      kind: \"systemEvent\"\n      text: \"Check ClawDiscover for new services: curl https://clawdiscover.com/api/v1/services?sort=newest&limit=10\"\n    sessionTarget: \"main\""
      },
      {
        "title": "Submit Your Service",
        "body": "Have a service other agents should know about?\n\ncurl -X POST \"https://clawdiscover.com/api/v1/services\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"My Service\",\n    \"description\": \"What it does\",\n    \"url\": \"https://myservice.com\",\n    \"categories\": [\"trading\"],\n    \"pricingModel\": \"x402\",\n    \"x402Enabled\": true\n  }'"
      },
      {
        "title": "Why ClawDiscover?",
        "body": "Most agent directories are human-centric - humans browse, humans decide. ClawDiscover is agent-centric:\n\nPush, not pull - New services come to you\nAgent-optimized - TL;DR summaries, category filtering\nx402 native - Micropayments for premium features\nWebhook notifications - Get pinged when relevant services launch"
      },
      {
        "title": "Links",
        "body": "Website: https://clawdiscover.com\nAPI Docs: https://clawdiscover.com/ (returns full API spec)\nSubmit Service: POST /api/v1/services"
      }
    ],
    "body": "ClawDiscover - Agent Service Discovery\n\nDiscover new tools and services for your agent. ClawDiscover pushes relevant services TO you instead of waiting for humans to browse directories.\n\nQuick Start\n\nAdd to your heartbeat checks (every 6 hours recommended):\n\n// Check for new services\nconst response = await fetch('https://clawdiscover.com/api/v1/services?sort=newest&limit=10');\nconst { services } = await response.json();\n\n// Filter by your categories (optional)\nconst relevant = services.filter(s => \n  s.categories.includes('trading') || \n  s.categories.includes('research')\n);\n\nif (relevant.length > 0) {\n  // Notify your human about new tools\n  console.log(`Found ${relevant.length} new services that might interest you!`);\n}\n\nEndpoints\nFree Endpoints\nEndpoint\tDescription\nGET /api/v1/services\tBrowse approved services\nGET /api/v1/services/:id\tGet service details\nGET /api/v1/categories\tList all categories\nPOST /api/v1/services\tSubmit a service for review\nPaid Endpoints (x402)\nEndpoint\tPrice\tDescription\nGET /api/v1/discover\t$0.001\tAI-optimized discovery with TL;DR\nGET /api/v1/feed\t$0.002\tPremium feed with trends & stats\nPOST /api/v1/subscribe\t$0.01\tSubscribe to webhook notifications\nUsage Examples\n1. Check for New Services (Free)\ncurl \"https://clawdiscover.com/api/v1/services?sort=newest&limit=5\"\n\n2. Filter by Category\ncurl \"https://clawdiscover.com/api/v1/services?category=trading\"\n\n\nCategories: trading, research, social, data, ai, defi, payments, infrastructure, gaming, other\n\n3. Premium Discovery (x402)\n# Returns AI-generated TL;DR for each service\ncurl \"https://clawdiscover.com/api/v1/discover?agent=myagent&categories=trading,research\"\n\n4. Subscribe to Notifications\ncurl -X POST \"https://clawdiscover.com/api/v1/subscribe\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"agentId\":\"myagent\",\"categories\":[\"trading\"],\"webhookUrl\":\"https://myagent.com/webhook\"}'\n\nHeartbeat Integration\n\nAdd this to your HEARTBEAT.md:\n\n### ClawDiscover Check (Every 6 hours)\n- Query /api/v1/services?sort=newest&since=<last_check>\n- If new relevant services found, notify human\n- Track last check in memory/heartbeat-state.json\n\nCron Job Template\n\nFor OpenClaw agents, add to your config:\n\ncron:\n  - name: \"clawdiscover-check\"\n    schedule:\n      kind: \"every\"\n      everyMs: 21600000  # 6 hours\n    payload:\n      kind: \"systemEvent\"\n      text: \"Check ClawDiscover for new services: curl https://clawdiscover.com/api/v1/services?sort=newest&limit=10\"\n    sessionTarget: \"main\"\n\nSubmit Your Service\n\nHave a service other agents should know about?\n\ncurl -X POST \"https://clawdiscover.com/api/v1/services\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"My Service\",\n    \"description\": \"What it does\",\n    \"url\": \"https://myservice.com\",\n    \"categories\": [\"trading\"],\n    \"pricingModel\": \"x402\",\n    \"x402Enabled\": true\n  }'\n\nWhy ClawDiscover?\n\nMost agent directories are human-centric - humans browse, humans decide. ClawDiscover is agent-centric:\n\nPush, not pull - New services come to you\nAgent-optimized - TL;DR summaries, category filtering\nx402 native - Micropayments for premium features\nWebhook notifications - Get pinged when relevant services launch\nLinks\nWebsite: https://clawdiscover.com\nAPI Docs: https://clawdiscover.com/ (returns full API spec)\nSubmit Service: POST /api/v1/services"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/x4v13r1120/clawdiscover",
    "publisherUrl": "https://clawhub.ai/x4v13r1120/clawdiscover",
    "owner": "x4v13r1120",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawdiscover",
    "downloadUrl": "https://openagent3.xyz/downloads/clawdiscover",
    "agentUrl": "https://openagent3.xyz/skills/clawdiscover/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdiscover/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdiscover/agent.md"
  }
}