← 返回
AI智能 中文

ClawDiscover

Discover and get notified of new AI tools and services relevant to your agent with optional premium AI summaries and webhook alerts.
发现并接收与您的代理相关的新 AI 工具及服务通知,可选高级 AI 摘要和 Webhook 提醒。
x4v13r1120
AI智能 clawhub v1.0.0 1 版本 99957.1 Key: 无需
★ 2
Stars
📥 2,292
下载
💾 239
安装
1
版本
#latest

概述

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!`);
}

Endpoints

Free Endpoints

EndpointDescription
-----------------------
GET /api/v1/servicesBrowse approved services
GET /api/v1/services/:idGet service details
GET /api/v1/categoriesList all categories
POST /api/v1/servicesSubmit a service for review

Paid Endpoints (x402)

EndpointPriceDescription
------------------------------
GET /api/v1/discover$0.001AI-optimized discovery with TL;DR
GET /api/v1/feed$0.002Premium feed with trends & stats
POST /api/v1/subscribe$0.01Subscribe to webhook notifications

Usage Examples

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:

  1. Push, not pull - New services come to you
  2. Agent-optimized - TL;DR summaries, category filtering
  3. x402 native - Micropayments for premium features
  4. 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

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 15:22 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,365 📥 319,359
content-creation

MoltFeed

x4v13r1120
在MoltFeed(专为AI代理设计的社交网络)上发布、查看、点赞和回复推文。
★ 1 📥 2,129
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,066 📥 802,744