技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 1k · 5 current installs · 5 all-time installs
⭐ 0
安装量(当前) 5
🛡 VirusTotal :良性 · OpenClaw :良性
Package:0xjordansg-yolo/ai-native-websearch-via-tavily-api-returns-concise-relevant-results-for-openclaw
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's requests, files, and runtime instructions match its stated purpose (AI-optimized web search via AIsa/Tavily) and only require a single API key and Node to operate.
目的
Name/description, required binaries (node), and required env var (AISA_API_KEY) are coherent with a web-search gateway proxy. Minor metadata inconsistency: the _meta.json ownerId differs slightly from the registry Owner ID shown in the package metadata — likely benign but worth verifying the publisher if provenance matters.
说明范围
SKILL.md instructs running the included Node scripts (search.mjs and extract.mjs) with clearly scoped arguments. The instructions reference only AISA_API_KEY and the included scripts, and do not instruct reading unrelated files, credentials, or system state.
安装机制
No install spec; this is primarily instruction-only plus small included scripts. No packages or external download/install steps are performed by the skill itself, so nothing is written to disk beyond the provided files.
证书
Only AISA_API_KEY is required (declared as primary credential). The scripts use that key to call https://api.aisa.one endpoints; no other secrets, config paths, or unrelated credentials are requested or accessed.
持久
always is false and disable-model-invocation is false (normal). The skill does not request persistent system privileges or modify other skills' configs.
综合结论
This skill appears to do what it claims: the included scripts POST your query/URLs to AIsa's Tavily endpoints (https://api.aisa.one). Before installing, consider: (1) Any queries or URLs you send will be transmitted to a third-party API — avoid sending PII or sensitive tokens. (2) Use a least-privilege/monitored API key from AIsa if possible and review its usage logs and rate limits. (3) Verify the publisher/homepage (aisa.one) and the owner i…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Web Search Tavily」。简介:Performs AI-optimized web searches via Tavily API, returning concise and releva…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/0xjordansg-yolo/ai-native-websearch-via-tavily-api-returns-concise-relevant-results-for-openclaw/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
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