Use the bundled script to search the web through an existing TavilyProxyManager /search endpoint.
This skill does not deploy TavilyProxyManager. It only sends authenticated search requests to a TavilyProxyManager instance that is already running. Project: https://github.com/xuncv/TavilyProxyManager
Provide credentials via either:
TAVILY_PROXY_MASTER_KEY~/.openclaw/.env line: TAVILY_PROXY_MASTER_KEY=...Optional:
TAVILY_PROXY_URL~/.openclaw/.env line: TAVILY_PROXY_URL=...http://127.0.0.1:8080/searchMinimal example:
export TAVILY_PROXY_URL="http://127.0.0.1:8080/search"
export TAVILY_PROXY_MASTER_KEY="your-master-key"
Run from the OpenClaw workspace:
# raw JSON (default)
python3 {baseDir}/scripts/tavily_proxy_search.py --query "..." --max-results 5
# include short answer (if available)
python3 {baseDir}/scripts/tavily_proxy_search.py --query "..." --max-results 5 --include-answer
# stable schema (closer to web_search): {query, results:[{title,url,snippet}], answer?}
python3 {baseDir}/scripts/tavily_proxy_search.py --query "..." --max-results 5 --format brave
# human-readable Markdown list
python3 {baseDir}/scripts/tavily_proxy_search.py --query "..." --max-results 5 --format md
query, optional answer, results: [{title,url,content}]query, optional answer, results: [{title,url,snippet}]Missing TAVILY_PROXY_MASTER_KEYTAVILY_PROXY_MASTER_KEY in the environment or ~/.openclaw/.env.Tavily proxy returned HTTP 401/search endpoint.Tavily proxy request failedTAVILY_PROXY_URL, container status, reverse proxy, and network reachability.Tavily proxy returned non-JSON/search API endpoint, or an upstream proxy returned HTML/error text.TAVILY_PROXY_URL to the real TavilyProxyManager /search endpoint.max-results small by default (3–5) to reduce token and reading load.Authorization: Bearer .TAVILY_API_KEY in the JSON body for this skill.--query, --max-results, --include-answer, --search-depth, --format.advanced search depth depends on the capabilities of the deployed TavilyProxyManager instance and its upstream search configuration.共 1 个版本