Install
openclaw skills install neo-ddg-searchSearch the web using DuckDuckGo. Free, no API key required. Use when the user asks to search the web, look something up, find information online, research a topic, or when you need to find current information that isn't in your training data. Also use when web_search tool is unavailable or has no API key configured.
openclaw skills install neo-ddg-searchSearch the web via DuckDuckGo using the ddgs Python library. No API key needed.
python3 skills/ddg-search/scripts/search.py "your search query" [count]
query (required): Search termscount (optional): Number of results, default 5, max 20Each result includes:
# Basic search
python3 skills/ddg-search/scripts/search.py "latest AI news"
# More results
python3 skills/ddg-search/scripts/search.py "Python async tutorial" 10
After searching, use web_fetch to read full content from any result URL.
ddgs Python package (install: pip install --break-system-packages ddgs)