Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

tavily-web-searchTavily Web 搜索

Agent Skill

tavily-web-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,466

周安装

143

GitHub Stars

4

下载量

1,133
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tavily-web-search(Tavily Web 搜索)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/tavily-web-search
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill tavily-web-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill tavily-web-search

简介

tavily-web-search 用于通过 Tavily 服务执行网络搜索,整合搜索结果并筛选相关信息。

  • 适合在需要实时数据、事实核查或研究支持时使用,尤其适用于 AI 工作流优化场景。
  • 可结合关键词、任务目标或指定来源进行检索,自动合成简洁答案。
  • 安装需通过 npx skills add 命令,建议确认 API 权限、调用限制及结果准确性。
  • 涉及敏感信息时,应核实数据来源可靠性与隐私合规要求。

SKILL.md

tavily-web-search

Purpose

This skill enables AI agents to perform web searches using Tavily, a service optimized for AI workflows. It synthesizes answers from search results, applies domain filters, and controls search depth to deliver relevant, concise information without overwhelming the agent.

When to Use

Use this skill when you need real-time web data, such as fetching current news, verifying facts, or gathering research. Apply it in scenarios where standard search engines are too verbose, like synthesizing answers for user queries, filtering results to specific domains (e.g.,.edu sites), or limiting depth for quick responses. Avoid it for internal data access or when offline sources suffice.

Key Capabilities

  • Answer Synthesis: Automatically summarizes search results into a coherent response; specify via search_depth parameter (e.g., 0 for shallow, 5 for deep).
  • Domain Filtering: Restrict searches to domains like "example.com" using the include_domains flag; example: include_domains=["wikipedia.org"].
  • Depth Control: Set search depth with max_results (1-10) to control result volume; higher values increase detail but raise costs.
  • Optimized for AI: Integrates with AI agents via API, supporting tags like "search" and "ai" for metadata embedding.
  • Configurable Queries: Supports query parameters for customization, such as query string and api_key for authentication.

Usage Patterns

Always initialize with an API key via environment variable $TAVILY_API_KEY. For basic searches, construct a query object and call the API endpoint. Use in loops for iterative refinement, e.g., refine queries based on initial results. Pattern: Set up auth, build query with filters, execute search, then parse and synthesize the response. For agent workflows, integrate as a subtool in multi-step processes, ensuring error checks between calls.

Common Commands/API

Tavily uses a REST API endpoint: https://api.tavily.com/search. Authentication requires setting $TAVILY_API_KEY in your environment.

Example CLI curl command:

curl -H "Content-Type: application/json" \
     -H "X-Api-Key: $TAVILY_API_KEY" \
     https://api.tavily.com/search -d '{"query": "latest AI news", "max_results": 3}'

Python code snippet for API call:

import requests
api_key = os.environ.get('TAVILY_API_KEY')
response = requests.post('https://api.tavily.com/search', headers={'X-Api-Key': api_key}, json={'query': 'climate change effects', 'include_domains': ['nytimes.com']})
results = response.json()['results']

Common flags/parameters:

  • query: String, required; e.g., "OpenAI updates".
  • max_results: Integer (1-10); controls depth, e.g., 5 for balanced results.
  • include_domains: Array of strings; e.g., ["bbc.com", "cnn.com"] for news sites.
  • exclude_domains: Array; e.g., ["socialmedia.com"] to avoid certain sites.

Integration Notes

To integrate, first obtain a Tavily API key from their dashboard and set it as $TAVILY_API_KEY. In code, import necessary libraries (e.g., requests in Python) and handle the API response as JSON. For OpenClaw agents, add this skill to your toolset by referencing the ID "tavily-web-search" in your agent config, like: tools: ["tavily-web-search"]. Config format example in YAML:

tools:
  - id: tavily-web-search
    config:
      api_key_env: TAVILY_API_KEY
      default_params:
        max_results: 3

Ensure your agent checks for key availability before calling; if missing, prompt the user. Test integrations in a sandbox environment to verify response formats.

Error Handling

Common errors include 401 (unauthorized) for invalid API keys, 429 (rate limit exceeded), and 400 (bad request for invalid parameters). To handle: Check response status code before parsing; if 401, log "API key error: Set $TAVILY_API_KEY" and retry after user input. For 429, implement exponential backoff (e.g., wait 5 seconds then retry). Validate inputs beforehand, e.g., ensure query is not empty. Example error check in code:

if response.status_code == 401:
    raise ValueError("Authentication failed; ensure $TAVILY_API_KEY is set")
elif response.status_code >= 400:
    print(f"Error: {response.json().get('error')}")

Concrete Usage Examples

  1. Fact Verification: To verify recent events, use: Set query to "2023 election results" with include_domains=["reuters.com"] and max_results=2. Then, synthesize the response to extract key facts, e.g., in code: synthesized_answer = summarize_results(results).
  2. Research Assistance: For gathering AI trends, construct a query like "advancements in LLMs" with search_depth=3. Parse results to filter for dates or sources, then use in an agent response: "Based on Tavily search, key trends include...".

Graph Relationships

  • Related to: search tools (e.g., via "search" tag)
  • Connected via: community cluster (shares nodes with other community tools)
  • Links to: AI agents (through "ai" tag for embedding)
  • Dependencies: Requires external API (Tavily), no direct graph edges to other skills unless configured.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.59%
按下载量换算392

Claude

33.37%
按下载量换算378

Cursor

20.47%
按下载量换算232

Gemini CLI

8.72%
按下载量换算99

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills