Openclaw Multi Search Engine

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.
0 · 35 · 1 current installs · 1 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the contents: SKILL.md and config.json list 17 search engines and show URL templates. No unrelated credentials, binaries, or installs are requested. The resources requested are proportionate to a search-URL aggregator.
Instruction Scope
Runtime instructions only show calls like web_fetch({url: ...}) to public search engine URLs. The instructions do not ask the agent to read local files, environment variables, or to transmit data to unexpected endpoints. Note: queries are sent to third-party search providers (expected for this skill).
Install Mechanism
There is no install spec and no code to write to disk (instruction-only). This is the lowest-risk install model and aligns with the skill's purpose.
Credentials
The skill requires no environment variables, credentials, or config paths. That is appropriate given the stated 'no API keys required' behavior.
Persistence & Privilege
always is false and the skill does not request elevated or persistent platform privileges. Autonomous invocation (model invocation enabled) is the platform default and is not excessive here.
Assessment
This skill appears coherent and low-risk: it builds search-engine URLs and asks the agent to fetch them. Before installing, keep in mind: (1) any query you send will be transmitted to the listed third-party search providers — do not include secrets, passwords, or sensitive data in queries; (2) automated fetching may trigger rate-limiting or blocks by those providers; (3) some small metadata inconsistencies exist (references/advanced-search.md is mentioned but not present; multiple _meta files with different slugs/owner IDs), which look like documentation/versioning sloppiness rather than a security issue. If you need the skill to avoid sending sensitive input, or to use an API keyed provider under your control, consider modifying instructions or adding safeguards (input sanitization, explicit warnings, or limiting which engines are queried).

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk978qptsc297tpqzpv4nj9net1830tzj

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

OperatorExampleDescription
site:site:github.com pythonSearch within site
filetype:filetype:pdf reportSpecific file type
"""machine learning"Exact match
-python -snakeExclude term
ORcat OR dogEither term

Time Filters

ParameterDescription
tbs=qdr:hPast hour
tbs=qdr:dPast day
tbs=qdr:wPast week
tbs=qdr:mPast month
tbs=qdr:yPast year

Privacy Engines

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

Bangs Shortcuts (DuckDuckGo)

BangDestination
!gGoogle
!ghGitHub
!soStack Overflow
!wWikipedia
!ytYouTube

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

Files

8 total
Select a file
Select a file to preview.

Comments

Loading comments…