技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.1.0
统计:⭐ 0 · 0 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:airoom-ai/tavily-search-up
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's files, instructions, and required credential (TAVILY_API_KEY) align with its claimed purpose (web search, content extraction, sentiment/vibe analysis) and there are no obvious incoherent or disproportionate requests.
目的
Name/description (Tavily search + insight) match the required binary (node) and the single credential TAVILY_API_KEY. The scripts call api.tavily.com endpoints (/search and /extract), which is consistent with a search/extract/vibe service.
说明范围
SKILL.md instructs running the included Node scripts and explicitly requires TAVILY_API_KEY. The scripts only read CLI args and the declared env var, then POST queries/URLs to api.tavily.com and print results. They do not access unrelated files, other env vars, or external endpoints beyond the Tavily API.
安装机制
There is no install spec (instruction-only install), and required runtime is just Node. Code files are shipped with the skill and executed via node; nothing is downloaded from external/untrusted URLs or written to unexpected system paths.
证书
Only one env var is required (TAVILY_API_KEY), and it is actually used by the scripts to authenticate requests to api.tavily.com. No additional secrets or unrelated credentials are requested.
持久
always is false (not force-included) and the skill does not modify system or other-skill configuration. It runs on demand and doesn't request persistent elevated privileges.
scripts/brief.mjs:9
Environment variable access combined with network send.
scripts/extract.mjs:18
Environment variable access combined with network send.
scripts/search.mjs:42
Environment variable access combined with network send.
scripts/vibe.mjs:9
Environment variable access combined with network send.
综合结论
This skill appears coherent: it runs included Node scripts that send queries/URLs to https://api.tavily.com using the TAVILY_API_KEY you provide. Before installing, confirm you trust tavily.com and are willing to send search queries and page URLs (and any scraped page content) to that external service. Note the skill ships runnable JavaScript (no installer), so it requires a Node runtime (modern Node with global fetch will be needed). A minor …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「tavily-search-up」。简介:增强型 AI 搜索与深度洞察引擎。除了搜索,还能进行情绪分析和情报汇总。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/airoom-ai/tavily-search-up/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: tavily-insight
description: 增强型 AI 搜索与深度洞察引擎。除了搜索,还能进行情绪分析和情报汇总。
homepage: https://tavily.com
metadata: {"clawdbot":{"emoji":"🧠","requires":{"bins":["node"],"env":["TAVILY_API_KEY"]},"primaryEnv":"TAVILY_API_KEY"}}
---
# Tavily Insight Engine (洞察引擎)
这是对标准 Tavily 搜索的创意升级,专为需要“深度理解”而不仅仅是“数据搬运”的 AI 代理设计。
## 1. 基础搜索 (Search)
```bash
node {baseDir}/scripts/search.mjs "量子计算的商业化进展" --deep
```
## 2. 互联网情绪风向标 (Vibe Check) 🆕
分析当前互联网对某个话题的“体感温度”。
```bash
node {baseDir}/scripts/vibe.mjs "Apple Vision Pro"
```
## 3. 任务简报 (Mission Brief) 🆕
将长网页转化为结构化的情报简报,自动识别关键角色和影响。
```bash
node {baseDir}/scripts/brief.mjs "https://example.com/tech-news"
```
## 选项说明
- `-n <count>`: 结果数量 (默认 5)
- `--deep`: 开启深度研究模式
- `--topic <news|general>`: 搜索类别
- `--days <n>`: 搜索最近 n 天的新闻
> **注意**: 必须在环境变量中配置 `TAVILY_API_KEY`。