/research - Unified Research Command
OMC Integration
This skill delegates to the OMC research skill.
How to Run
python
Skill(skill="oh-my-claudecode:research", args="research topic")
# Or invoke agent directly
Task(subagent_type="oh-my-claudecode:researcher", model="sonnet",
prompt="Research: [topic]")
OMC Agents
| Agent | Model | Purpose |
|---|---|---|
researcher | sonnet | Documentation/API research |
researcher-low | haiku | Quick doc lookup |
scientist | sonnet | Data analysis |
explore | haiku | Codebase exploration |
Causality (CRITICAL - must be preserved)
code
/work --loop Tier 3
└── /research code (when code analysis is needed)
└── /research web (when open source exploration is needed)
/work Phase 1
└── /research plan (implementation planning)
This causality is preserved regardless of OMC delegation.
Subcommands (100% preserved)
| Subcommand | Description |
|---|---|
/research code [path] | Codebase analysis |
/research web <keyword> | Open source / solution search |
/research plan [target] | Implementation planning |
/research review [scope] | AI code review |
Subcommand Details
/research code - Codebase Analysis (default)
bash
/research # Analyze current directory /research code # Analyze entire codebase /research code src/api/ # Analyze specific path /research code 123 # Code related to issue #123 /research code --codebase # Analyze full structure /research code --deps # Dependency analysis
/research web - Open Source / Solution Search
bash
/research web "React state management" /research web "Python async HTTP client"
Actions performed:
- •Search relevant open source libraries
- •Make vs Buy analysis
- •Investigate similar implementations
/research plan - Implementation Planning
bash
/research plan 123 # Implementation plan for issue #123 /research plan "user auth" # Feature implementation plan /research plan --tdd # TDD-based plan /research plan --detailed # Detailed plan
/research review - AI Code Review
bash
/research review # Review staged changes /research review --branch # All branch changes /research review --pr #42 # Review specific PR /research review --docs # Documentation consistency check
Options
| Option | Description |
|---|---|
--save | Save results to .claude/research/ |
--quick | Fast exploration (under 5 min) |
--thorough | Thorough analysis (15-30 min) |
RPI Workflow
code
[R] Research → [P] Plan → [I] Implement
| Phase | Command | Purpose |
|---|---|---|
| R | /research | Gather information, analyze code |
| P | /research plan | Implementation planning |
| I | Implementation | Write code, run tests |
Command File Reference
Detailed workflow: .claude/commands/research.md