用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/malue-ai/dazee-small --skill tavily命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | tavily |
| description | AI-optimized web search via Tavily API. Returns clean, structured results ideal for LLM consumption. |
| metadata | {"xiaodazi":{"dependency_level":"cloud_api","os":["common"],"backend_type":"local","user_facing":true}} |
| capabilities | ["web_search","information_retrieval"] |
专为 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 | 排除域名 |