Install
openclaw skills install @gimpy666/multi-search-engine-refinedMulti search engine integration with 4 engines: Google, DuckDuckGo, Brave Search, and WolframAlpha. Supports advanced search operators, time filters, and knowledge queries. No API keys required.
openclaw skills install @gimpy666/multi-search-engine-refinedIntegration of four search endpoints for web fetching without API keys.
| Engine | URL template |
|---|---|
https://www.google.com/search?q={keyword} | |
| DuckDuckGo | https://duckduckgo.com/html/?q={keyword} |
| Brave | https://search.brave.com/search?q={keyword} |
| WolframAlpha | https://www.wolframalpha.com/input?i={keyword} |
// Google
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})
// DuckDuckGo
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})
web_fetch({"url": "https://duckduckgo.com/html/?q=!g+machine+learning"})
// Brave
web_fetch({"url": "https://search.brave.com/search?q=privacy+tools"})
// WolframAlpha
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})
| 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 |
| 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 |
web_fetch.Use inside the q parameter on duckduckgo.com (many bangs redirect to third-party sites when used in a browser; web_fetch only retrieves the DuckDuckGo URL you request).
| Bang | Role |
|---|---|
!g | Run query on Google |
!brave | Run query on Brave Search |
integrate x^2 dx100 USD to CNYAAPL stockweather in Beijingreferences/international-search.md — Detailed guide for these four enginesCHANGELOG.md — Version historyMIT