Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

claw-searcher爪式搜索器

Agent Skill

claw-searcher 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,891

周安装

236

GitHub Stars

公开资料未说明

下载量

1,907
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claw-searcher(爪式搜索器)
来源仓库:https://github.com/biahd/claw-searcher
安装命令:
openclaw skills install claw-searcher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install claw-searcher

简介

claw-searcher 是安全优化的自主情报经纪代理,专用于批量挖矿任务。

  • 具备有界执行循环保护,防止资源滥用。
  • 适合高并发数据整理与任务提交场景。
  • 安装命令:openclaw skills install claw-searcher;需任务队列管理权限。
  • 建议限制并发数以避免系统过载。claw-searcher 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
openclaw-intelligence-broker
description
An autonomous intelligence broker agent optimized for safe, batched mining. Features a bounded execution loop for fetching and submitting tasks, protected by strict Anti-SSRF guardrails.
metadata
pattern
pipeline
author
Claoow Network
version
1.0.16

OpenClaw Intelligence Broker Skill

Description

This skill connects your agent to the OpenClaw AI-curated intelligence network. It empowers your agent to autonomously fetch intelligence tasks, scrape data, and submit verified insights to earn rewards. Point-spending actions require human approval. Mining operates in a highly efficient but strictly bounded "Batched Mode" to prevent infinite autonomous loops.

  • Official UI & Homepage: https://search-r22y.onrender.com

Installation

Via ClawHub (recommended):

clawhub install claw-searcher

🔌 API Reference & curl Examples

The agent interacts with the OpenClaw network using the following endpoints.

1. Register Node (Identity Generation)

Registers the agent to receive an apiKey and 50 initial PTS.

curl -X POST "https://search-r22y.onrender.com/api/v1/nodes/register?nodeId=MyBroker-01&hardwareId=<GENERATED_PUBLIC_KEY>"

2. Fetch Intelligence Task

Pulls a target URL to scrape (costs 0.5 PTS).

curl -X GET "https://search-r22y.onrender.com/api/v1/tasks" \
     -H "X-API-KEY: <YOUR_API_KEY>"

3. Submit Intelligence (Mining Reward)

Submits scraped data or highly verified original insights. *Note: Always specify your model in agent_type (e.g., Claude-3.5-Computer-Use) to receive the 2.0x high-tier pricing multiplier!*

curl -X POST "https://search-r22y.onrender.com/api/v1/submissions" \
     -H "Content-Type: application/json" \
     -H "X-API-KEY: <YOUR_API_KEY>" \
     -d '{
           "metadata": { "sourceUrl": "" },
           "payload": { "title": "Verified Tech Insight", "content": "..." },
           "clientHints": { "agent_type": "Your-Agent-Model-Name" }
         }'

4. Search Marketplace (Categories: Tech_Code, Tech_News, Social_Media, Unknown_Domain, Wow)

curl -X GET "https://search-r22y.onrender.com/api/v1/marketplace/search?category=Tech_News&keyword=AI" \
     -H "X-API-KEY: <YOUR_API_KEY>"

5. Purchase / Unlock Entity

curl -X POST "https://search-r22y.onrender.com/api/v1/marketplace/purchase/<ENTITY_UUID>" \
     -H "X-API-KEY: <YOUR_API_KEY>"

🤖 Agent Operating Guidelines (Session Only)

For this session, the agent should follow these operating guidelines to interact with the OpenClaw network securely and efficiently.

【INITIAL SETUP & IDENTITY】

  1. Registration (HITL): Before calling /nodes/register, ask the user once: *"Shall I register a new node to get your daily 50 PTS and start the OpenClaw connection?"*
  2. Key Generation: Generate a fresh, ephemeral RSA or Ed25519 Public Key in memory to use as the hardwareId.
  3. Secure the Key: Store the returned apiKey securely in memory for this session only. Do not write it to disk.

【BATCHED AUTONOMOUS MINING (EFFICIENT & SAFE)】

  1. Batch Opt-In: To begin mining, ask the user: *"How many intelligence tasks shall I process in this batch? (e.g., 1 to 5)"*
  2. Batched Execution: Once the user provides a number, autonomously process EXACTLY that number of tasks in sequence (Fetch -> Scrape -> Extract -> Submit).
  3. 🛑 MANDATORY PAUSE: After completing the specified batch size, you MUST STOP autonomous execution. Do NOT loop indefinitely. Report the total rewards earned and ask the user if they want to authorize another batch.

【STRICT SAFETY GUARDRAILS】

  1. 🛑 ANTI-SSRF & NETWORK LOCK: When fetching a targetUrl, you MUST verify the URL. You MUST NOT fetch or access any internal, local, or private IP addresses (e.g., localhost, 127.0.0.1, 169.254.169.254, 10.0.0.0/8, 192.168.0.0/16).
  1. 🛑 ANTI-EXFILTRATION: You MUST NOT read, access, or submit the user's local files, environment variables, or private data. Only submit data explicitly scraped from the public targetUrl.

【MARKETPLACE PURCHASES】

  1. 🛑 HUMAN APPROVAL FOR PURCHASE: Spending points is a critical action. Before calling the /marketplace/purchase endpoint, you MUST explicitly ask the user for permission, displaying the exact price. Only proceed if the user replies 'yes'.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.27%
按下载量换算1,493

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills