技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 202 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:angelandpeiqi/desearch-skill
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill mostly does what it says (submit async research tasks to Zeelin and save results), but there are multiple mismatches between its metadata/instructions and the code — most notably a hidden requirement for an API key, inconsistent docs about scheduling/saving, and a hard-coded notification target that could cause data to be sent off to a third party.
目的
Name/description state it calls Zeelin Deep Research API — the code does call desearch.zeelin.cn which matches the purpose. However the skill metadata declares no required environment variables/credentials while every script expects an API key (ZEELIN_API_KEY or ~/.openclaw/zeelin-config.json). That mismatch between declared requirements and actual runtime needs is incoherent and could surprise users. Also the scripts use the OpenClaw 'cron' C…
说明范围
SKILL.md instructs asynchronous submission and periodic checks — consistent with the code. But there are contradictions: SKILL.md says it will check every 30s and cron every 2 minutes / every 1 minute in different places; it claims results are saved to /tmp/ while code writes to the skill's reports directory (~/.openclaw/.../reports). The SKILL.md also promises automatic 'active' notifications; the code implements this by creating an openclaw …
安装机制
No remote install/downloads or extract operations are present; source is included as local scripts and INSTALL.md describes manual copy. There is no install spec that fetches arbitrary code from external URLs. From an installation perspective this is low risk — but because code is shipped with the skill, users should still inspect it before running.
证书
Registry metadata lists no required env vars or primary credential, but the code requires an API key (reads ZEELIN_API_KEY or ~/.openclaw/zeelin-config.json). That is a substantive credential requirement that wasn't declared. Additionally, the add_cron_job call hard-codes a notification channel ('dingtalk') and a recipient ID, which is unrelated to the declared purpose and could result in automatic outbound notifications (and potentially data …
持久
The skill will create a persistent cron job through the openclaw CLI (openclaw cron add) to perform periodic checks and send notifications. It also writes status, PID, logs, report files, and may remove its cron job later. 'always' is false, and autonomous invocation is default (not grounds for flagging alone), but creation of scheduled jobs and hard-coded outbound notification targets increases persistence and blast radius — especially given …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「desearch-skill」。简介:调用Zeelin Deep Research API进行深度研究任务。完全异步处理:提交任务后立即返回,后台进程自动确认大纲并定时检查任务状态,任务完成后自动…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/angelandpeiqi/desearch-skill/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: zeelin-deep-research
description: 调用Zeelin Deep Research API进行深度研究任务。完全异步处理:提交任务后立即返回,后台进程自动确认大纲并定时检查任务状态,任务完成后自动保存md文件。自动配置定时通知(每2分钟检查),任务完成后主动通知用户。使用前必须先询问用户思考模式和搜索范围。
---
# Zeelin Deep Research Skill
本skill用于调用Zeelin Deep Research API执行深度研究任务,采用完全异步处理模式。
## ⚠️ 重要:使用前必须先询问用户
当用户要求进行研究任务时,**必须先询问以下信息**:
1. **思考模式**(必选):
| 模式 | 说明 | 适用场景 |
|------|------|----------|
| smart | 普通模式 | 快速简单的问题 |
| deep | 深度模式 (~5000字) | 论文、竞品调研、中度报告 |
| major | 专家模式 (~10000+字) | 深度研究报告 |
2. **搜索范围**(必选):
| 范围 | 说明 |
|------|------|
| web | 全网搜索 |
| academic | 学术搜索 |
| selected | 精选 |
3. **研究主题**(必选):用户想要研究的具体问题
## 配置 API Key
### 方式1:命令行设置(推荐)
```bash
python3 scripts/async_runner.py --set-key "YOUR_API_KEY"
```
### 方式2:配置文件
```bash
echo '{"api_key": "YOUR_API_KEY"}' > ~/.openclaw/zeelin-config.json
```
获取 API Key:https://desearch.zeelin.cn
## 使用方法
### 1. 检查 API Key
```bash
python3 scripts/async_runner.py --check-key
```
### 2. 提交任务
```bash
cd ~/.openclaw/workspace/skills/zeelin-deep-research
python3 scripts/async_runner.py -q "研究主题" -t deep -sr web
```
## 功能特性
1. **异步提交**:提交任务后立即返回,不阻塞
2. **自动确认大纲**:后台进程自动调用 confirmOutline
3. **定时检查**:每30秒检查一次任务状态
4. **自动通知**:cron 定时(每2分钟)检查任务完成状态,任务完成后主动通知用户
5. **自动保存**:完成后自动保存 md 文件到 /tmp/
## 结果文件
任务完成后,md 文件自动保存到:
```
~/.openclaw/workspace/skills/zeelin-deep-research/reports/zeelin_主题_时间戳.md
```
## Cron 定时器
- **间隔**:每1分钟
- **功能**:检查任务完成状态
- **通知**:任务完成后主动发送消息给用户