← 返回 Skills 市场
xueylee-dotcom

Adaptive Depth Research v6.0 Universal

作者 xueylee-dotcom · GitHub ↗ · v6.0.1 · MIT-0
cross-platform ⚠ suspicious
198
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install deep-research-v60
功能描述
Perform adaptive multi-source research with configurable domains, auto PDF retrieval, universal extraction, and generate layered reports for decision, valida...
使用说明 (SKILL.md)

Skill: Adaptive Depth Research v6.0 Universal

版本:6.0.0 描述:领域无关 | 配置驱动 | 数据源自适应 | 三层输出


🎯 核心设计原则

  1. 数据源自适应:arXiv/PMC 自动下 PDF,付费期刊自动切摘要模式
  2. 领域无关:提取逻辑不依赖特定术语,靠配置驱动
  3. 输出分层:执行摘要 + 验证清单 + 完整报告,各取所需
  4. 一次配置,全领域复用

📦 架构图

【配置层】
config/research-config.yaml  # 定义领域、关键指标、数据源优先级

      ↓

【检索层】(自动分流)
├─ arXiv → 下载 PDF → 全文解析 → 高可信提取
├─ PMC → 下载 PDF → 全文解析 → 高可信提取
├─ PubMed → 仅摘要 → 方向性提取 + 标注"需验证"
└─ Web → 网页抓取 → 关键结论提取

      ↓

【提取层】(通用 Prompt)
prompts/extract-universal.txt  # 不依赖领域术语

      ↓

【输出层】(三层报告)
├─ reports/executive-summary.md  # 决策者用,≤1 页
├─ reports/validation-checklist.md  # 执行者用,可操作
└─ reports/full-report.md  # 审计用,完整溯源

🚀 触发命令

# 完整研究流程
bash scripts/run-research.sh "\x3C主题>" --domain "\x3C领域>"

# 示例
bash scripts/run-research.sh "transformer efficiency" --domain "machine learning"
bash scripts/run-research.sh "telemedicine cost savings" --domain "healthcare"

📁 文件结构

skills/deep-research/
├── SKILL.md
├── config/
│   └── research-config.yaml      # 领域配置
├── prompts/
│   ├── extract-universal.txt     # 通用提取Prompt
│   ├── cluster-cards.txt         # 卡片聚类
│   └── write-brief.txt           # 主题简报
├── templates/
│   ├── executive-summary.md      # 执行摘要模板
│   ├── validation-checklist.md   # 验证清单模板
│   └── full-report.md            # 完整报告模板
└── scripts/
    ├── run-research.sh           # 完整研究流程
    ├── fetch-and-extract.sh      # 自动分流提取
    ├── extract-from-pdf.py       # PDF解析
    └── check-sourcing.sh         # 溯源验证

🔧 配置说明

修改研究领域

编辑 config/research-config.yaml:

research_domain: "your_domain_here"

key_metrics:
  performance:
    - accuracy
    - AUC
    - F1
  # 添加你的指标...

📊 三层输出说明

1. 执行摘要 (executive-summary.md)

  • 受众:决策者
  • 长度:≤1页
  • 内容
    • 核心结论(已验证 vs 待验证)
    • 可直接行动
    • 需验证后行动

2. 验证清单 (validation-checklist.md)

  • 受众:执行者
  • 格式:操作导向
  • 内容
    • 缺失指标汇总表
    • 具体验证路径
    • 通用验证方法

3. 完整报告 (full-report.md)

  • 受众:审计/存档
  • 内容
    • 方法论说明
    • 已验证结论 + 证据
    • 待验证线索
    • 战略建议(短/中/长期)
    • 完整卡片索引

🎯 执行流程

Step 1: 检索

# 自动检索 arXiv + PubMed
bash scripts/run-research.sh "\x3C主题>"

Step 2: 提取

# 自动分流提取
bash scripts/fetch-and-extract.sh \x3Csource_url>

# 或手动提取
python3 scripts/extract-from-pdf.py card-001 "\x3Cpdf_url>"

Step 3: 验证

# 溯源检查
bash scripts/check-sourcing.sh reports/full-report.md sources/

Step 4: 生成报告

三层报告自动生成在 reports/ 目录


✅ 质量门禁

  1. 数据完整度标注:high/medium/low
  2. 缺失指标清单:每个卡片明确列出
  3. 验证路径具体:可操作,非模糊建议
  4. 溯源验证:所有数据可溯源到卡片

📈 v6.0 vs 之前版本

维度 v5.x v6.0 Universal
领域 医疗特化 领域无关,配置驱动
数据源 固定PubMed 自适应分流
提取 依赖医疗术语 通用Prompt
输出 单一报告 三层输出
配置 硬编码 YAML配置

💡 用户只需

  1. 修改配置:改 research_domainkey_metrics
  2. 运行命令bash scripts/run-research.sh "\x3C主题>"
  3. 阅读摘要:5分钟了解核心结论
  4. 按清单验证:30分钟补全关键数据
  5. 推进决策:基于验证结果

🔑 核心哲学

让工具适应人,而不是人适应工具。
你专注领域知识和商业决策,工具负责广度扫描、结构化整理、诚实标注。


Skill版本:6.0.0 Universal | 最后更新:2026-03-19

安全使用建议
What to consider before installing/using: - Function vs requirements: The skill does what it says (download/search papers, parse PDFs, build reports). However the package metadata does NOT list required runtime dependencies (python3, requests, and either pdfplumber or pdftotext). Install these from known sources before running. - Network and file I/O: Scripts make outbound HTTP(S) calls to arXiv, NCBI/PMC, PubMed eutils and arbitrary URLs you pass. They download PDFs and write to /tmp and a research/ workspace. Only run in an environment where outbound network requests and temporary file writes are acceptable (use a sandbox or isolated VM for initial testing). - Input-driven fetching (SSRF risk): Because URLs and search terms may lead the tool to fetch arbitrary endpoints, do not run untrusted topics/URLs. If an attacker can control inputs, the tool could be induced to access internal services or fetch malicious content. Validate inputs and run in a network-restricted environment if you need to limit that risk. - Missing dependency and doc gaps: The skill should document Python package requirements and any rate-limit/API-key expectations for Entrez/eutils. Consider adding a requirements.txt or Dockerfile and clarifying expected runtime paths. - Hardcoded path: run-research.sh calls a check-sourcing script via an absolute path (/root/.openclaw/...), which is unusual and may fail or indicate assumptions about the host environment. Inspect and if needed, adjust the path to refer to the skill-relative script (scripts/check-sourcing.sh) before running. - Legal/compliance: The skill attempts to download PDFs and may attempt paywalled content; ensure you have rights to fetch and store copyrighted material and that you comply with terms of use for third-party services. - Practical steps before running: 1) Review scripts locally and run in an isolated sandbox/VM. 2) Install dependencies from trusted package sources (pip install requests pdfplumber or pdftotext). Prefer pinning versions. 3) Replace the absolute /root/.openclaw path with the relative skill path if necessary. 4) Limit network access if you want to prevent the skill from reaching internal endpoints. 5) If you expect heavy Entrez usage, add an NCBI API key and rate-limit handling. Overall: the skill appears coherent with its research purpose but has implementation omissions and a few brittle assumptions that warrant manual review and sandboxed testing prior to use.
功能分析
Type: OpenClaw Skill Name: deep-research-v60 Version: 6.0.1 The skill bundle is a comprehensive and well-structured 'Deep Research' tool designed to automate academic data retrieval and synthesis. It utilizes legitimate APIs (arXiv and PubMed) and standard Python libraries (requests, pdfplumber) to fetch, parse, and summarize research papers. There is no evidence of malicious intent, data exfiltration, or unauthorized persistence; the scripts follow the stated purpose of generating structured research reports and validation checklists.
能力评估
Purpose & Capability
Name/description promise (multi-source retrieval, PDF download, universal extraction, layered reports) matches the provided scripts and templates: arXiv/PubMed/PMC retrieval, PDF download + parsing, card/report generation and synthesis. No unrelated cloud credentials or services are requested.
Instruction Scope
SKILL.md and scripts instruct the agent to fetch external resources (arXiv, PubMed, PMC, arbitrary web URLs) and download PDFs. That matches purpose, but the instructions and scripts will perform arbitrary HTTP requests and write intermediate files (e.g., /tmp/{card}_extracted.json and created research directories). The scripts assume the agent can make outbound network connections and write files; they also run Python code that will follow URLs provided by topic/search results or user arguments — so if an attacker supplies or influences input URLs, the skill could fetch arbitrary endpoints (risk of SSRF or fetching sensitive internal endpoints). The SKILL.md does not explicitly warn about these network/file effects.
Install Mechanism
This is instruction-only (no install spec), so nothing will be automatically downloaded at install time. However, the code requires Python 3 and third‑party libraries (requests, pdfplumber or pdftotext) that are not declared in the skill metadata or SKILL.md. Users must manually ensure dependencies are installed; omission increases risk of user running scripts with missing/incorrect libs or installing arbitrary packages to satisfy them.
Credentials
The skill declares no required environment variables or credentials (appropriate). It nevertheless performs network calls to public APIs and writes files to disk (/tmp and skill workspace). No secrets are requested. This is proportionate to the stated purpose, but note: NCBI/Entrez requests may benefit from API keys for high-volume usage; the skill does not request or document an API key or rate-limiting behavior. Also, a hardcoded invocation in run-research.sh references /root/.openclaw/workspace/skills/deep-research/scripts/check-sourcing.sh (absolute root path), which is atypical and may fail or indicate an assumption about runtime layout.
Persistence & Privilege
always:false and default autonomous invocation settings — normal. The skill does not request permanent platform-wide privileges or attempt to modify other skills. It writes outputs under created research directories and temporary /tmp files only; no evidence of modifying other skill configs or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install deep-research-v60
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /deep-research-v60 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v6.0.1
- Added automation scripts: run-research.sh (orchestrates full research process) and fetch-and-extract.sh (handles source retrieval and extraction). - Expanded documentation: SKILL.md now includes an architecture diagram, clearer workflow steps, command examples, and detailed layer/output explanations. - Clarified file structure and configuration workflow for easier customization. - No breaking changes; existing core principles remain unchanged.
v6.0.0
Adaptive Depth Research v6.0 introduces a fully domain-agnostic and configurable research workflow with adaptive data sourcing and layered reporting. - Now domain-agnostic: supports any research field via configuration, no longer healthcare-specific. - Adaptive data sourcing: auto-downloads PDFs from arXiv/PMC, falls back to abstracts for paywalled sources. - Three report layers: generates an executive summary, validation checklist, and full audit report. - Clear data completeness and missing metrics marking: improved transparency and actionable validation paths. - Entire workflow configurable through a single YAML file; universal prompt for extraction logic.
元数据
Slug deep-research-v60
版本 6.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Adaptive Depth Research v6.0 Universal 是什么?

Perform adaptive multi-source research with configurable domains, auto PDF retrieval, universal extraction, and generate layered reports for decision, valida... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 198 次。

如何安装 Adaptive Depth Research v6.0 Universal?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install deep-research-v60」即可一键安装,无需额外配置。

Adaptive Depth Research v6.0 Universal 是免费的吗?

是的,Adaptive Depth Research v6.0 Universal 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Adaptive Depth Research v6.0 Universal 支持哪些平台?

Adaptive Depth Research v6.0 Universal 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Adaptive Depth Research v6.0 Universal?

由 xueylee-dotcom(@xueylee-dotcom)开发并维护,当前版本 v6.0.1。

💬 留言讨论