Install
openclaw skills install curlsearchWeb search using curl + multiple search engines (Baidu, Google, Bing, DuckDuckGo). Activates when user asks to search, look up, or query something online. In...
openclaw skills install curlsearchWeb search using curl + multiple search engines. This skill provides a lightweight alternative when dedicated search APIs are unavailable.
| Engine | Alias | Description |
|---|---|---|
| Baidu | bd | Fast for China, default option |
| g | Requires proxy/VPN in China | |
| Bing | b | Microsoft Bing |
| DuckDuckGo | ddg | Privacy-focused search |
Search for OpenClaw tutorial
Google search AI development
Find Python tutorials with bing
This skill includes several security enhancements:
Removes dangerous shell metacharacters that could be exploited:
sanitize_input() {
local input="$1"
echo "$input" | sed 's/[^a-zA-Z0-9 \_\-\.\~\x{4e00}-\x{9fff}]//g'
}
Uses Python's urllib.parse with safe='' parameter to properly encode special characters.
# Install via ClawHub
clawhub install curl-search
# Or manually
cd your-skills-dir
tar -xzf curl-search.tar.gz
Set default search engine:
export SEARCH_ENGINE=google
Set max results:
export MAX_RESULTS=5