← 返回 Skills 市场
dej4vu

必应搜索

作者 dej4vu · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
686
总下载
1
收藏
10
当前安装
1
版本数
在 OpenClaw 中安装
/install bing-search-cn
功能描述
使用必应中文搜索引擎进行网络搜索和网页抓取
使用说明 (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 "网址"
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install bing-search-cn
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /bing-search-cn 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
1.0.0 发布
元数据
Slug bing-search-cn
版本 1.0.0
许可证 MIT-0
累计安装 10
当前安装数 10
历史版本数 1
常见问题

必应搜索 是什么?

使用必应中文搜索引擎进行网络搜索和网页抓取. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 686 次。

如何安装 必应搜索?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install bing-search-cn」即可一键安装,无需额外配置。

必应搜索 是免费的吗?

是的,必应搜索 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

必应搜索 支持哪些平台?

必应搜索 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 必应搜索?

由 dej4vu(@dej4vu)开发并维护,当前版本 v1.0.0。

💬 留言讨论