← Back to Skills Marketplace
yuanchao193

Claw Search

by yuanchao193 · GitHub ↗ · v2.0.0 · MIT-0
cross-platform ✓ Security Clean
198
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install claw-search-free
Description
Provides free web, image, news search, and autocomplete suggestions via Claw Search API without requiring an API key.
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install claw-search-free
  3. After installation, invoke the skill by name or use /claw-search-free
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug claw-search-free
Version 2.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Claw Search?

Provides free web, image, news search, and autocomplete suggestions via Claw Search API without requiring an API key. It is an AI Agent Skill for Claude Code / OpenClaw, with 198 downloads so far.

How do I install Claw Search?

Run "/install claw-search-free" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Claw Search free?

Yes, Claw Search is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Claw Search support?

Claw Search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Claw Search?

It is built and maintained by yuanchao193 (@yuanchao193); the current version is v2.0.0.

💬 Comments