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

search搜索

Agent Skill

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

总安装

218

周安装

9

下载量

71
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

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

  • 适合在 Local Agent 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 chrome-bridge MCP 实现浏览器自动化,利用真实登录会话获取个性化搜索结果。
  • 安装方式未知,使用前建议确认权限范围和维护状态,避免触发未授权的联网或文件操作。
  • search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Search — Run a Query, Return Structured Results

For any task that needs "the top N results for X." Read chrome-bridge first.

Why not a search API

The chrome-bridge gives you a real logged-in Chrome session with full cookies, so queries return personalized / region-appropriate results and aren't rate-limited the way a raw API key would be. No API signup, no tokens.

How this skill is laid out

Each capability has a focused JS file under scripts/. To use one:

  1. Read the script file to load it as a string.
  2. Pass the contents as the code argument to mcp__chrome-bridge__execute_script.
  3. The script returns a structured object — the header comment at the top of each file documents pre-conditions and return shape.

Capability map

TaskPre-conditionScriptNotes
Google SERP — primary extractornavigate('https://www.google.com/search?q=' + encodeURIComponent(query)) + 3sscripts/google_results.jsReturns up to 10 {title, url, snippet}. Snippet may be empty for text-fragment cards — fall back to the next row.
Google SERP — text-fragment fallbacksame as above, used when primary returns empty snippetsscripts/google_results_fallback.jsReconstructs snippet from card.innerText minus title.
EU consent wall click-throughlocation.href contains consent.google.comscripts/consent_click.jsPrefers "Reject all". Try dom_click('button[aria-label*="Reject all" i]') first; fall through to this script if that fails.
DuckDuckGo HTML — fast fallbacknavigate('https://html.duckduckgo.com/html/?q=' + encodeURIComponent(query)) + 2sscripts/ddg_results.jsURLs are wrapped through //duckduckgo.com/l/?uddg=... — use the decode variant if you need real URLs.
DuckDuckGo HTML — with URL decodesame as abovescripts/ddg_results_decode.jsSame shape as ddg_results.js but decodes uddg to the real destination.
Bing SERPnavigate('https://www.bing.com/search?q=' + encodeURIComponent(query)) + 3sscripts/bing_results.jsLast-resort fallback when Google + DuckDuckGo both fail.

Workflow

Primary: Google

navigate(url='https://www.google.com/search?q=' + urlencode(query))
# wait ~3s

# Detect & clear EU consent wall if present:
u = execute_script(code="(()=>location.href)()")
if 'consent.google.com' in u:
    dom_click('button[aria-label*="Reject all" i]')   # try the dedicated button first
    # fall through to the text-matching script if that did nothing:
    execute_script(code=<contents of scripts/consent_click.js>)
    # wait ~3s for redirect back to /search

results = execute_script(code=<contents of scripts/google_results.js>)
# If any result has empty snippet and you need them all populated:
results = execute_script(code=<contents of scripts/google_results_fallback.js>)

If Google's primary extractor still returns empty:

  • Fall back to page_markdown and pick out result-looking links heuristically
  • Fall back to DuckDuckGo (below)

Google search operators

Pass operators in the query string:

  • site:example.com — restrict to a domain
  • filetype:pdf — restrict to a file type
  • "exact phrase" — exact match
  • after:2025-01-01 — recency filter
  • -word — exclude a term

Fallback: DuckDuckGo HTML endpoint

Useful when Google shows CAPTCHA, consent loops, or you need a no-JS path:

navigate(url='https://html.duckduckgo.com/html/?q=' + urlencode(query))
# wait ~2s
results = execute_script(code=<contents of scripts/ddg_results.js>)
# Or if you need real URLs (not the //duckduckgo.com/l/?uddg= wrapper):
results = execute_script(code=<contents of scripts/ddg_results_decode.js>)

Fallback: Bing

navigate(url='https://www.bing.com/search?q=' + urlencode(query))
# wait ~3s
results = execute_script(code=<contents of scripts/bing_results.js>)

Specialty searches

  • Academic: https://scholar.google.com/scholar?q=... — results under .gs_ri, title at .gs_rt a, metadata at .gs_a, snippet at .gs_rs.
  • News: https://news.google.com/search?q=... — SPA, may need 5+ seconds to render.
  • Images: https://www.google.com/search?q=...&tbm=isch — extract img[src^="http"] with alt text.

Return shape

[
  { "title": "...", "url": "https://...", "snippet": "..." }
]

Always include a snippet even if short — it's what lets the caller rank without re-fetching.

Common failures

SignalCauseFix
Empty results from GoogleDOM changed, or consent wall blockingRun the fallback extractor; handle consent; fall back to DuckDuckGo
CAPTCHA on GoogleDetected automationStop and tell the user — never bypass
Results have title but no urlSelector picked an h3 without an anchorThe scripts already require a.href.startsWith('http') — if it still happens, the SERP layout changed
DuckDuckGo URLs are duckduckgo.com/l/?uddg=...Redirect wrapperUse ddg_results_decode.js instead of ddg_results.js
Only 2–3 resultsPage not fully loaded, or personalized to a narrow result setWait longer; retry with a broader query

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

81.84%
按下载量换算58

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills