by Weizhena
Structured deep research skill for Claude Code/Open Code/Codex with human-in-the-loop control
# Add to your Claude Code skills
git clone https://github.com/Weizhena/Deep-Research-skillsIf 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.

git clone https://github.com/Weizhena/deep-research-skills.git
cd deep-research-skills
# 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
# 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 plainexportonly affects the current shell; writing it to~/.bashrcmakes it persistent. Without it, you only getweb fetch, which is weaker for the deep research phase.
# 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.w...
No comments yet. Be the first to share your thoughts!