skills/tavily-search/SKILL.md
Search the web using Tavily's LLM-optimized API. Returns relevant results with content snippets, relevance scores, and metadata. Use when you need current web information, recent news, documentation, or any data beyond your knowledge cutoff.
npx skillsauth add giggle-official/storyclaw-assistant tavily-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search the web and get LLM-optimized results. Preferred over web-search when you need structured relevance scoring, domain filtering, or time-range filtering without spinning up a local browser.
Set TAVILY_API_KEY in ~/.openclaw/.env.local:
TAVILY_API_KEY=tvly-your-api-key-here
Get a key at https://tavily.com (1,000 free credits/month).
Prefer tavily-research for deep multi-source synthesis or market analysis.
# Basic search
curl -s -X POST https://api.tavily.com/search \
-H "Authorization: Bearer $TAVILY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "latest Claude model releases 2025", "max_results": 5}'
Endpoint: POST https://api.tavily.com/search
| Field | Type | Default | Description |
| --------------------- | ------- | ------------ | ---------------------------------------------- |
| query | string | Required | Search query (keep under 400 chars) |
| max_results | integer | 10 | Max results returned (1–20) |
| search_depth | string | "basic" | ultra-fast / fast / basic / advanced |
| topic | string | "general" | Search topic category |
| time_range | string | null | day / week / month / year |
| start_date | string | null | Return results after this date (YYYY-MM-DD) |
| end_date | string | null | Return results before this date (YYYY-MM-DD) |
| include_domains | array | [] | Restrict to these domains (max 300) |
| exclude_domains | array | [] | Exclude these domains (max 150) |
| country | string | null | Boost results from a specific country |
| include_raw_content | boolean | false | Include full page content in results |
| include_images | boolean | false | Include image results |
{
"query": "latest Claude model releases 2025",
"results": [
{
"title": "Page Title",
"url": "https://example.com/page",
"content": "Extracted text snippet...",
"score": 0.91
}
],
"response_time": 1.2
}
| Depth | Latency | Use When |
| ------------ | ------- | ---------------------------------- |
| ultra-fast | Lowest | Real-time chat, quick lookups |
| fast | Low | Latency matters but need chunks |
| basic | Medium | General-purpose (default) |
| advanced | Higher | Precision critical, best relevance |
curl -s -X POST https://api.tavily.com/search \
-H "Authorization: Bearer $TAVILY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "AI agent frameworks news",
"time_range": "week",
"max_results": 10
}'
curl -s -X POST https://api.tavily.com/search \
-H "Authorization: Bearer $TAVILY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "Python async patterns",
"include_domains": ["docs.python.org", "realpython.com", "github.com"],
"search_depth": "advanced"
}'
curl -s -X POST https://api.tavily.com/search \
-H "Authorization: Bearer $TAVILY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "openclaw agent config format",
"max_results": 3,
"include_raw_content": true
}'
include_domains to focus on authoritative sourcesscore field (0–1) to filter low-relevance results; discard below 0.5time_range when the user asks about recent events or newsadvanced depth is recommended when result quality matters more than speedtools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.
development
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
development
X2C Distribution and Wallet API — publish video to X2C platform, manage assets (balance, claim X2C, swap to USDC, withdraw, transactions).
data-ai
Manage X (Twitter) accounts — post tweets, like, reply, retweet, view timeline, search, auto-interact, analyze data.