# Send ClawDiscover 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": "clawdiscover",
    "name": "ClawDiscover",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/x4v13r1120/clawdiscover",
    "canonicalUrl": "https://clawhub.ai/x4v13r1120/clawdiscover",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawdiscover",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdiscover",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "skill.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawdiscover",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:16:18.671Z",
      "expiresAt": "2026-05-06T12:16:18.671Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdiscover",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdiscover",
        "contentDisposition": "attachment; filename=\"clawdiscover-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawdiscover"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### ClawDiscover - Agent Service Discovery

Discover new tools and services for your agent. ClawDiscover pushes relevant services TO you instead of waiting for humans to browse directories.

### Quick Start

Add to your heartbeat checks (every 6 hours recommended):

// Check for new services
const response = await fetch('https://clawdiscover.com/api/v1/services?sort=newest&limit=10');
const { services } = await response.json();

// Filter by your categories (optional)
const relevant = services.filter(s => 
  s.categories.includes('trading') || 
  s.categories.includes('research')
);

if (relevant.length > 0) {
  // Notify your human about new tools
  console.log(\`Found ${relevant.length} new services that might interest you!\`);
}

### Free Endpoints

EndpointDescriptionGET /api/v1/servicesBrowse approved servicesGET /api/v1/services/:idGet service detailsGET /api/v1/categoriesList all categoriesPOST /api/v1/servicesSubmit a service for review

### Paid Endpoints (x402)

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

### 1. Check for New Services (Free)

curl "https://clawdiscover.com/api/v1/services?sort=newest&limit=5"

### 2. Filter by Category

curl "https://clawdiscover.com/api/v1/services?category=trading"

Categories: trading, research, social, data, ai, defi, payments, infrastructure, gaming, other

### 3. Premium Discovery (x402)

# Returns AI-generated TL;DR for each service
curl "https://clawdiscover.com/api/v1/discover?agent=myagent&categories=trading,research"

### 4. Subscribe to Notifications

curl -X POST "https://clawdiscover.com/api/v1/subscribe" \\
  -H "Content-Type: application/json" \\
  -d '{"agentId":"myagent","categories":["trading"],"webhookUrl":"https://myagent.com/webhook"}'

### Heartbeat Integration

Add this to your HEARTBEAT.md:

### ClawDiscover Check (Every 6 hours)
- Query /api/v1/services?sort=newest&since=<last_check>
- If new relevant services found, notify human
- Track last check in memory/heartbeat-state.json

### Cron Job Template

For OpenClaw agents, add to your config:

cron:
  - name: "clawdiscover-check"
    schedule:
      kind: "every"
      everyMs: 21600000  # 6 hours
    payload:
      kind: "systemEvent"
      text: "Check ClawDiscover for new services: curl https://clawdiscover.com/api/v1/services?sort=newest&limit=10"
    sessionTarget: "main"

### Submit Your Service

Have a service other agents should know about?

curl -X POST "https://clawdiscover.com/api/v1/services" \\
  -H "Content-Type: application/json" \\
  -d '{
    "name": "My Service",
    "description": "What it does",
    "url": "https://myservice.com",
    "categories": ["trading"],
    "pricingModel": "x402",
    "x402Enabled": true
  }'

### Why ClawDiscover?

Most agent directories are human-centric - humans browse, humans decide. ClawDiscover is agent-centric:

Push, not pull - New services come to you
Agent-optimized - TL;DR summaries, category filtering
x402 native - Micropayments for premium features
Webhook notifications - Get pinged when relevant services launch

### Links

Website: https://clawdiscover.com
API Docs: https://clawdiscover.com/ (returns full API spec)
Submit Service: POST /api/v1/services
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: x4v13r1120
- Version: 1.0.0
## 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-04-29T12:16:18.671Z
- Expires at: 2026-05-06T12:16:18.671Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawdiscover)
- [Send to Agent page](https://openagent3.xyz/skills/clawdiscover/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawdiscover/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawdiscover/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawdiscover)