Agent skill · Backend & API

tavily-search-free

Use Tavily Search API for optimized, real-time web search results for RAG. A pre-configured, cost-effective search tool.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill tavily-search-free --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/ai-llm/tavily-search-free/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Tavily Search Skill This skill utilizes the Tavily Search API, providing clean, real-time web search results optimized for LLMs and RAG pipelines. ## 执行环境 | 路径类型 | 路径 | 基准目录 | |---------|------|---------| | **技能目录** | `~/.pi/agent/skills/tavily-search-free/` | 固定位置 | | **主脚本** | `~/.pi/agent/skills/tavily-search-free/scripts/tavily_search.py` | 技能目录 | | **使用方式** | `pi` 自动调用或手动执行 | 无需手动执行 | ## 安装 ```bash cd ~/.pi/agent/skills/tavily-search-free pip install tavily-python python-dotenv ``` ## API Key 配置 需要 `TAVILY_API_KEY`。密钥已在 `.env` 中预配置。 ## 使用方式 ### 方式 1:通过 pi 自动调用(推荐) `pi` 会自动调用此技能进行网络搜索,无需手动执行命令。 ### 方式 2:手动执行 ```bash # 从技能目录执行 cd ~/.pi/agent/skills/tavily-search-free python3 scripts/tavily_search.py --query "<query>" [--max-results <N>] [--search-depth <basic|advanced>] # 或使用完整路径 cd /path/to/your/project python3 ~/.pi/agent/skily-search-free/scripts/tavily_search.py --query "<query>" ``` ## 参数说明 | 参数 | 必填 | 默认值 | 说明 | |-----|------|--------|------| | `--query` | 是 | - | 搜索查询内容 | | `--search-depth` | 否 | basic | 搜索深度:`basic` 或 `advanced`(更高质量但更慢) | | `--max-results` | 否 | 10 | 最大返回结果数量 | ## 示例 ```bash # 基本搜索 python3 ~/.pi/agent/skilly-search-free/scripts/tavily_search.py --quer

What's inside
Steps it walks through
  1. 执行环境
  2. 安装
  3. API Key 配置
  4. 使用方式
  5. 方式 1:通过 pi 自动调用(推荐)
  6. 方式 2:手动执行
  7. 参数说明
  8. 示例
  9. 输出格式
  10. 路径说明
Ships with 1 file
  • metadata.json
Commands it runs
cd ~/.pi/agent/skills/tavily-search-free
pip install tavily-python python-dotenv
python3 scripts/tavily_search.py --query "<query>" [--max-results <N>] [--search-depth <basic|advanced>]
cd /path/to/your/project
python3 ~/.pi/agent/skily-search-free/scripts/tavily_search.py --query "<query>"
python3 ~/.pi/agent/skilly-search-free/scripts/tavily_search.py --query "latest AI trends"
python3 ~/.pi/agent/skilly-search-free/scripts/tavily_search.py --query "autonomous research agents comparison" --search-depth advanced
More from claude-skill-registry
All skills →
About this skill
What does the tavily-search-free skill do?

Use Tavily Search API for optimized, real-time web search results for RAG. A pre-configured, cost-effective search tool.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill tavily-search-free --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going