Multi Search Engine 2.0.1
Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and Wolfra...
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 3 · 2.3k · 77 current installs · 82 all-time installs
duplicate of @phucanh08/multi-search-engine-2
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
The name/description (multi search engine integration) matches the manifest and SKILL.md: the skill is purely a collection of search-engine URL templates and usage examples. It does not request unrelated credentials, binaries, or config paths.
Instruction Scope
SKILL.md only instructs the agent to construct search URLs and call web_fetch on public search engine endpoints (Google, DuckDuckGo, Baidu, WolframAlpha, etc.). It does not instruct reading local files, environment variables, or contacting hidden endpoints. Some examples show operators that could be used to find sensitive content (e.g., intext:password, cache:), but those are user-facing examples of search syntax, not instructions to exfiltrate data from the host.
Install Mechanism
No install spec and no code files beyond documentation. Nothing will be written to disk or downloaded by the skill itself.
Credentials
The skill requires no environment variables, API keys, or credentials. The declared behavior (no API keys required) aligns with using public web UIs for queries.
Persistence & Privilege
always is false and the skill does not request persistent or elevated privileges or modify other skills. It is user-invocable and can be called autonomously by the agent (platform default), which is appropriate for a query helper.
Assessment
This skill is documentation-only and appears internally consistent: it simply builds search URLs and uses web_fetch to retrieve results from public search engines. Before installing, consider: (1) web_fetch will make outbound HTTP requests to third-party search engines — those services may log queries and could reveal your search terms to external parties; (2) some example operators (cache:, intext:password, site:) can be used to locate sensitive material — avoid running automated broad searches against targets you don't own or that contain private data; (3) verify how your platform's web_fetch handles headers and whether it leaks agent metadata or authentication tokens to target sites; (4) search engines may block automated requests or rate-limit scraping. If you need a higher-assurance integration (e.g., official APIs, authenticated access, or limited telemetry), request an implementation that uses documented APIs and explicit credential handling.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
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 | |
!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 guidereferences/international-search.md- International search guideCHANGELOG.md- Version history
License
MIT
Files
7 totalSelect a file
Select a file to preview.
Comments
Loading comments…
