Skills multi-search-engine
Build auditable search URLs across Chinese and global engines with region/language filters, advanced operators, time scopes, privacy-first options, compare mode, and no API keys.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/52yuanchangxing/multi-search-engine-pro" ~/.claude/skills/openclaw-skills-multi-search-engine && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/52yuanchangxing/multi-search-engine-pro" ~/.openclaw/skills/openclaw-skills-multi-search-engine && rm -rf "$T"
manifest:
skills/52yuanchangxing/multi-search-engine-pro/SKILL.mdsource content
Multi Search Engine v2.1.0
A search orchestration skill for OpenClaw that helps the agent choose engines, build safe search URLs, compare results across engines, and explain why a given engine is appropriate.
This version turns the skill from a static engine list into a reusable toolkit with:
- engine aliases and region-aware selection
- advanced operator composition (
,site:
, exact phrase, exclusion, OR groups)filetype: - time scopes where the engine supports them
- compare mode for multi-engine research
- privacy-first presets
- command-line helper script that outputs
,json
, or plainmarkdowntext - explicit safety guidance for direct web access
When to use this skill
Use this skill when the user wants to:
- search the same query on multiple engines
- bias toward Chinese vs global engines
- use privacy-first engines
- build advanced search operators reliably
- compare engine coverage before opening pages
- prepare direct
or browser URLs without needing an API keyweb_fetch
Recommended workflow
-
Normalize the user's research intent:
- broad web search
- China-focused search
- privacy-first search
- docs / code / paper / file search
- calculation / fact query
-
Pick engines deliberately:
- China / local web: Baidu, Sogou, 360, Toutiao, WeChat
- Global general: Google, Bing INT, Brave, Yahoo
- Privacy-first: DuckDuckGo, Startpage, Brave, Qwant
- Knowledge / computation: WolframAlpha
- Community / niche finance: Jisilu
-
Build the query using operators only when they help:
for source restrictionsite:
for PDFs / docsfiletype:- quotes for exact phrase
for exclusion-term
for alternativesOR
-
Prefer compare mode for research-sensitive tasks:
- one privacy engine
- one mainstream engine
- one region-specific engine if relevant
-
Open only the most promising result pages after inspecting generated URLs.
Direct script usage
python3 scripts/build_search_urls.py --query "openclaw skills" --engine google python3 scripts/build_search_urls.py --query "量化投资" --preset cn-research --time week --format markdown python3 scripts/build_search_urls.py --query "react hooks" --site github.com --exact "useEffect" --compare google,ddg,brave python3 scripts/build_search_urls.py --query "100 USD to CNY" --engine wolframalpha --format json
Typical OpenClaw usage
User asks for recent AI papers as PDFs → build a Google / Brave compare query → add filetype:pdf and time scope → inspect URLs before opening pages
Security and privacy
- This skill does not require API keys.
- It does not execute remote code.
- It only generates deterministic search URLs from local templates.
- Network access happens only when the agent explicitly opens the generated URLs.
- Search engines may log requests; use privacy presets when that matters.
Files
— primary instructions and metadataSKILL.md
— install, scenarios, examples, FAQ, risksREADME.md
— URL builder and compare helperscripts/build_search_urls.py
— engine definitions, aliases, capabilitiesresources/engine-catalog.json
— operator referenceresources/search-operator-cheatsheet.md
— prompt patterns for agentsexamples/example-prompt.md
— manual smoke coveragetests/smoke-test.md
— self-audit and release checklistSELF_CHECK.md