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

web-search-pro网络搜索专业版

Agent Skill

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

总安装

2,863

周安装

123

GitHub Stars

2

下载量

1,004
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/zjianru/web-search-pro --skill web-search-pro

简介

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

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

SKILL.md

Web Search Pro 2.1

This skill is for agents that need more than one-shot web search.

Use it when the caller needs:

  • live web search or current-events lookup
  • news search with explainable routing
  • official docs, API docs, or code lookup
  • company, product, or competitor research
  • site crawl, site map, or docs discovery
  • a structured evidence pack that can be handed back to an upstream model

This skill is not a narrative report writer. Its job is to search, retrieve, structure, and expose evidence clearly enough that the upstream model can keep reasoning on top of it.

Use This Skill When

  • the task starts with web search but may continue into extraction or research
  • the agent needs to know why a provider was selected
  • the agent may need federated search instead of a single provider
  • no-key baseline behavior matters for the first run
  • runtime diagnostics or capability discovery are part of the workflow

Do Not Use This Skill When

  • the caller only wants the lightest possible single-shot web search wrapper
  • the task expects a hosted scraping service
  • the task expects the skill itself to write the final polished narrative report
  • the caller needs an unlimited no-key search guarantee

Quick Start

The shortest successful path is:

  • start with the no-key baseline
  • add one premium provider only when stronger recall or freshness is needed
  • then try docs, news, and research flows

Option A: No-key baseline

No API key is required for the first successful run.

Baseline roles:

  • ddg: best-effort web search
  • fetch: no-key extract / crawl / map fallback
node {baseDir}/scripts/doctor.mjs --json
node {baseDir}/scripts/bootstrap.mjs --json
node {baseDir}/scripts/search.mjs "OpenAI Responses API docs" --json

What these commands are for:

  • doctor.mjs: is the runtime usable right now?
  • bootstrap.mjs: what can the agent rely on right now?
  • search.mjs: prove the baseline retrieval path succeeds before adding provider credentials

Option B: Add one premium provider

If only one premium provider is added, start with TAVILY_API_KEY.

Reason:

  • one credential improves general web search
  • one credential improves news search
  • one credential improves extract quality
export TAVILY_API_KEY=tvly-xxxxx
node {baseDir}/scripts/doctor.mjs --json
node {baseDir}/scripts/search.mjs "latest OpenAI news" --type news --json

First successful searches

node {baseDir}/scripts/search.mjs "OpenClaw web search" --json
node {baseDir}/scripts/search.mjs "OpenAI Responses API docs" --preset docs --plan --json
node {baseDir}/scripts/extract.mjs "https://platform.openai.com/docs" --json

Then try docs, news, and research

node {baseDir}/scripts/search.mjs "OpenAI Responses API docs" --preset docs --json
node {baseDir}/scripts/search.mjs "latest OpenAI news" --type news --json
node {baseDir}/scripts/research.mjs "OpenClaw search skill landscape" --plan --json

Runtime Contract

The agent should treat these fields as the primary runtime contract.

Routing fields

  • selectedProvider The planner's primary route. It does not mean "the only provider used".
  • routingSummary Compact route explanation with selectionMode, confidence, topSignals, alternatives, blocked providers, and federation summary.
  • routing.diagnostics Full route diagnostics exposed by --explain-routing or --plan.

Federation fields

  • federated.providersUsed Providers that actually returned results when fanout is active.
  • federated.value.additionalProvidersUsed Number of non-primary providers that really contributed.
  • federated.value.resultsRecoveredByFanout Final results that would disappear in primary-only mode.
  • federated.value.resultsCorroboratedByFanout Final results supported by both the primary and at least one fanout provider.
  • federated.value.duplicateSavings Exact or near-duplicate results removed by merge.

Cache and execution fields

  • cached Whether the result came from cache.
  • cache Cache age / TTL telemetry for agent decisions.
  • renderLane Runtime availability and policy summary for the browser-backed render lane.
  • failed Failed providers or failed retrieval units for the current command.
  • meta Command-level execution metadata and task input shaping.

Research fields

  • topicType Primary topic class for the research pack.
  • topicSignals Mixed-topic hints such as docs + latest.
  • researchAxes Why the research pack decomposed into a given set of subquestions.
  • claimClusters Evidence grouped by normalized claim.
  • candidateFindings Candidate conclusions with support profile and gap sensitivity.
  • uncertainties Remaining uncertainty and follow-up-sensitive gaps.

Why Federated Search Matters

Federation is not just "more providers". It makes multi-provider gain visible so an agent can tell whether fanout improved the final result set.

Important gain metrics:

  • federated.value.additionalProvidersUsed
  • federated.value.resultsRecoveredByFanout
  • federated.value.resultsCorroboratedByFanout
  • federated.value.duplicateSavings
  • routingSummary.federation.value

Interpretation:

  • recovered results answer "what did fanout rescue?"
  • corroborated results answer "what got stronger support?"
  • duplicate savings answer "what noise did merge remove?"

Commands By Task

Search

node {baseDir}/scripts/search.mjs "query" --json
node {baseDir}/scripts/search.mjs "query" --plan --json
node {baseDir}/scripts/search.mjs "latest OpenAI news" --type news --json
node {baseDir}/scripts/search.mjs "OpenAI Responses API docs" --preset docs --plan --json
node {baseDir}/scripts/search.mjs "query" --engine serpapi --search-engine baidu --json

User-facing inputs:

  • searchType Current shipped values are web | news.
  • intentPreset Current shipped values are general | code | company | docs | research.

Important boundary:

  • searchType and intentPreset shape routing input
  • engine remains the explicit provider override

Extract and render

node {baseDir}/scripts/extract.mjs "https://example.com/article" --json
node {baseDir}/scripts/extract.mjs "https://example.com/article" --render --render-policy fallback --json
node {baseDir}/scripts/extract.mjs "https://example.com/article" --plan
node {baseDir}/scripts/render.mjs "https://example.com/article" --json

Crawl and map

node {baseDir}/scripts/crawl.mjs "https://example.com/docs" --depth 2 --max-pages 10 --json
node {baseDir}/scripts/map.mjs "https://example.com/docs" --depth 2 --max-pages 50 --json

Research

node {baseDir}/scripts/research.mjs "OpenClaw search skill landscape" --json
node {baseDir}/scripts/research.mjs "OpenClaw search skill landscape" --plan --json

Runtime inspection

node {baseDir}/scripts/capabilities.mjs --json
node {baseDir}/scripts/doctor.mjs --json
node {baseDir}/scripts/bootstrap.mjs --json
node {baseDir}/scripts/review.mjs --json
node {baseDir}/scripts/cache.mjs stats --json
node {baseDir}/scripts/health.mjs --json

Benchmarking

node {baseDir}/scripts/eval.mjs list --json
node {baseDir}/scripts/eval.mjs run --suite core --json
node {baseDir}/scripts/eval.mjs run --suite research --json
node {baseDir}/scripts/eval.mjs run --suite head-to-head --json
node {baseDir}/scripts/eval.mjs run --suite head-to-head-live --json

Research Pack Boundary

research.mjs is a model-facing evidence layer, not a final narrative answer layer.

The skill is responsible for:

  • question decomposition
  • retrieval planning
  • evidence normalization
  • source prioritization
  • claim clustering
  • compact candidate findings
  • uncertainty exposure

The upstream model remains responsible for:

  • final reasoning across the evidence pack
  • narrative synthesis
  • user-facing writing style
  • final judgment when evidence is incomplete or conflicting

Detailed contract:

Runtime Config

Default config path:

  • {baseDir}/config.json

Override path:

  • WEB_SEARCH_PRO_CONFIG=/path/to/config.json

Config precedence:

CLI flags > process.env > config.json > built-in defaults

When the skill is run directly outside OpenClaw, provider keys must already exist in the shell environment. If OpenClaw launches the skill, its injected runtime environment is sufficient.

Key config areas:

  • routing
  • cache
  • health
  • fetch
  • crawl
  • render

Important routing config fields:

  • routing.allowNoKeyBaseline
  • routing.enableFederation
  • routing.federationTriggers
  • routing.maxFanoutProviders
  • routing.maxPerProvider
  • routing.mergePolicy
  • routing.fallbackPolicy

Important render config fields:

  • render.enabled
  • render.policy
  • render.budgetMs
  • render.waitUntil
  • render.blockTypes
  • render.sameOriginOnly

Provider Upgrade Paths

No API key is required for the baseline. Optional provider credentials or endpoints unlock stronger coverage:

Optional provider credentials or endpoints unlock enhanced features.

TAVILY_API_KEY=tvly-xxxxx
EXA_API_KEY=exa-xxxxx
QUERIT_API_KEY=xxxxx
SERPER_API_KEY=xxxxx
BRAVE_API_KEY=xxxxx
SERPAPI_API_KEY=xxxxx
YOU_API_KEY=xxxxx
SEARXNG_INSTANCE_URL=https://searx.example.com

# Perplexity / Sonar: choose one transport path
PERPLEXITY_API_KEY=xxxxx
OPENROUTER_API_KEY=xxxxx
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
KILOCODE_API_KEY=xxxxx

# Or use a custom OpenAI-compatible gateway
PERPLEXITY_GATEWAY_API_KEY=xxxxx
PERPLEXITY_BASE_URL=https://gateway.example.com/v1
PERPLEXITY_MODEL=perplexity/sonar-pro

Provider roles:

  • Tavily: strongest premium default for general search, news, and extract
  • Exa: semantic retrieval and extract fallback
  • Querit: multilingual AI search with native geo and language filters
  • Serper: Google-like search with strong news and locale coverage
  • Brave: structured general web search
  • SerpAPI: multi-engine routing including Baidu and Yandex
  • You.com: LLM-ready web search with freshness and mixed web/news coverage
  • SearXNG: self-hosted privacy-first metasearch fallback
  • Perplexity / Sonar: answer-first grounded search via native or gateway transport
  • DDG: best-effort no-key baseline search
  • Fetch: no-key extract / crawl / map baseline
  • Render: optional local browser lane

Validation And Review

The most useful validation surfaces for agents and maintainers are:

  • capabilities.mjs What this environment can truly do right now.
  • doctor.mjs Is the runtime ready, degraded, or blocked?
  • bootstrap.mjs What can an upstream agent safely assume?
  • review.mjs What are the current safety and compliance boundaries?
  • health.mjs Which providers are degraded or cooling down?
  • eval.mjs Has behavior regressed against core, research, or comparative suites?

The bundled head-to-head suite focuses on route-first comparisons against a local ../web-search-plus checkout.

The bundled head-to-head-live suite adds real networked comparisons for freshness and citation quality under shared provider credentials.

Review-Safe Guarantees

  • metadata only declares node as the hard runtime requirement
  • provider credentials are optional
  • ddg is a best-effort no-key baseline, not a guaranteed high-recall provider
  • Safe Fetch rejects non-HTTP(S), credential-bearing, local, private, and metadata targets
  • redirect targets are revalidated
  • Safe Fetch keeps JavaScript execution disabled
  • browser render is optional and off by default
  • browser render uses a local headless browser only when enabled
  • browser render reports anti-bot or challenge interstitials as failures instead of silent success
  • provider health distinguishes degraded from cooldown

Docs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.03%
按下载量换算342

Claude

30.34%
按下载量换算305

Cursor

18.62%
按下载量换算187

Gemini CLI

9.24%
按下载量换算93

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills