openclaw 网盘下载
OpenClaw

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

首页 > 技能库 > Web Search by Tavily

AI-optimized web search via Tavily API proxy, providing concise and relevant results with options for deep or news-focused queries.

开发与 DevOps

许可证:MIT-0

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

版本:v1.0.0

统计:⭐ 8 · 3k · 12 current installs · 13 all-time installs

8

安装量(当前) 13

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aisadocs/openclaw-aisa-web-search-tavily

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code, runtime instructions, and requested credential align with its stated purpose (proxy web search via AIsa/Tavily); nothing in the package attempts to access unrelated secrets or system resources.

目的

Name/description (AIsa Tavily web search) match the included scripts and the single required credential (AISA_API_KEY). The required binary (node) is appropriate for the provided .mjs scripts. One minor metadata mismatch: registry Owner ID in the manifest you provided differs from the ownerId inside _meta.json; this is an administrative/integrity note but does not change functional coherence.

说明范围

SKILL.md instructs running the provided node scripts, and those scripts only call AIsa endpoints and print results. The instructions do not ask the agent to read files, other env vars, or system paths beyond the declared AISA_API_KEY.

安装机制

No install spec or external downloads — the skill is instruction+local scripts that run with node. No archive downloads, no third-party package installs are performed by the skill itself.

证书

Only AISA_API_KEY is required and is used solely to authorize requests to api.aisa.one. There are no additional secrets, config paths, or unrelated credentials requested.

持久

Skill is not always-enabled, does not request elevated or persistent system privileges, and does not modify other skills or system-wide settings.

综合结论

This skill appears to do what it claims: run local Node scripts that call AIsa's Tavily proxy using the AISA_API_KEY. Before installing, confirm you trust the AIsa service (https://aisa.one) because the API key you provide grants that service access to perform searches/extractions on your behalf. The package does not appear to read other files or exfiltrate unrelated environment variables, but if you are concerned, inspect the two scripts your…

安装(复制给龙虾 AI)

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

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Web Search by Tavily」。简介:AI-optimized web search via Tavily API proxy, providing concise and relevant re…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aisadocs/openclaw-aisa-web-search-tavily/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: aisa-tavily
description: AI-optimized web search via AIsa's Tavily API proxy. Returns concise, relevant results for AI agents through AIsa's unified API gateway.
homepage: https://aisa.one
metadata: {"clawdbot":{"emoji":"🔍","requires":{"bins":["node"],"env":["AISA_API_KEY"]},"primaryEnv":"AISA_API_KEY"}}
---

# AIsa Tavily Search

AI-optimized web search using Tavily API through AIsa's unified gateway. Designed for AI agents - returns clean, relevant content.

## Search

```bash
node {baseDir}/scripts/search.mjs "query"
node {baseDir}/scripts/search.mjs "query" -n 10
node {baseDir}/scripts/search.mjs "query" --deep
node {baseDir}/scripts/search.mjs "query" --topic news
```

## Options

- `-n <count>`: Number of results (default: 5, max: 20)
- `--deep`: Use advanced search for deeper research (slower, more comprehensive)
- `--topic <topic>`: Search topic - `general` (default) or `news`
- `--days <n>`: For news topic, limit to last n days

## Extract content from URL

```bash
node {baseDir}/scripts/extract.mjs "https://example.com/article"
```

Notes:
- Needs `AISA_API_KEY` from https://marketplace.aisa.one
- Powered by AIsa's unified API gateway (https://aisa.one)
- Use `--deep` for complex research questions
- Use `--topic news` for current events