tavily-search

使用Tavily API进行智能网络搜索。无需信用卡,每月1000次免费查询。支持AI增强的搜索结果和深度研究模式。Use when: 需要高质量搜索结果、学术研究、或不想绑定信用卡的场景。

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "tavily-search" with this command: npx skills add chyher/irene-tavily

Tavily Search - 智能搜索工具

基于Tavily API的网络搜索skill,提供高质量的AI增强搜索结果。

Features

  • 无需信用卡 - 每月1000次免费查询
  • 🤖 AI增强 - 自动提取关键信息,生成摘要
  • 🔬 深度研究模式 - 多源综合分析
  • 📚 学术友好 - 适合研究和信息收集
  • 🌐 多语言支持 - 中英文搜索优化

Setup

1. 获取API Key

  1. 访问 https://tavily.com/
  2. 注册账号(邮箱即可,无需绑卡)
  3. 在Dashboard复制API Key

2. 配置OpenClaw

# 设置环境变量
export TAVILY_API_KEY="tvly-..."

# 或者写入配置文件
echo 'TAVILY_API_KEY=tvly-...' >> ~/.openclaw/.env

Usage

基础搜索

# 搜索最新AI新闻
python3 ~/.openclaw/skills/tavily-search/scripts/search.py "AI artificial intelligence news today"

# 中文搜索
python3 ~/.openclaw/skills/tavily-search/scripts/search.py "人工智能最新进展" --lang zh

Python调用

import subprocess
import json

result = subprocess.run(
    ['python3', '~/.openclaw/skills/tavily-search/scripts/search.py', 
     '你的搜索词', '--json'],
    capture_output=True, text=True
)
data = json.loads(result.stdout)

Parameters

参数说明默认值
query搜索关键词必填
--max-results返回结果数量 (1-20)5
--search-depth搜索深度 (basic/advanced)basic
--include-answer包含AI生成的答案True
--include-images包含相关图片False
--days时间范围(天)无限制
--lang语言偏好 (zh/en)auto
--jsonJSON格式输出False

Examples

AI新闻搜索

python3 scripts/search.py "OpenAI GPT-5 release" --days 7 --include-answer

学术研究

python3 scripts/search.py "transformer architecture survey" \
  --search-depth advanced --max-results 10

技术问题

python3 scripts/search.py "Docker compose networking tutorial" \
  --include-answer --lang zh

Free Tier Limits

  • 每月1000次API调用
  • 每次最多20个结果
  • 基础搜索深度
  • 学生可申请更多额度

Response Format

{
  "query": "搜索词",
  "answer": "AI生成的综合答案(可选)",
  "results": [
    {
      "title": "标题",
      "url": "链接",
      "content": "内容摘要",
      "score": 0.95,
      "published_date": "2024-03-01"
    }
  ],
  "images": [...]
}

Notes

  • 首次使用需要先配置TAVILY_API_KEY
  • 建议将API key添加到~/.openclaw/.env
  • 超过免费额度后会返回错误提示

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

low-carbon-medicine

低碳生活方式医学咨询。当用户提到低碳饮食、生酮饮食、减肥控糖、糖尿病逆转、代谢综合征、胰岛素抵抗时触发。

Registry SourceRecently Updated
General

x0x-api-smoketest-1777556197822

Scratch skill used to validate CI API publish flow before merge.

Registry SourceRecently Updated
General

java-circular-dependency-breaker

Break circular dependencies in Java multi-module Gradle/Maven projects using interface extraction and business service separation. Triggers: 'circular depend...

Registry SourceRecently Updated
General

Options Trading Brain

Professional options trading intelligence system. Monitors whale flow (Unusual Whales), counts Elliott Waves, analyzes Bollinger Bands, multi-timeframe trend...

Registry SourceRecently Updated