Install
openclaw skills install tavily-search-with-multi-keyWeb search via Tavily API (alternative to Brave). Use when the user asks to search the web / look up sources / find links and Brave web_search is unavailable or undesired. Returns a small set of relevant results (title, url, snippet) and can optionally include short answer summaries.
openclaw skills install tavily-search-with-multi-keyUse the bundled script to search the web with Tavily.
export TAVILY_API_KEYS="key1,key2,key3"TAVILY_API_KEY=xxx~/.openclaw/.env 文件:TAVILY_API_KEY=xxxRun from the OpenClaw workspace:
# raw JSON (default)
python3 {baseDir}/scripts/tavily_search.py --query "..." --max-results 5
# include short answer (if available)
python3 {baseDir}/scripts/tavily_search.py --query "..." --max-results 5 --include-answer
# stable schema (closer to web_search): {query, results:[{title,url,snippet}], answer?}
python3 {baseDir}/scripts/tavily_search.py --query "..." --max-results 5 --format brave
# human-readable Markdown list
python3 {baseDir}/scripts/tavily_search.py --query "..." --max-results 5 --format md
query, optional answer, results: [{title,url,content}]query, optional answer, results: [{title,url,snippet}]max-results small by default (3–5) to reduce token/reading load.