Claude-Code-Deep-Research-main

作者 liangdabiao已验证

利用claude code agent框架一步一步实现deep research!很强大很简单的skills。我一步一步介绍实现deep research,因为deep research就是agent框架第一应用,对比一下各个框架实现这个deep research,就知道哪个框架才是真厉害。

277
Stars
45
Forks
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/liangdabiao/Claude-Code-Deep-Research-main

快速入门

使用 Claude-Code-Deep-Research-main 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Claude Code Deep Research Agent

A sophisticated multi-agent research framework that implements OpenAI's Deep Research and Google Gemini's Deep Research capabilities using Claude Code's native features.

Overview

This project leverages Claude Code's Skills and Commands system to conduct comprehensive, citation-backed research through:

  • Graph of Thoughts (GoT) Framework - Intelligent research path management with graph-based reasoning
  • 7-Phase Deep Research Process - Structured methodology for quality research
  • Multi-Agent Architecture - Parallel research agents with specialized roles
  • Citation Validation System - A-E source quality ratings with chain-of-verification

Quick Start

Prerequisites

  • Claude Code CLI installed
  • Active Claude Code account with API access

Installation

  1. Clone this repository:
git clone <repository-url>
cd Claude-Code-Deep-Research-main
  1. The Skills and Commands are already configured in .claude/ directory

Basic Usage

The simplest way to conduct deep research:

/deep-research [your research topic]

Example:

/deep-research AI applications in clinical diagnosis

This single command will:

  1. Ask clarifying questions to refine your research needs
  2. Create a structured research plan
  3. Deploy multiple parallel research agents
  4. Synthesize findings into a comprehensive report
  5. Validate all citations
  6. Output results to RESEARCH/[topic]/ directory

Advanced Usage

Step-by-Step Research Workflow

For more control over the research process:

1. Refine Your Question

/refine-question Should I use WebAssembly for my project?

The Question Refiner will ask 5-6 clarifying questions about:

  • Specific focus areas
  • Output format requirements
  • Geographic and time scope
  • Target audience
  • Special requirements

2. Plan Research (Optional)

/plan-research [structured prompt from step 1]

Creates a detailed execution plan showing:

  • How the topic breaks into subtopics
  • Which agents will be deployed
  • Expected timeline

3. Execute Research

/deep-research [your topic]

4. Synthesize Findings (If needed)

/synthesize-findings RESEARCH/[topic]/research_notes/

5. Validate Citations

/validate-citations RESEARCH/[topic]/full_report.md

Project Structure

claude-code-deep-research/
├── .claude/
│   ├── skills/                    # Research skills
│   │   ├── question-refiner/      # Question refinement
│   │   ├── research-executor/     # Main research execution
│   │   ├── got-controller/        # Graph of Thoughts controller
│   │   ├── citation-validator/    # Citation validation
│   │   └── synthesizer/           # Research synthesis
│   ├── commands/                  # User commands
│   │   ├── deep-research.md       # Main research command
│   │   ├── refine-question.md     # Question refinement
│   │   ├── plan-research.md       # Research planning
│   │   ├── synthesize-findings.md # Findings synthesis
│   │   └── validate-citations.md  # Citation validation
│   └── settings.local.json        # Tool permissions
├── RESEARCH/                      # Research outputs
│   └── [topic_name]/
│       ├── README.md
│       ├── executive_summary.md
│       ├── full_report.md
│       ├── data/
│       ├── visuals/
│       ├── sources/
│       ├── research_notes/
│       └── appendices/
├── CLAUDE.md                      # Quick reference for Claude Code
├── CLAUDE2.md                     # Graph of Thoughts guide
├── PROJECT_UNDERSTANDING.md       # Architecture documentation
├── IMPLEMENTATION_GUIDE.md        # User guide with examples
└── README.md                      # This file

Research Output Structure

Each research project creates a structured output:

RESEARCH/[topic_name]/
├── README.md                    # Overview and navigation
├── executive_summary.md         # 1-2 page key findings
├── full_report.md               # Complete analysis (20-50 pages)
├── data/
│   └── statistics.md            # Key numbers and facts
├── visuals/
│   └── descriptions.md          # Chart/graph descriptions
├── sources/
│   ├── bibliography.md          # Complete citations
│   └── source_quality_table.md  # A-E quality ratings
├── research_notes/
│   └── agent_findings_summary.md # Raw agent outputs
└── appendices/
    ├── methodology.md           # Research methods
    └── limitations.md           # Unknowns and gaps

Citation Requirements

Every factual claim includes:

  1. Author/Organization name
  2. Publication date
  3. Source title
  4. Direct URL/DOI
  5. Page numbers (if applicable)

Source Quality Ratings:

  • A: Peer-reviewed RCTs, systematic reviews, meta-analyses
  • B: Cohort studies, clinical guidelines, reputable analysts
  • C: Expert opinion, case reports, mechanistic studies
  • D: Preprints, preliminary research, blogs
  • E: Anecdotal, theoretical, speculative

Graph of Thoughts Framework

The GoT framework manages research as a graph with these operations:

OperationPurposeExample
Generate(k)Spawn k parallel research pathsGenerate(4) from root → 4 research paths
Aggregate(k)Merge k findings into synthesisAggregate(3) → 1 comprehensive report
Refine(1)Improve existing findingRefine(node_5) → Enhanced quality
ScoreRate quality (0-10)Score based on citations, accuracy
KeepBestN(n)Prune to top n nodesKeepBestN(3) → Retain best 3

Research Patterns:

  • Balanced: Generate(4-5) → Score best → Deepen top → Aggregate
  • Depth-first: Generate(3) → Take best → Generate(3) from it
  • Breadth-first: Generate(8) → KeepBestN(5) → Generate(2) each

Documentation

DocumentDescription
CLAUDE.mdQuick reference for Claude Code instances
CLAUDE2.mdComplete Graph of Thoughts implementation
PROJECT_UNDERSTANDING.mdDetailed architecture and design
IMPLEMENTATION_GUIDE.mdUser guide with examples and workflows

Commands Reference

CommandUsageDescription
/deep-research/deep-research [topic]Execute complete research workflow
/refine-question/refine-question [question]Refine into structured prompt
/plan-research/plan-research [prompt]Create execution plan
/synthesize-findings/synthesize-findings [dir]Combine research outputs
/validate-citations/validate-citations [file]Verify citation quality

Examples

Market Research

/deep-research AI in healthcare market, focus on clinical diagnosis,
             comprehensive report, global scope, 2022-2024 data,
             audience is healthcare executives

Technical Assessment

/deep-research WebAssembly vs JavaScript performance benchmarks

Academic Literature Review

/deep-research Transformer architectures in AI,
             peer-reviewed sources only, 2017-present,
             comprehensive literature review

Features

  • Multi-agent parallel research (3-8 agents simultaneously)
  • Graph of Thoughts optimization for quality
  • Automatic citation validation
  • Source quality ratings (A-E scale)
  • Chain-of-verification to prevent hallucinations
  • Structured output with executive summaries
  • Cross-source triangulation

Performance

  • Quick research (narrow topic): 10-15 minutes
  • Standard research (moderate scope): 20-30 minutes
  • Comprehensive research (broad scope): 30-60 minutes
  • Academic literature review: 45-90 minutes

Contributing

Contributions are welcome! To add new skills or improvements:

  1. Follow the skill structure in .claude/skills/
  2. Include SKILL.md, instructions.md, examples.md
  3. Test with diverse research topics
  4. Update documentation

License

This project is provided as-is for educational and research purposes.

Acknowledgments

  • Graph of Thoughts framework inspired by SPCL, ETH Zürich
  • Built with Claude Code
  • 7-Phase Research Process based on deep research best practices

For detailed usage instructions, see IMPLEMENTATION_GUIDE.md

For architecture details, see PROJECT_UNDERSTANDING.md

常见问题

What is Claude-Code-Deep-Research-main?

Claude-Code-Deep-Research-main is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by liangdabiao. 利用claude code agent框架一步一步实现deep research!很强大很简单的skills。我一步一步介绍实现deep research,因为deep research就是agent框架第一应用,对比一下各个框架实现这个deep research,就知道哪个框架才是真厉害。. It has 277 GitHub stars.

Is Claude-Code-Deep-Research-main safe to use?

Yes. Claude-Code-Deep-Research-main passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install Claude-Code-Deep-Research-main?

Clone the repository with "git clone https://github.com/liangdabiao/Claude-Code-Deep-Research-main" and add it to your Claude Code skills directory (see the Installation section above).

Are there alternatives to Claude-Code-Deep-Research-main?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Claude-Code-Deep-Research-main against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情