AgentSkillsCN

research

RPI第一阶段——代码库分析、研究、AI审查

SKILL.md
--- frontmatter
name: research
description: RPI Phase 1 - codebase analysis, research, AI review
version: 2.0.0
omc_delegate: oh-my-claudecode:research
omc_agents:
  - researcher
  - researcher-low
  - scientist
  - explore
triggers:
  keywords:
    - "research"
    - "리서치"
    - "분석"
    - "조사"

/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

AgentModelPurpose
researchersonnetDocumentation/API research
researcher-lowhaikuQuick doc lookup
scientistsonnetData analysis
explorehaikuCodebase 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)

SubcommandDescription
/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:

  1. Search relevant open source libraries
  2. Make vs Buy analysis
  3. 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

OptionDescription
--saveSave results to .claude/research/
--quickFast exploration (under 5 min)
--thoroughThorough analysis (15-30 min)

RPI Workflow

code
[R] Research → [P] Plan → [I] Implement
PhaseCommandPurpose
R/researchGather information, analyze code
P/research planImplementation planning
IImplementationWrite code, run tests

Command File Reference

Detailed workflow: .claude/commands/research.md