skills/tavily-search-free/SKILL.md
Web search, online search, real-time search, internet search, Google alternative, Bing alternative, DuckDuckGo alternative, search the web, lookup online, find information, research,查询,搜索,搜索结果,网页搜索,联网搜索,实时搜索,网络查询,资料查找,信息检索,最新资讯,新闻搜索, Tavily Search API for optimized, real-time web search results for RAG. A pre-configured, cost-effective search tool.
npx skillsauth add dwsy/agent tavily-search-freeInstall 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.
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 自动调用或手动执行 | 无需手动执行 |
cd ~/.pi/agent/skills/tavily-search-free
pip install tavily-python python-dotenv
需要 TAVILY_API_KEY。密钥已在 .env 中预配置。
pi 会自动调用此技能进行网络搜索,无需手动执行命令。
# 从技能目录执行
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 | 最大返回结果数量 |
# 基本搜索
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
脚本输出 JSON 格式,包含 results 数组,每个结果包含:
url: 结果链接title: 标题content: 内容摘要~/.pi/agent/skills/tavily-search-free/scripts/tavily_search.py~/.pi/agent/skills/tavily-search-free/.envpip installtesting
Best practices for writing and maintaining high-quality role memories.
documentation
工作文档枢纽,强制执行 SSOT(Single Source of Truth)原则,管理 `docs/` 目录下的架构决策、设计文档、Issues(任务规划)、PRs(变更记录)。支持 GitHub 协作开发模式。
tools
Allows to interact with web pages by performing actions such as clicking buttons, filling out forms, and navigating links. It works by remote controlling Google Chrome or Chromium browsers using the Chrome DevTools Protocol (CDP). When Claude needs to browse the web, it can use this skill to do so.
development
Vercel 设计指南 - 构建高质量 Web 应用的最佳实践,包含现代 UI/UX 原则、性能优化和无障碍标准。