← Back to Skills Marketplace
686
Downloads
1
Stars
10
Active Installs
1
Versions
Install in OpenClaw
/install bing-search-cn
Description
使用必应中文搜索引擎进行网络搜索和网页抓取
README (SKILL.md)
bing-search-cn 技能
使用必应中文搜索引擎进行网络搜索和网页抓取。
工具
1. bing_search
必应搜索引擎搜索。
参数:
query(必填): 搜索关键词count(可选): 返回结果数量,默认10条,最多50条offset(可选): 起始偏移,用于分页
返回:
- 搜索结果总数
- 每条结果的标题、链接、摘要、网站名称
2. bing_fetch
抓取网页内容(自动跳过黑名单网站)。
参数:
url(必填): 要抓取的网页地址
返回:
- 网页标题
- 清理后的正文内容
黑名单
自动过滤的网站:
- 知乎 (zhihu.com)
- 小红书 (xiaohongshu.com)
- 微博 (weibo.com)
- 微信公众号 (weixin.qq.com)
- 抖音/TikTok (douyin.com, tiktok.com)
- B站 (bilibili.com)
- CSDN (csdn.net)
使用示例
"搜索人工智能最新进展"
"搜索Python教程,返回20条"
"抓取这个网页 https://example.com"
限制
- 需要能访问 cn.bing.com
- 建议每次搜索间隔1-2秒
- 搜索请求直接发送到必应,不存储日志
- 部分网站有反爬限制
技能路径
技能脚本位于: {baseDir}/bing-search.js
调用方式
通过 exec 工具调用:
node ~/.openclaw/skills/bing-search-cn/bing-search.js search "关键词" 数量 偏移
node ~/.openclaw/skills/bing-search-cn/bing-search.js fetch "网址"
Usage Guidance
This skill appears to implement Bing search and a web crawler as described, but it will fetch arbitrary HTTP/HTTPS URLs and return page content. Before installing: 1) Be aware of SSRF risk — the script can access localhost and private IPs (no internal-host blocking). 2) Avoid passing untrusted or user-supplied URLs to its fetch command. 3) If you need web search functionality, consider using an official Bing API client (with proper rate limits and auth) instead of HTML scraping. 4) If you still want to use it, sandbox execution, add URL whitelist/blacklist for private IP ranges, and implement checks to forbid requests to internal/non-routable IPs and sensitive paths.
Capability Analysis
Type: OpenClaw Skill
Name: bing-search-cn
Version: 1.0.0
The skill provides legitimate web search and scraping functionality using the Bing search engine. The code in bing-search.js uses standard Node.js HTTP/HTTPS modules to fetch data, implements a domain blacklist for content filtering, and contains no evidence of data exfiltration, obfuscation, or malicious intent. While it lacks internal network protections (potential SSRF), this is a common characteristic of web-fetching tools and aligns with its stated purpose.
Capability Assessment
Purpose & Capability
Name/description match the implementation: the code performs searches on cn.bing.com and can fetch webpage content. Minor mismatch: SKILL.md says it returns a total result count, but the code returns the count of parsed items (results.length) rather than Bing's reported total.
Instruction Scope
SKILL.md instructs the agent to invoke the included Node script to search or fetch arbitrary URLs. The fetch (crawlWebpage) accepts any http/https URL and will request and return page content (up to 8000 chars). There is no check to block requests to localhost, private IP ranges, intranet hosts, or file: URLs — this creates an SSRF/data-exfiltration risk. The only filtering is a small social-site blacklist, which does not mitigate internal-host access or sensitive endpoints.
Install Mechanism
No install spec; this is instruction+script only and requires node to be present. Nothing is downloaded or written during install.
Credentials
The skill requests no environment variables or credentials. The code sets a User-Agent and a Cookie header for Bing queries (to influence search behavior), but it does not require or leak secrets.
Persistence & Privilege
always is false and the skill does not modify other skill configurations or system-wide settings. It runs only when invoked.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install bing-search-cn - After installation, invoke the skill by name or use
/bing-search-cn - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
1.0.0 发布
Metadata
Frequently Asked Questions
What is 必应搜索?
使用必应中文搜索引擎进行网络搜索和网页抓取. It is an AI Agent Skill for Claude Code / OpenClaw, with 686 downloads so far.
How do I install 必应搜索?
Run "/install bing-search-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 dej4vu (@dej4vu); the current version is v1.0.0.
More Skills