Openclaw-master-skills tavily
AI-optimized web search via Tavily API. Returns concise, relevant results for AI agents.
install
source · Clone the upstream repo
git clone https://github.com/LeoYeAI/openclaw-master-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tavily-search-1-0-0" ~/.claude/skills/leoyeai-openclaw-master-skills-tavily && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/tavily-search-1-0-0" ~/.openclaw/skills/leoyeai-openclaw-master-skills-tavily && rm -rf "$T"
manifest:
skills/tavily-search-1-0-0/SKILL.mdsource content
Tavily Search
AI-optimized web search using Tavily API. Designed for AI agents - returns clean, relevant content.
Search
node {baseDir}/scripts/search.mjs "query" node {baseDir}/scripts/search.mjs "query" -n 10 node {baseDir}/scripts/search.mjs "query" --deep node {baseDir}/scripts/search.mjs "query" --topic news
Options
: Number of results (default: 5, max: 20)-n <count>
: Use advanced search for deeper research (slower, more comprehensive)--deep
: Search topic ---topic <topic>
(default) orgeneralnews
: For news topic, limit to last n days--days <n>
Extract content from URL
node {baseDir}/scripts/extract.mjs "https://example.com/article"
Notes:
- Needs
from https://tavily.comTAVILY_API_KEY - Tavily is optimized for AI - returns clean, relevant snippets
- Use
for complex research questions--deep - Use
for current events--topic news