← 返回 Skills 市场
x4v13r1120

ClawDiscover

作者 x4v13r · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
1963
总下载
2
收藏
7
当前安装
1
版本数
在 OpenClaw 中安装
/install clawdiscover
功能描述
Discover and get notified of new AI tools and services relevant to your agent with optional premium AI summaries and webhook alerts.
使用说明 (SKILL.md)

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

Endpoint Description
GET /api/v1/services Browse approved services
GET /api/v1/services/:id Get service details
GET /api/v1/categories List all categories
POST /api/v1/services Submit a service for review

Paid Endpoints (x402)

Endpoint Price Description
GET /api/v1/discover $0.001 AI-optimized discovery with TL;DR
GET /api/v1/feed $0.002 Premium feed with trends & stats
POST /api/v1/subscribe $0.01 Subscribe 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=\x3Clast_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

安全使用建议
This skill appears to do what it claims: poll clawdiscover.com for new services and optionally subscribe a webhook for push notifications. Before installing, decide whether you want an external site to know and call a webhook you control — exposing a webhook URL can allow external services to send requests to your agent, which may leak agent behavior or accept malformed payloads. If you enable subscriptions: (1) use a dedicated, authenticated webhook endpoint or a proxy that validates incoming requests; (2) avoid embedding any sensitive tokens or credentials in the webhook URL or in the agentId; (3) review the service's payment terms for the x402 endpoints and how payments are billed; (4) test in a sandboxed agent environment first (no privileged access) and monitor logs for unexpected payloads. If you don't want inbound pushes, use the periodic polling/heartbeat only.
功能分析
Type: OpenClaw Skill Name: clawdiscover Version: 1.0.0 The skill's primary function is agent-centric service discovery, which inherently involves making network requests to `https://clawdiscover.com`. The `SKILL.md` and `skill.json` instruct the agent to perform `curl` or `fetch` operations to this domain for browsing, discovering, or submitting services. While these are network calls, they are directly aligned with the stated purpose, are transparently defined, and do not involve any malicious execution patterns (e.g., `curl | bash`, downloading remote payloads), data exfiltration beyond what's explicitly provided by the agent (like its own `agentId` or `webhookUrl`), or prompt injection attempts to subvert the agent's behavior.
能力评估
Purpose & Capability
Name, skill.json description, and SKILL.md all describe an agent-centric discovery service. The required capabilities (HTTP requests to clawdiscover.com, optional webhook subscription) align with that purpose. There are no unexpected env vars, binaries, or install steps requested.
Instruction Scope
Runtime instructions are limited to calling clawdiscover.com endpoints (GET /api/v1/services, /discover, etc.), filtering results, and optionally POSTing a subscription with an agentId and webhookUrl. The doc also suggests storing last-check state in heartbeat-state.json and adding a cron/heartbeat entry. These actions are consistent with a discovery skill, but the subscription step will publish an agent-accessible webhook URL to an external service (potential privacy/attack surface consideration).
Install Mechanism
No install spec or code files — instruction-only. This minimizes disk persistence and arbitrary code execution risk.
Credentials
No environment variables, credentials, or config paths are requested. The single notable requirement implicit in the instructions is that an agent may need a reachable webhook endpoint and network access to make outbound HTTP requests and to receive inbound webhooks; those are operational considerations but not unexplained credential requests.
Persistence & Privilege
always is false and the skill does not request persistent elevated privileges or modifications to other skills. It suggests adding a cron/heartbeat entry to the agent config, which is a normal integration behavior for a discovery/notification skill.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawdiscover
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawdiscover 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
ClawDiscover 1.0.0 – Initial Release - Agent-focused service discovery platform with push-based updates. - Free and paid API endpoints for discovering, browsing, and subscribing to new agent tools. - Support for category filtering and AI-generated TL;DRs for services. - Webhook and heartbeat integration guidance for automated, periodic checks. - Built-in support for x402 micropayments and premium service feeds. - Simple service submission process for developers.
元数据
Slug clawdiscover
版本 1.0.0
许可证
累计安装 8
当前安装数 7
历史版本数 1
常见问题

ClawDiscover 是什么?

Discover and get notified of new AI tools and services relevant to your agent with optional premium AI summaries and webhook alerts. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1963 次。

如何安装 ClawDiscover?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawdiscover」即可一键安装,无需额外配置。

ClawDiscover 是免费的吗?

是的,ClawDiscover 完全免费(开源免费),可自由下载、安装和使用。

ClawDiscover 支持哪些平台?

ClawDiscover 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ClawDiscover?

由 x4v13r(@x4v13r1120)开发并维护,当前版本 v1.0.0。

💬 留言讨论