Install
openclaw skills install tavily-one-step-search联网搜索, 网页搜索, 实时联网, 一键配置。让 OpenClaw 用 Tavily 实现实时搜索(含免费额度)。One-step install + guided key setup. Guide: github.com/plabzzxx/openclaw-tavily-search
openclaw skills install tavily-one-step-searchThis skill provides a single Node CLI with subcommands:
search — web search with filters and multiple output formatsextract — fetch clean content from one or more URLscrawl — crawl a site with extraction controlsmap — discover and map site URLsSet TAVILY_API_KEY via one of:
TAVILY_API_KEY=...~/.openclaw/.env line: TAVILY_API_KEY=...# 1) Search (Brave-like structure)
node {baseDir}/scripts/tavily_search.mjs search \
--query "OpenClaw multi-agent" --max-results 5 --format brave
# 2) Search with domain filters
node {baseDir}/scripts/tavily_search.mjs search \
--query "周大福" \
--include-domains ctf.com.cn,ctfmall.com,chowtaifook.com \
--format brave
# 3) Extract specific URLs
node {baseDir}/scripts/tavily_search.mjs extract \
--urls https://docs.openclaw.ai,https://docs.tavily.com \
--content-format markdown --format md
# 4) Crawl docs site
node {baseDir}/scripts/tavily_search.mjs crawl \
--url docs.tavily.com --max-depth 2 --limit 30 --format md
# 5) Map a site structure
node {baseDir}/scripts/tavily_search.mjs map \
--url docs.openclaw.ai --max-depth 2 --limit 40 --format md
HTTP_PROXY / HTTPS_PROXY)--proxy http://127.0.0.1:7890--no-proxymax-results small (3–5) for chat tasks.search --format brave for stable downstream parsing.extract/crawl/map only when search snippets are insufficient.