用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/camplight/orgops --skill tavily命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | tavily |
| description | Install and use Tavily CLI (tvly) for web search/extract/crawl. Uses secret/env TAVILY_API_KEY. |
This skill provides a portable way to ensure the Tavily CLI (tvly) is installed on the current runner host and to run common Tavily commands.
tavily with key TAVILY_API_KEY.Recommended:
node --import tsx skills/secrets/assets/set.ts -- tavily TAVILY_API_KEY <value>
The scripts in this skill will:
TAVILY_API_KEY from environment.--api-key to pass explicitly (useful for local testing).Use the installer recommended by Tavily docs:
curl -fsSL https://cli.tavily.com/install.sh | bash
Notes:
tvly is typically installed under:
~/Library/Python/<pyver>/bin/tvlyPATH for the subprocess.node --import tsx skills/tavily/assets/ensure.ts
node --import tsx skills/tavily/assets/search.ts -- --query "Cursor agent headless CLI" --max-results 5 --depth advanced --json
node --import tsx skills/tavily/assets/extract.ts -- --url "https://example.com" --json
node --import tsx skills/tavily/assets/crawl.ts -- --url "https://example.com" --max-depth 2 --json
--json, scripts print JSON to stdout (best for piping into other tools/agents).