skills/library/tavily/SKILL.md
AI-optimized web search via Tavily API. Returns clean, structured results ideal for LLM consumption.
npx skillsauth add malue-ai/dazee-small tavilyInstall 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.
专为 AI Agent 优化的搜索 API,返回干净、结构化的结果,适合 LLM 直接消费。
需要设置环境变量 TAVILY_API_KEY:
export TAVILY_API_KEY="tvly-xxxxx"curl -s -X POST "https://api.tavily.com/search" \
-H "Content-Type: application/json" \
-d '{
"api_key": "'$TAVILY_API_KEY'",
"query": "搜索内容",
"search_depth": "basic",
"max_results": 5
}'
curl -s -X POST "https://api.tavily.com/search" \
-H "Content-Type: application/json" \
-d '{
"api_key": "'$TAVILY_API_KEY'",
"query": "搜索内容",
"search_depth": "advanced",
"max_results": 10,
"include_raw_content": true
}'
from tavily import TavilyClient
client = TavilyClient(api_key=os.environ["TAVILY_API_KEY"])
response = client.search(
query="AI agent 市场分析 2026",
search_depth="advanced",
max_results=10,
)
for result in response["results"]:
print(f"Title: {result['title']}")
print(f"URL: {result['url']}")
print(f"Content: {result['content'][:200]}")
print("---")
| 参数 | 值 | 说明 |
|---|---|---|
| search_depth | basic / advanced | basic 快但浅,advanced 慢但全 |
| max_results | 1-20 | 返回结果数量 |
| include_raw_content | bool | 是否返回网页原始内容 |
| include_domains | list | 限定搜索域名 |
| exclude_domains | list | 排除域名 |
development
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
development
Get current weather and forecasts (no API key required).
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Start voice calls via the Moltbot voice-call plugin.