Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

web-search-plus网络搜索加

Agent Skill

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

总安装

1,896

周安装

79

GitHub Stars

589

下载量

632
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:web-search-plus(网络搜索加)
来源仓库:https://github.com/sundial-org/awesome-openclaw-skills
仓库路径:skills/web-search-plus
安装命令:
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill web-search-plus
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill web-search-plus

简介

web-search-plus 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能细节。

SKILL.md

Web Search Plus

Multi-provider web search with Intelligent Auto-Routing: Serper (Google), Tavily (Research), Exa (Neural).

NEW in v2.3.0: Interactive setup wizard! Run python3 scripts/setup.py for guided configuration.

NEW in v2.2.5: Automatic error fallback — if one provider fails (rate limit, timeout, etc.), automatically tries the next provider in priority order!


🚀 First Run (Setup Wizard)

New to web-search-plus? The interactive setup wizard guides you through configuration:

python3 scripts/setup.py

The wizard will:

  1. Explain each provider — What they're best for, free tier limits, signup links
  2. Ask which providers to enable — You can use 1, 2, or all 3
  3. Collect API keys — Keys are stored locally in config.json (gitignored)
  4. Configure defaults — Default provider, auto-routing, result count

What Each Provider Is Best For

ProviderBest ForFree Tier
SerperGoogle results, shopping, prices, local businesses, news2,500/month
TavilyResearch questions, explanations, academic, full-page content1,000/month
ExaSemantic search, "similar to X", startup discovery, papers1,000/month

Reconfigure Anytime

python3 scripts/setup.py --reset

🔑 API Keys Setup (Manual)

NEW in v2.2.0: The script auto-loads API keys from .env in the skill directory!

Quick Setup

Option A:.env file (recommended)

# /path/to/skills/web-search-plus/.env
export SERPER_API_KEY="your-key"   # https://serper.dev
export TAVILY_API_KEY="your-key"   # https://tavily.com
export EXA_API_KEY="your-key"      # https://exa.ai

Option B: config.json (NEW in v2.2.1)

# Copy the example config
cp config.example.json config.json

Then add your keys:

{
  "serper": { "api_key": "your-serper-key" },
  "tavily": { "api_key": "your-tavily-key" },
  "exa": { "api_key": "your-exa-key" }
}

⚠️ config.json is gitignored — your keys stay safe!

Just run — keys load automatically:

python3 scripts/search.py -q "your query"
# No need for 'source .env' anymore! ✨

Priority: config.json >.env > environment variable

Get Free API Keys

ProviderFree TierSign Up
Serper2,500 queries/mohttps://serper.dev
Tavily1,000 queries/mohttps://tavily.com
Exa1,000 queries/mohttps://exa.ai

⚠️ Don't Modify Core OpenClaw Config

Tavily, Serper, and Exa are NOT core OpenClaw providers.

DON'T add to ~/.openclaw/openclaw.json:

"tools": { "web": { "search": { "provider": "tavily" }}}  // WRONG!

DO use this skill's scripts — keys auto-load from .env

Core OpenClaw only supports brave as the built-in web search provider. This skill adds Serper, Tavily, and Exa as additional options via its own scripts.


🧠 Intelligent Auto-Routing

No need to choose a provider — just search! The skill uses multi-signal analysis to understand your query intent:

# These queries are intelligently routed with confidence scoring:
python3 scripts/search.py -q "how much does iPhone 16 cost"     # → Serper (68% MEDIUM)
python3 scripts/search.py -q "how does quantum entanglement work"  # → Tavily (86% HIGH)
python3 scripts/search.py -q "startups similar to Notion"       # → Exa (76% HIGH)
python3 scripts/search.py -q "MacBook Pro M3 specs review"      # → Serper (70% HIGH)
python3 scripts/search.py -q "explain pros and cons of React"   # → Tavily (85% HIGH)
python3 scripts/search.py -q "companies like stripe.com"        # → Exa (100% HIGH)

How It Works

The routing engine analyzes multiple signals:

🛒 Shopping Intent → Serper

Signal TypeExamplesWeight
Price patterns"how much", "price of", "cost of"HIGH
Purchase intent"buy", "purchase", "order", "where to buy"HIGH
Deal signals"deal", "discount", "cheap", "best price"MEDIUM
Product + Brand"iPhone 16", "Sony headphones" + specs/reviewHIGH
Local business"near me", "restaurants", "hotels"HIGH

📚 Research Intent → Tavily

Signal TypeExamplesWeight
Explanation"how does", "why does", "explain", "what is"HIGH
Analysis"compare", "pros and cons", "difference between"HIGH
Learning"tutorial", "guide", "understand", "learn"MEDIUM
Depth"in-depth", "comprehensive", "detailed"MEDIUM
Complex queriesLong, multi-clause questionsBONUS

🔍 Discovery Intent → Exa

Signal TypeExamplesWeight
Similarity"similar to", "alternatives to", "competitors"VERY HIGH
Company discovery"companies like", "startups doing", "who else"HIGH
URL detectionAny URL or domain (stripe.com)VERY HIGH
Academic"arxiv", "research papers", "github projects"HIGH
Funding"Series A", "YC", "funded startup"HIGH

Confidence Scoring

Every routing decision includes a confidence level:

ConfidenceLevelMeaning
70-100%HIGHStrong signal match, very reliable
40-69%MEDIUMGood match, should work well
0-39%LOWAmbiguous query, using fallback

Debug Routing Decisions

See the full analysis:

python3 scripts/search.py --explain-routing -q "how much does iPhone 16 Pro cost"

Output:

{
  "query": "how much does iPhone 16 Pro cost",
  "routing_decision": {
    "provider": "serper",
    "confidence": 0.68,
    "confidence_level": "medium",
    "reason": "moderate_confidence_match"
  },
  "scores": {"serper": 7.0, "tavily": 0.0, "exa": 0.0},
  "top_signals": [
    {"matched": "how much", "weight": 4.0},
    {"matched": "brand + product detected", "weight": 3.0}
  ],
  "query_analysis": {
    "word_count": 7,
    "is_complex": false,
    "has_url": null,
    "recency_focused": false
  }
}

🔍 When to Use This Skill vs Built-in Brave Search

Use Built-in Brave Search when:

  • ✅ General web searches (news, info, questions)
  • ✅ Privacy is important
  • ✅ Quick lookups without specific requirements

Use web-search-plus when:

Serper (Google results):

  • 🛍️ Product specs, prices, shopping - "Compare iPhone 16 vs Samsung S24"
  • 📍 Local businesses, places - "Best pizza in Berlin"
  • 🎯 "Google it" - Explicitly wants Google results
  • 📰 Shopping/images/news - --type shopping/images/news
  • 🏆 Knowledge Graph - Structured info (prices, ratings, etc.)

Tavily (AI-optimized research):

  • 📚 Research questions - "How does quantum computing work?"
  • 🔬 Deep dives - Complex multi-part questions
  • 📄 Full page content - Not just snippets (--raw-content)
  • 🎓 Academic research - Synthesized answers
  • 🔒 Domain filtering - --include-domains for trusted sources

Exa (Neural semantic search):

  • 🔗 Similar pages - "Sites like OpenAI.com" (--similar-url)
  • 🏢 Company discovery - "AI companies like Anthropic"
  • 📝 Research papers - --category "research paper"
  • 💻 GitHub projects - --category github
  • 📅 Date-specific - --start-date / --end-date

Provider Comparison

FeatureSerperTavilyExa
Speed⚡⚡⚡⚡⚡⚡⚡
Factual Accuracy⭐⭐⭐⭐⭐⭐⭐⭐
Semantic Understanding⭐⭐⭐⭐⭐
Research Quality⭐⭐⭐⭐⭐⭐⭐
Full Page Content
Shopping/Local
Similar Pages
Knowledge Graph

Usage Examples

Auto-Routed (Recommended)

python3 scripts/search.py -q "iPhone 16 Pro Max price"          # → Serper
python3 scripts/search.py -q "how does HTTPS encryption work"   # → Tavily
python3 scripts/search.py -q "startups similar to Notion"       # → Exa

Explicit Provider

python3 scripts/search.py -p serper -q "weather Berlin" --type weather
python3 scripts/search.py -p tavily -q "quantum computing" --depth advanced
python3 scripts/search.py -p exa --similar-url "https://stripe.com" --category company

Configuration

config.json

{
  "auto_routing": {
    "enabled": true,
    "fallback_provider": "serper",
    "confidence_threshold": 0.3,
    "disabled_providers": []
  },
  "serper": {"country": "us", "language": "en"},
  "tavily": {"depth": "advanced"},
  "exa": {"type": "neural"}
}

Output Format

{
  "provider": "serper",
  "query": "iPhone 16 price",
  "results": [{"title": "...", "url": "...", "snippet": "...", "score": 0.95}],
  "answer": "Synthesized answer...",
  "routing": {
    "auto_routed": true,
    "provider": "serper",
    "confidence": 0.78,
    "confidence_level": "high",
    "reason": "high_confidence_match",
    "top_signals": [{"matched": "price", "weight": 3.0}]
  }
}

FAQ

General

Q: How does auto-routing decide which provider to use?

Multi-signal analysis scores each provider based on: price patterns, explanation phrases, similarity keywords, URLs, product+brand combos, and query complexity. Highest score wins. Use --explain-routing to see the decision breakdown.

Q: What if it picks the wrong provider?

Override with -p serper/tavily/exa. Check --explain-routing to understand why it chose differently.

Q: What does "low confidence" mean?

Query is ambiguous (e.g., "Tesla" could be cars, stock, or company). Falls back to Serper. Results may vary.

Q: Can I disable a provider?

Yes! In config.json: "disabled_providers": ["exa"]

API Keys

Q: Which API keys do I need?

At minimum ONE key. You can use just Serper, just Tavily, or all three. Missing keys = that provider is skipped.

Q: Where do I get API keys?

- Serper: https://serper.dev (2,500 free queries, no credit card) - Tavily: https://tavily.com (1,000 free searches/month) - Exa: https://exa.ai (1,000 free searches/month)

Q: How do I set API keys?

Two options (both auto-load): Option A:.env file ``bash export SERPER_API_KEY="your-key" ` **Option B: config.json** (v2.2.1+) `json { "serper": { "api_key": "your-key" } } ``

Routing Details

Q: How do I know which provider handled my search?

Check routing.provider in JSON output, or [🔍 Searched with: Provider] in chat responses.

Q: Why does it sometimes choose Serper for research questions?

If the query has brand/product signals (e.g., "how does Tesla FSD work"), shopping intent may outweigh research intent. Override with -p tavily.

Q: What's the confidence threshold?

Default: 0.3 (30%). Below this = low confidence, uses fallback. Adjustable in config.json.

Troubleshooting

Q: "No API key found" error?

1. Check .env exists in skill folder with export VAR=value format 2. Keys auto-load from skill's .env since v2.2.0 3. Or set in system environment: export SERPER_API_KEY="..."

Q: Getting empty results?

1. Check API key is valid 2. Try a different provider with -p 3. Some queries have no results (very niche topics)

Q: Rate limited?

NEW in v2.2.5: Automatic fallback! If one provider hits rate limits, the script automatically tries the next provider in priority order (serper → tavily → exa). You'll see fallback info in stderr and the response will include routing.fallback_used: true. Provider limits: Serper 2,500 free total, Tavily 1,000/month free, Exa 1,000/month free.

For OpenClaw Users

Q: How do I use this in chat?

Just ask! OpenClaw auto-detects search intent. Or explicitly: "search with web-search-plus for..."

Q: Does it replace built-in Brave Search?

No, it's complementary. Use Brave for quick lookups, web-search-plus for research/shopping/discovery.

Q: Can I see which provider was used?

Yes! SOUL.md can include attribution: [🔍 Searched with: Serper/Tavily/Exa]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.61%
按下载量换算212

Claude

31.45%
按下载量换算199

Cursor

21.23%
按下载量换算134

Gemini CLI

10.41%
按下载量换算66

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills