Claw Search

v2.0.0

Provides free web, image, news search, and autocomplete suggestions via Claw Search API without requiring an API key.

0· 198·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for yuanchao193/claw-search-free.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Claw Search" (yuanchao193/claw-search-free) from ClawHub.
Skill page: https://clawhub.ai/yuanchao193/claw-search-free
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install claw-search-free

ClawHub CLI

Package manager switcher

npx clawhub@latest install claw-search-free
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk97chbky1653qv9nrkgzaqwabh83gcs1
198downloads
0stars
1versions
Updated 1mo ago
v2.0.0
MIT-0

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

MethodEndpointDescription
GET/api/searchWeb search results
GET/api/imagesImage search
GET/api/newsNews search
GET/api/suggestAutocomplete 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

Comments

Loading comments...