Gate 0 research phase for pre-dev workflow. Dispatches 4 parallel research agents to gather codebase patterns, external best practices, framework documentation, and UX/product research BEFORE creating PRD/TRD. Outputs research.md with file:line references and user research findings.
Scanned 5/27/2026
Install via CLI
openskills install LerianStudio/ring---
name: ring:pre-dev-research
description: |
Gate 0 research phase for pre-dev workflow. Dispatches 4 parallel research agents
to gather codebase patterns, external best practices, framework documentation,
and UX/product research BEFORE creating PRD/TRD. Outputs research.md with
file:line references and user research findings.
---
# Pre-Dev Research Skill (Gate 0)
## When to use
- Before any pre-dev workflow (Gate 0)
- When planning new features or modifications
- Invoked by /ring:pre-dev-full and /ring:pre-dev-feature
## Skip when
- Trivial changes that don't need planning
- Research already completed (research.md exists and is recent)
## Sequence
**Runs before:** ring:pre-dev-prd-creation, ring:pre-dev-feature-map
## Related
**Complementary:** ring:pre-dev-prd-creation, ring:pre-dev-trd-creation
Gathers comprehensive research BEFORE writing planning documents, ensuring PRDs and TRDs are grounded in codebase reality and industry best practices.
## Step 1: Determine Research Mode
| Mode | When | Agent Priority |
|------|------|----------------|
| **greenfield** | New capability (no existing patterns) | Web research primary |
| **modification** | Extending existing functionality | Codebase research primary |
| **integration** | Connecting external systems | All agents equally weighted |
If unclear, ask: "Is this (1) Greenfield, (2) Modification, or (3) Integration?"
## Step 2: Dispatch 4 Agents in Parallel
Single message, 4 Task calls:
| Agent | Focus | Mode Priority |
|-------|-------|---------------|
| `ring:repo-research-analyst` | Codebase patterns for [feature]; search docs/solutions/ knowledge base; return file:line refs | PRIMARY in modification |
| `ring:best-practices-researcher` | External best practices for [feature]; use Context7 + WebSearch; return URLs | PRIMARY in greenfield |
| `ring:framework-docs-researcher` | Tech stack docs for [feature]; detect versions from manifests; use Context7; return version constraints | PRIMARY in integration |
| `ring:product-designer` | User problem validation, personas, competitive UX analysis, design constraints; mode: `ux-research` | PRIMARY in greenfield |
## Step 2.5: Handle Topology Configuration
If `TopologyConfig` provided (from command's topology discovery), persist in research.md frontmatter:
```yaml
---
feature: {feature-name}
gate: 0
date: {YYYY-MM-DD}
research_mode: greenfield | modification | integration
agents_dispatched: 4
topology:
scope: fullstack | backend-only | frontend-only
structure: single-repo | monorepo | multi-repo
modules:
backend:
path: {path}
language: golang | typescript
frontend:
path: {path}
framework: nextjs | react | vue
doc_organization: unified | per-module
api_pattern: direct | bff | other
---
```
## Step 3: Synthesize Results
Compile all 4 agents' findings into `docs/pre-dev/{feature}/research.md`.
**Required sections:**
```markdown
# Research: {Feature Name}
## Codebase Patterns
[From repo-research-analyst — existing patterns with file:line references]
## Best Practices
[From best-practices-researcher — external references with URLs]
## Framework Constraints
[From framework-docs-researcher — version constraints, compatibility notes]
## User Research
[From product-designer — personas, problem validation, competitive analysis, design constraints]
## Key Findings
[Top 5-10 insights that will inform PRD/TRD decisions]
## Risks & Unknowns
[Things that need more investigation before PRD/TRD]
```
## Output
**File:** `docs/pre-dev/{feature}/research.md` with topology frontmatter (if provided)
After research.md complete: invoke `ring:pre-dev-prd-creation` (Gate 1).
No comments yet. Be the first to comment!