← Back to Skills Marketplace
国内浏览器搜索终极增强
by
chn012cjus
· GitHub ↗
· v1.0.3
· MIT-0
181
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install browser-search-ultimate-cn
Description
国内12大引擎聚合搜索,自动去重排序,支持时效筛选,优先匹配垂直领域,提供精准且实时的本土化信息答案。
README (SKILL.md)
browser-search-ultimate-cn - 国内搜索技能
实际功能描述
通过 Windows curl.exe 直接请求搜索引擎页面,正则提取搜索结果。输出核心答案摘要 + 详细结果列表。
引擎支持(2026-03-31 实测)
| 引擎 | 状态 |
|---|---|
| Bing (cn.bing.com) | ✅ 稳定可用 |
| 360 (so.com) | ❌ 被反爬 |
| 知乎 | ❌ 被反爬 |
当前有效引擎:Bing(主力,稳定出结果)
适用场景
- 国内中文信息查询
- 新闻、热点事件
- 通用搜索
使用方式
直接调用 Python 脚本:
run.py \x3C关键词> [freshness] [count] [vertical]
参数说明
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| query | string | 是 | 搜索关键词 |
| freshness | string | 否 | 预留参数(暂未实现) |
| count | number | 否 | 返回数量,默认10条 |
| vertical | string | 否 | news/tech/ent/shop(引擎组合略有不同) |
输出示例
== [Search] 中东战争 ==
[Bing] +10
== [Core Answer] ==
摘要内容1
摘要内容2
== [Results: 10 | Bing + 360 + Zhihu] ==
1. [Bing] 标题
摘要
URL
技术实现
- 纯 Python 标准库(sys, io, subprocess, re, urllib, collections)
subprocess.run(['curl.exe', ...])发 HTTP 请求re.finditer正则提取搜索结果OrderedDict按 URL 去重- 输出编码:
sys.stdout = io.TextIOWrapper(..., encoding='utf-8')解决 Windows GBK 问题
局限性
- 依赖
curl.exe在系统 PATH 中可用 - 仅 Bing 稳定,其他引擎可能被反爬返回空结果
- 不支持需要 JavaScript 渲染的页面(知乎、B站等)
- 无广告过滤、无权威度排序
- 摘要来自 HTML 原始文本,可能含噪声字符
修复记录
- 2026-03-31:重写 run.py,移除对不存在的
openclaw tool callCLI 命令的依赖,改为直接用 curl 请求 Bing - 原版 skill 声称支持 12 引擎 + OpenClaw CLI 集成,与实际代码不符,已更正
Usage Guidance
This skill is basically a small Python scraper that runs curl.exe to fetch search pages and parses them with regex. It does not ask for secrets or install additional packages, but note: (1) it only reliably returns Bing results—the advertised '12 engines' is overstated and the SKILL.md even notes this; (2) it requires curl.exe on Windows (ensure curl.exe is the expected, trusted binary); (3) because it issues HTTP requests from your machine, avoid running it on sensitive hosts or inside networks where making arbitrary outbound requests could expose internal services; (4) the full source is included—review it if you have special security constraints, or run it in a sandboxed environment if unsure.
Capability Analysis
Type: OpenClaw Skill
Name: browser-search-ultimate-cn
Version: 1.0.3
The skill is a functional search engine scraper designed for Chinese search engines (Bing, 360, and Zhihu). It uses the Windows-native `curl.exe` via Python's `subprocess` module to fetch HTML and parses results using regular expressions. User input is properly sanitized using `urllib.parse.quote` before being included in the request URL, and the use of the list-based `subprocess.run` prevents shell injection. No indicators of data exfiltration, persistence, or malicious prompt injection were found in `run.py` or `SKILL.md`.
Capability Assessment
Purpose & Capability
Name/description promise (12 domestic engines, aggregation) is stronger than the actual implementation: the code practically only reliably scrapes Bing and includes parsers for 360 and Zhihu which may often fail. Rework notes in SKILL.md acknowledge the original overclaim. The requirement to call curl.exe on Windows is consistent with the code and the stated implementation method, but the script is Windows-centric and will not work without curl.exe on PATH.
Instruction Scope
SKILL.md instructs running run.py with query parameters; the script only issues HTTP requests to search engine URLs via curl.exe, parses HTML with regex, deduplicates by URL, and prints results to stdout. It does not read arbitrary local files, access environment secrets, or transmit data to third-party endpoints outside the targeted search engines. Behavior stays within the stated purpose (web scraping for search results).
Install Mechanism
No install spec is provided (instruction-only), so nothing is written to disk by an installer. The only external dependency is curl.exe on PATH; this is low install risk but does require the user to ensure a trusted curl.exe is available (Windows).
Credentials
The skill declares no environment variables, credentials, or config paths and the code does not access any secrets. There are no disproportionate credential requests.
Persistence & Privilege
The skill is not always-enabled and is user-invocable only; it does not modify other skills or system-wide configuration. It runs on demand and does not request elevated/system persistence.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install browser-search-ultimate-cn - After installation, invoke the skill by name or use
/browser-search-ultimate-cn - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.3
**browser-search-ultimate-cn 1.0.3 Changelog**
- 实现方式调整:移除 openclaw CLI 依赖,改为直接用 curl.exe 请求 Bing 中文搜索。
- 修订功能描述,仅保留实测可用引擎(目前仅 Bing)。
- 简化参数和调用方式,直接运行 Python 脚本即可。
- 明确局限性(curl 依赖、单一引擎、无广告过滤等)。
- 更新输出格式和示例,反映实际搜索结果。
v1.0.2
Version 1.0.2 of browser-search-ultimate-cn has no code or documentation changes.
- No updates or modifications detected in this release.
- Functionality and documentation remain unchanged from the previous version.
v1.0.1
- 更新依赖说明,增加对 OpenClaw CLI 工具的系统依赖与调用说明
- 新增安装前注意事项,详细说明依赖项和安装顺序要求
- 实现逻辑中明确通过 OpenClaw CLI 工具调用 multi-search-engine 技能
- 增加版本兼容性说明,支持 OpenClaw v2026.3.28 及以上
- 输出及使用方法保持不变,重点优化依赖与兼容性说明
v1.0.0
CN-Enhanced-Search 1.0.0 初始发布:
- 聚合12个国内主流信息源(如百度、知乎、小红书等)实现全网增强搜索。
- 自动去重、按相关性与权威度排序、过滤广告,输出精炼答案。
- 支持时效筛选、垂直领域指定、结果数控制等丰富搜索参数。
- 智能识别查询意图,优先匹配最相关引擎和领域信息。
- 失败自动重试与降级,引擎覆盖面广,保障高搜索成功率。
- 依赖 web-search-plus v2.9.2+ 和 multi-search-engine v1.0+。
Metadata
Frequently Asked Questions
What is 国内浏览器搜索终极增强?
国内12大引擎聚合搜索,自动去重排序,支持时效筛选,优先匹配垂直领域,提供精准且实时的本土化信息答案。 It is an AI Agent Skill for Claude Code / OpenClaw, with 181 downloads so far.
How do I install 国内浏览器搜索终极增强?
Run "/install browser-search-ultimate-cn" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 国内浏览器搜索终极增强 free?
Yes, 国内浏览器搜索终极增强 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 国内浏览器搜索终极增强 support?
国内浏览器搜索终极增强 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 国内浏览器搜索终极增强?
It is built and maintained by chn012cjus (@chn012cjus); the current version is v1.0.3.
More Skills