openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > tavily-research-pro

Professional AI-powered search and deep research engine. Features multi-dimensional data aggregation, semantic analysis, and automated report generation for...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.1.1

统计:⭐ 0 · 0 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:airoom-ai/tavily-research-pro

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code, instructions, and requested credential (TAVILY_API_KEY) align with its stated purpose of calling Tavily's API for search/extract/reporting; nothing in the bundle indicates unrelated or unexplained access.

目的

Name and description match the behavior: the scripts call https://api.tavily.com endpoints to perform search, extract, report, and sentiment tasks. Required binary (node) and required env var (TAVILY_API_KEY) are appropriate and expected for this functionality.

说明范围

SKILL.md explicitly documents that queries and provided target URLs are sent to api.tavily.com. The included scripts only read process.argv and the TAVILY_API_KEY env var, perform fetch requests to api.tavily.com, and print results; they do not read other files, system credentials, or send data to other endpoints. Report.mjs includes a basic URL validity check to reduce SSRF risk.

安装机制

No install spec is present and the skill is instruction/code-only. The code is bundled with the skill (no external downloads or extract steps), so there is no additional install-time network fetch. Requiring node on PATH is reasonable.

证书

Only TAVILY_API_KEY is required (declared as primaryEnv). No unrelated credentials, secrets, or config paths are requested. The scripts use only that env var; there is no evidence they access other environment variables or system secrets.

持久

The skill does not request permanent/always inclusion (always:false). It does not modify other skills or system-wide settings, and it does not attempt to persist credentials; SKILL.md claims the API key is read from env and not stored, which matches the code.

scripts/extract.mjs:8

Environment variable access combined with network send.

scripts/report.mjs:11

Environment variable access combined with network send.

scripts/search.mjs:26

Environment variable access combined with network send.

scripts/sentiment.mjs:7

Environment variable access combined with network send.

综合结论

This skill appears to do what it says: it sends search queries and provided URLs to Tavily's API and prints structured results. Before installing: (1) Confirm you trust api.tavily.com and review Tavily's privacy/terms — anything you send (queries or target URLs) will be transmitted to that external service. (2) Only provide an API key with appropriate, limited permissions; avoid using a high-privilege or long-lived secret if possible. (3) Don’…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「tavily-research-pro」。简介:Professional AI-powered search and deep research engine. Features multi-dimensi…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/airoom-ai/tavily-research-pro/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: tavily-research-pro
description: Professional AI-powered search and deep research engine. Features multi-dimensional data aggregation, semantic analysis, and automated report generation for structured information gathering.
homepage: https://tavily.com
metadata: {"clawdbot":{"emoji":"📊","requires":{"bins":["node"],"env":["TAVILY_API_KEY"]},"primaryEnv":"TAVILY_API_KEY"}}
---

# Tavily Research Pro (科研洞察引擎)

Professional-grade tool designed for researchers and analysts to gather high-quality, structured information from the web.

## 🛡️ Privacy & Data Security (隐私与安全说明)

To comply with security audits and ensure data transparency, please note:
* **Data Transmission**: This skill transmits user-provided search queries and specified target URLs to `api.tavily.com` for processing and information extraction.
* **Credential Protection**: The `TAVILY_API_KEY` is accessed exclusively from your local environment variables and is never stored, logged, or shared with any third party other than the official Tavily API endpoint.
* **Compliance**: This tool is intended for searching and analyzing publicly available web data for research purposes only.

---

## 核心功能 (Core Features)

### 1. 结构化搜索 (Structured Search)
Deep research mode for high-accuracy information retrieval.
```bash
node {baseDir}/scripts/search.mjs "Quantum computing commercialization" --deep
```

## 2. 公开信息语义分析 (Public Sentiment Analysis) 🆕
分析当前互联网对某个话题的“体感温度”。
```bash
node {baseDir}/scripts/sentiment.mjs "Apple Vision Pro"
```

## 3. 自动化研究简报 (Automated Research Report) 🆕
将长网页转化为结构化的情报简报,自动识别关键角色和影响。
```bash
node {baseDir}/scripts/report.mjs "[https://example.com/tech-news](https://example.com/tech-news)"
```

## 参数说明 (Options)
-n <count>: Number of results (default 5).

--deep: Enable advanced deep research mode.

--topic <news|general>: Specify search category.

--days <n>: Limit news search to the last n days.

Environment Requirement: A valid TAVILY_API_KEY must be configured in your environment.