← 返回 Skills 市场
kelaner

Multi Search Engine.Tmp

作者 laner · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
127
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install multi-search-engine-tmp
功能描述
Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and Wolfra...
使用说明 (SKILL.md)

Multi Search Engine v2.0.1

Integration of 17 search engines for web crawling without API keys.

Search Engines

Domestic (8)

  • Baidu: https://www.baidu.com/s?wd={keyword}
  • Bing CN: https://cn.bing.com/search?q={keyword}&ensearch=0
  • Bing INT: https://cn.bing.com/search?q={keyword}&ensearch=1
  • 360: https://www.so.com/s?q={keyword}
  • Sogou: https://sogou.com/web?query={keyword}
  • WeChat: https://wx.sogou.com/weixin?type=2&query={keyword}
  • Toutiao: https://so.toutiao.com/search?keyword={keyword}
  • Jisilu: https://www.jisilu.cn/explore/?keyword={keyword}

International (9)

  • Google: https://www.google.com/search?q={keyword}
  • Google HK: https://www.google.com.hk/search?q={keyword}
  • DuckDuckGo: https://duckduckgo.com/html/?q={keyword}
  • Yahoo: https://search.yahoo.com/search?p={keyword}
  • Startpage: https://www.startpage.com/sp/search?query={keyword}
  • Brave: https://search.brave.com/search?q={keyword}
  • Ecosia: https://www.ecosia.org/search?q={keyword}
  • Qwant: https://www.qwant.com/?q={keyword}
  • WolframAlpha: https://www.wolframalpha.com/input?i={keyword}

Quick Examples

// Basic search
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})

// Site-specific
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})

// File type
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})

// Time filter (past week)
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})

// Privacy search
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})

// DuckDuckGo Bangs
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"})

// Knowledge calculation
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})

Advanced Operators

Operator Example Description
site: site:github.com python Search within site
filetype: filetype:pdf report Specific file type
"" "machine learning" Exact match
- python -snake Exclude term
OR cat OR dog Either term

Time Filters

Parameter Description
tbs=qdr:h Past hour
tbs=qdr:d Past day
tbs=qdr:w Past week
tbs=qdr:m Past month
tbs=qdr:y Past year

Privacy Engines

  • DuckDuckGo: No tracking
  • Startpage: Google results + privacy
  • Brave: Independent index
  • Qwant: EU GDPR compliant

Bangs Shortcuts (DuckDuckGo)

Bang Destination
!g Google
!gh GitHub
!so Stack Overflow
!w Wikipedia
!yt YouTube

WolframAlpha Queries

  • Math: integrate x^2 dx
  • Conversion: 100 USD to CNY
  • Stocks: AAPL stock
  • Weather: weather in Beijing

Documentation

  • references/advanced-search.md - Domestic search guide
  • references/international-search.md - International search guide
  • CHANGELOG.md - Version history

License

MIT

安全使用建议
This skill is an instruction-only collection of search URLs and examples and does not request secrets or perform local file access. Before enabling: (1) confirm you trust the unknown publisher (homepage is missing and owner IDs vary across metadata files); (2) be aware web_fetch will make outbound HTTP requests — ensure that is acceptable for your environment and privacy needs; (3) avoid running queries that intentionally probe for sensitive data (e.g., intext:password, filetype:txt searching for credentials); and (4) verify any slightly odd URLs (e.g., Bing INT pointing at cn.bing.com) or missing reference files if you rely on completeness of documentation.
功能分析
Type: OpenClaw Skill Name: multi-search-engine-tmp Version: 1.0.0 The skill bundle provides a comprehensive integration for 17 search engines (domestic and international) by defining URL templates and search operators. The documentation in SKILL.md and references/international-search.md includes educational examples of advanced search techniques, such as 'Google Dorking' (e.g., searching for specific file types or strings), but these are presented as functional examples of search syntax rather than malicious instructions. There is no evidence of data exfiltration, unauthorized command execution, or malicious prompt injection.
能力评估
Purpose & Capability
The declared purpose (multi-search integration) matches the provided URLs, examples, and config.json. Minor inconsistencies: SKILL.md references references/advanced-search.md which is not present in the manifest, some metadata ownerId values differ across files, and the registry name is 'Multi Search Engine.Tmp' while the internal name is 'multi-search-engine'. One search URL choice (Bing INT using cn.bing.com with enseach=1) looks odd but not inherently malicious.
Instruction Scope
The runtime instructions are limited to building search URLs and calling web_fetch against public search engine endpoints. There are no instructions to read local files, access environment variables, or transmit data to private endpoints. The examples include advanced search operators (e.g., intext:password) which could be used for OSINT or sensitive-data discovery — this is capability-appropriate but potentially privacy-sensitive depending on user behavior.
Install Mechanism
No install spec and no bundled executable code — this is an instruction-only skill so it does not write or execute downloaded code on the host. That gives it a low install-surface risk.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate for a search-URL/HTTP-fetching documentation skill.
Persistence & Privilege
always is false and there are no indications the skill modifies other skills or agent-wide settings. It therefore does not request elevated persistence or privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install multi-search-engine-tmp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /multi-search-engine-tmp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of multi-search-engine skill integrating 17 search engines (8 Chinese, 9 global). - Supports advanced search operators, time filters, site-specific search, and filetype filters. - Privacy-focused search engines included: DuckDuckGo, Startpage, Brave, Qwant. - Enables DuckDuckGo Bang shortcuts and WolframAlpha knowledge queries. - No API keys required for any search functions. - Documentation and example queries provided for all features.
元数据
Slug multi-search-engine-tmp
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 0
历史版本数 1
常见问题

Multi Search Engine.Tmp 是什么?

Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and Wolfra... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 127 次。

如何安装 Multi Search Engine.Tmp?

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

Multi Search Engine.Tmp 是免费的吗?

是的,Multi Search Engine.Tmp 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Multi Search Engine.Tmp 支持哪些平台?

Multi Search Engine.Tmp 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Multi Search Engine.Tmp?

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

💬 留言讨论