← 返回 Skills 市场
yuanchao193

Claw Search

作者 yuanchao193 · GitHub ↗ · v2.0.0 · MIT-0
cross-platform ✓ 安全检测通过
198
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install claw-search-free
功能描述
Provides free web, image, news search, and autocomplete suggestions via Claw Search API without requiring an API key.
使用说明 (SKILL.md)

Claw Search Skill

🦞 Free Search API for OpenClaw Agents

What This Does

Provides web search, image search, news search, and suggestions - all without requiring an API key.

When to Use

When your agent needs to search the web, find images, or get latest news. Replace paid APIs like Brave Search with this free alternative.

How to Use

// Web search
const results = await fetch('https://www.claw-search.com/api/search?q=your query');
const data = await results.json();

// Image search  
const images = await fetch('https://www.claw-search.com/api/images?q=cats');

API Endpoints

Method Endpoint Description
GET /api/search Web search results
GET /api/images Image search
GET /api/news News search
GET /api/suggest Autocomplete suggestions

Parameters

  • q (required): Search query
  • count: Number of results (default: 10)
  • offset: Pagination offset

Example

{
  "query": "OpenClaw AI",
  "web": {
    "results": [
      {
        "title": "OpenClaw - AI Assistant",
        "url": "https://openclaw.ai",
        "description": "Powerful AI assistant..."
      }
    ]
  }
}

Notes

  • No API key needed
  • 100 requests/minute
  • Powered by DuckDuckGo (fallback)
  • Works with all OpenClaw agents
安全使用建议
This skill appears to do what it claims: it makes HTTPS requests to https://www.claw-search.com and returns JSON search results. Before installing, consider: (1) Verify the legitimacy of the claw-search.com service (who operates it, privacy/data-retention and terms) since queries you send go to that third party. (2) Test endpoints manually to confirm behavior and rate limits. (3) Be cautious about sending sensitive data in queries because there is no API key or obvious access control. (4) Note the minor documentation mismatches (a claimed DuckDuckGo fallback and an optional CLAW_SEARCH_URL env var) — ask the publisher to clarify if you need those features. If you require stronger trust guarantees, prefer a search skill from a known publisher or a provider with published privacy/security policies.
功能分析
Type: OpenClaw Skill Name: claw-search-free Version: 2.0.0 The skill is a straightforward wrapper for the Claw Search API (claw-search.com), providing endpoints for web, image, and news searches. The implementation in index.js uses standard fetch calls to the specified domain and does not exhibit any signs of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
Name/description promise (free web/image/news search without API key) matches the code and SKILL.md which call https://www.claw-search.com/api/* endpoints. There are no unexpected binaries, installs, or credential requests that don't belong to a web-search skill.
Instruction Scope
SKILL.md instructs only simple fetch requests to the documented endpoints (search, images, news, suggest). Minor documentation mismatches: SKILL.md/README mention a DuckDuckGo fallback and an optional CLAW_SEARCH_URL env var, but index.js does not implement a DuckDuckGo fallback and the skill declares no required env vars. This is a documentation inconsistency rather than malicious behavior.
Install Mechanism
No install spec and no packaged installs — instruction-only usage with a small JS wrapper file. Nothing is downloaded or written to disk by an installer in the manifest.
Credentials
The skill requests no environment variables, credentials, or config paths. README mentions an optional CLAW_SEARCH_URL environment variable (not declared in requires.env) — a harmless convenience but not required. There are no secrets requested or accessed.
Persistence & Privilege
always is false and the skill does not request persistent system-level privileges or attempt to modify other skills. Autonomous invocation (default) is allowed but appropriate for a search integration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install claw-search-free
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /claw-search-free 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.0.0
Claw Search Skill v2.0.0 introduces a free, no-API-key search API for OpenClaw agents. - Provides web, image, news, and suggestion search endpoints - No API key required; supports up to 100 requests per minute - Easy integration with clear usage examples and endpoint documentation - Can replace paid APIs like Brave Search for web, news, and image searches - Powered by DuckDuckGo as a fallback for consistent results
元数据
Slug claw-search-free
版本 2.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Claw Search 是什么?

Provides free web, image, news search, and autocomplete suggestions via Claw Search API without requiring an API key. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 198 次。

如何安装 Claw Search?

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

Claw Search 是免费的吗?

是的,Claw Search 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Claw Search 支持哪些平台?

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

谁开发了 Claw Search?

由 yuanchao193(@yuanchao193)开发并维护,当前版本 v2.0.0。

💬 留言讨论