Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

research-dive研究潜水

Agent Skill

research-dive 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,260

周安装

183

GitHub Stars

公开资料未说明

下载量

1,493
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:research-dive(研究潜水)
来源仓库:https://github.com/wyatt88/research-dive
安装命令:
openclaw skills install research-dive
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install research-dive

简介

增强版深网研究工具,支持多轮搜索与交叉验证。

  • 生成带引文的报告,提升结论可信度。
  • 适用于需要深度挖掘隐藏信息的战略分析任务。
  • 多次迭代搜索可能消耗较多 token,注意成本控制。
  • 输出结构清晰,便于导出与分享。research-dive 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
deep-research
description
>-
metadata
openclaw
emoji
🔬

Deep Research 🔬

Multi-round web research with question decomposition, cross-verification, and structured reports with numbered citations.

Architecture

Three-step agent-assisted pipeline. No external API keys needed — uses OpenClaw built-in web_search and web_fetch tools.

┌─────────┐     ┌──────────┐     ┌──────────┐
│  plan    │ ──▶ │ analyze  │ ──▶ │ report   │
│ (脚本)   │     │ (脚本)    │     │ (脚本)    │
└────┬─────┘     └────┬─────┘     └────┬─────┘
     │ search_        │ fetch_         │
     │ commands       │ commands       │ report
     ▼                ▼                ▼ skeleton
  Agent 执行       Agent 执行       Agent 填充
  web_search      web_fetch        分析内容

Script path: scripts/research.py (relative to this skill directory)

Workflow

Step 1: Plan — 生成搜索指令

python3 scripts/research.py plan "topic" --depth standard

Output JSON contains search_commands — a list of web_search tool calls. Agent executes each one and collects results into a JSON array:

[
  {"query": "...", "results": [{"title": "...", "url": "...", "snippet": "..."}, ...]},
  ...
]

Save to a temp file (e.g., /tmp/search-results.json).

Step 2: Analyze — 去重排序 + 生成 fetch 指令

python3 scripts/research.py analyze /tmp/search-results.json --top 8

Output JSON contains:

  • selected_sources: Deduplicated, tier-sorted source list
  • fetch_commands: web_fetch tool calls for top URLs
  • summary: Human-readable source overview

Agent executes each web_fetch and collects results into a JSON array:

[
  {"url": "...", "text": "extracted content...", "length": 12345},
  ...
]

Save to /tmp/fetch-results.json.

Step 3: Report — 生成报告骨架

python3 scripts/research.py report \
  --topic "topic" \
  --search /tmp/search-analysis.json \
  --fetch /tmp/fetch-results.json \
  --depth standard --save

Output: Markdown report with {FILL: ...} placeholders. Agent reads the Source Content section and fills in analysis.

Depth Levels

Auto-detect from query complexity, or user specifies.

Quick ⚡ (≤30s)

  • --depth quick → 1 sub-question, 2 fetches
  • Agent may skip the script entirely for trivial queries
  • Output: IM message only (≤2000 chars)

Standard 🔍 (2-3 min)

  • --depth standard → 4-5 sub-questions, 8 fetches
  • Full 3-step pipeline
  • Output: IM summary + full report saved to research/

Deep 🔬 (5-10 min)

  • --depth deep → 7 sub-questions (includes contrarian), 15 fetches
  • Spawn sub-agents for parallel search:
  sessions_spawn:
    mode: run
    task: |
      Execute these web_search calls: {subset of search_commands}
      Return results as JSON array.
  • Main agent runs analyze + report after collecting all results
  • Output: IM summary + comprehensive report (2000-5000 words)

User overrides: "快速搜一下" → Quick, "详细研究" → Standard, "深度调研" → Deep

Source Authority Tiers

Script auto-classifies:

  • Tier 1 🟢 Official docs, .gov/.edu, arxiv, RFCs
  • Tier 2 🟡 Major tech blogs, Stack Overflow, vendor blogs
  • Tier 3 🟠 Personal blogs, Medium, forum posts
  • Tier 4 🔴 AI-generated, marketing landing pages

Cross-Verification (Standard & Deep)

After report skeleton is generated, agent verifies:

  • Source diversity: ≥3 independent sources?
  • Recency: Prefer last 12 months; flag outdated
  • Conflicts: When sources disagree, present both with tier labels
  • If gaps found → run additional web_search + web_fetch → append

Report Output

IM Summary

🔬 Research: {topic}

{2-4 paragraph summary}

**Key takeaways:**
- Finding 1 [1][2]
- Finding 2 [3]

📊 Confidence: {🟢/🟡/🔴}
📄 Full report: research/{slug}-{date}.md

Full Report

Saved to research/{topic-slug}-{YYYYMMDD}.md with:

  • Executive Summary
  • Key Findings (per sub-topic)
  • Conflicting Information
  • Confidence Assessment table
  • Numbered Sources with tier labels
  • Research Log

Progress Feedback

  • Quick: No progress messages
  • Standard: One mid-point: "🔍 已搜索 N 轮,找到 M 来源,正在抓取..."
  • Deep: Per sub-agent updates

Edge Cases

  • Too broad: Ask user to narrow; suggest 3-4 angles
  • No results: Try EN↔CN keywords, then report honestly
  • Rate limits (429): Wait 5s + retry; fallback to web_fetch on known URLs
  • Large topics: Summarize each round to ≤500 chars before next

Language

  • Match user's language for report
  • Auto-add cross-language search (EN topic → add 1 CN query; CN → add 1 EN)
  • Chinese: 「」直角引号、——全破折号、:全角冒号

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.1%
按下载量换算1,106

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills