Deep-Research-skills

作者 Weizhena已验证

Structured deep research skill for Claude Code/Open Code/Codex with human-in-the-loop control

2,001
Stars
165
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

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

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

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

快速入门

使用 Deep-Research-skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

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

README.md

Deep Research Skill for Claude Code / OpenCode / Codex

English | 中文

If you find this project helpful, please give it a star! :star:

Inspired by RhinoInsight: Improving Deep Research through Control Mechanisms for Model Behavior and Context

A structured research workflow skill for Claude Code, OpenCode, and Codex, supporting two-phase research: outline generation (extensible) and deep investigation. Human-in-the-loop design ensures precise control at every stage.

Deep Research Skills Workflow

Use Cases

  • Academic Research: Paper surveys, benchmark reviews, literature analysis
  • Technical Research: Technology comparison, framework evaluation, tool selection
  • Market Research: Competitor analysis, industry trends, product comparison
  • Due Diligence: Company research, investment analysis, risk assessment

Installation

git clone https://github.com/Weizhena/deep-research-skills.git
cd deep-research-skills

Claude Code

# English version
cp -r skills/research-en/* ~/.claude/skills/

# Chinese version
cp -r skills/research-zh/* ~/.claude/skills/

# Required: Install agent and modules
cp agents/web-search-agent.md ~/.claude/agents/
cp -r agents/web-search-modules ~/.claude/agents/

# Required: Install Python dependency
pip install pyyaml

OpenCode (default: gpt-5.4)

# Skills (same as Claude Code)
cp -r skills/research-en/* ~/.claude/skills/   # or research-zh for Chinese

# Required: Enable web search for current shell
export OPENCODE_ENABLE_EXA=1

# Optional: make it permanent
echo 'export OPENCODE_ENABLE_EXA=1' >> ~/.bashrc
source ~/.bashrc

# Required: Install agent and modules
cp agents/web-search-opencode.md ~/.config/opencode/agents/web-search.md
cp -r agents/web-search-modules ~/.config/opencode/agents/

# Required: Install Python dependency
pip install pyyaml

Important: In OpenCode, ANY model's websearch requires OPENCODE_ENABLE_EXA=1. A plain export only affects the current shell; writing it to ~/.bashrc makes it persistent. Without it, you only get web fetch, which is weaker for the deep research phase.

Codex

# English version
mkdir -p ~/.codex/skills ~/.codex/agents
cp -r skills/research-codex-en/* ~/.codex/skills/

# Chinese version
mkdir -p ~/.codex/skills ~/.codex/agents
cp -r skills/research-codex-zh/* ~/.codex/skills/

# Required: Install web researcher agent and modules
cp agents-codex/web-researcher.toml ~/.codex/agents/
cp -r agents-codex/web-search-modules ~/.codex/agents/

# Required: Install Python dependency
pip install pyyaml

Add or update ~/.codex/config.toml using either method below:

Option A: Automatic script

cd deep-research-skills
bash scripts/install-codex.sh

Option B: Manual edit

suppress_unstable_features_warning = true

[features]
multi_agent = true
default_mode_request_user_input = true

[agents.web_researcher]
description = "Use this agent when you need to research information on the internet, particularly for debugging issues, finding solutions to technical problems, or gathering comprehensive information from multiple sources. This agent excels at finding relevant discussions. Use when you need creative search strategies, thorough investigation, or compilation of findings from multiple sources."
config_file = "agents/web-researcher.toml"

Commands

Claude Code 2.1.0+: Direct /skill-name trigger is now supported!

Older versions: Use run /skill-name format instead.

Codex: You can trigger these skills from /skills -> List Skills, or ask naturally, for example Use the research skill to build an outline for AI Agent Demo 2025.

Command (2.1.0+)Description
/researchGenerate research outline with items and fields
/research-add-itemsAdd more research items to existing outline
/research-add-fieldsAdd more field definitions to existing outline
/research-deepDeep research each item with parallel agents
/research-reportGenerate markdown report from JSON results

Workflow & Example

Example: Researching "AI Agent Demo 2025"

Phase 1: Generate Outline

/research AI Agent Demo 2025

💡 What will happen: Tell it your topic → It creates a research list for you

You get: A list of 17 AI Agents to research (ChatGPT Agent, Claude Computer Use, Cursor, etc.) + what info to collect for each

(Optional) Not satisfied? Add more

/research-add-items
/research-add-fields

💡 What will happen: Add more research items or field definitions

Phase 2: Deep Research

/research-deep

💡 What will happen: AI automatically searches the web for each item, one by one

You get: Detailed info for each Agent (company, release date, pricing, tech specs, reviews...)

Phase 3: Generate Report

/research-report

💡 What will happen: All data → One organized report

You get: report.md - A complete markdown report with table of contents, ready to read or share

Need Help?

If you have questions, ask Claude Code, OpenCode, or Codex to explain this project:

Help me understand this project: https://github.com/Weizhena/deep-research-skills

References

  • RhinoInsight: Improving Deep Research through Control Mechanisms for Model Behavior and Context

License

MIT

常见问题

What is Deep-Research-skills?

Deep-Research-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Weizhena. Structured deep research skill for Claude Code/Open Code/Codex with human-in-the-loop control. It has 2,001 GitHub stars.

Is Deep-Research-skills safe to use?

Yes. Deep-Research-skills 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 Deep-Research-skills?

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

What programming language is Deep-Research-skills written in?

Deep-Research-skills is primarily written in Python. It is open-source under Weizhena on GitHub, so you can review or fork the full source.

Are there alternatives to Deep-Research-skills?

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 Deep-Research-skills 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
查看详情