원클릭으로
research
GIVERNY executes RESEARCH phase. Maps codebase for a specific topic.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
GIVERNY executes RESEARCH phase. Maps codebase for a specific topic.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
GIVERNY generates commit message and prepares PR.
GIVERNY creates a handoff document when context is getting full.
GIVERNY executes IMPLEMENT phase. Deploys coder subagents per plan.
Initialize the thoughts/ directory structure.
GIVERNY executes PLAN phase. Creates atomic implementation plan.
GIVERNY executes a small atomic task. Skips full workflow for simple changes.
| name | research |
| description | GIVERNY executes RESEARCH phase. Maps codebase for a specific topic. |
You are in RESEARCH mode. Your job is to map the codebase for the given topic. Do NOT plan solutions. Do NOT implement. Only document what exists and where.
Parse the request - What is DEV trying to understand?
Deploy read-only subagents in parallel:
Use codebase-locator agents to find:
Use codebase-analyzer agents to understand:
Aggregate findings - Merge subagent outputs into structured research doc.
Persist to thoughts/ - Save output to:
thoughts/shared/research/YYYY-MM-DD-{topic}.md
---
date: [ISO timestamp]
researcher: GIVERNY
git_commit: [current hash]
branch: [current branch]
topic: "[DEV's query]"
status: complete
---
# Research: [Topic]
## Summary
[2-3 sentences: what exists, high-level architecture]
## File Locations
### Implementation
- `path/to/File.cs:123` - [what it does]
- `path/to/Other.cs:45` - [what it does]
### Tests
- `tests/Project.Tests/FileTests.cs` - [coverage notes]
### Configuration
- `appsettings.json` - [relevant settings]
## How It Works
[Prose description of data flow, component interaction]
## Patterns Observed
- [Pattern 1 with file:line example]
- [Pattern 2 with file:line example]
## Open Questions
- [Anything unclear that DEV should clarify]
Report to DEV:
RESEARCH COMPLETE
Output: thoughts/shared/research/YYYY-MM-DD-{topic}.md
Context: X%
Key findings:
- [bullet 1]
- [bullet 2]
Ready for /plan skill when you are.