一键导入
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.