home / skills / yeachan-heo / oh-my-claudecode / ralph-init
This skill initializes a structured PRD for Ralph loop execution, guiding goal-driven iterations and aligning teams with acceptance criteria and milestones.
npx playbooks add skill yeachan-heo/oh-my-claudecode --skill ralph-initReview the files below or copy the command above to add this skill to your agents.
---
name: ralph-init
description: Initialize a PRD (Product Requirements Document) for structured ralph-loop execution
---
# Ralph Init
Initialize a PRD (Product Requirements Document) for structured ralph-loop execution. Creates a structured requirements document that Ralph can use for goal-driven iteration.
## Usage
```
/oh-my-claudecode:ralph-init "project or feature description"
```
## Behavior
1. **Gather requirements** via interactive interview or from the provided description
2. **Create PRD** at `.omc/plans/prd-{slug}.md` with:
- Problem statement
- Goals and non-goals
- Acceptance criteria (testable)
- Technical constraints
- Implementation phases
3. **Link to Ralph** so that `/oh-my-claudecode:ralph` can use the PRD as its completion criteria
## Output
A structured PRD file saved to `.omc/plans/` that serves as the definition of done for Ralph execution.
## Next Steps
After creating the PRD, start execution with:
```
/oh-my-claudecode:ralph "implement the PRD"
```
Ralph will iterate until all acceptance criteria in the PRD are met and architect-verified.
This skill initializes a Product Requirements Document (PRD) to drive structured ralph-loop execution. It converts a short project or feature description into a testable, linked PRD that Ralph can use as the definition of done. The PRD is saved in the project plans directory and prepared for automated iteration.
Provide a project or feature description and the skill conducts an interactive requirements gathering if needed. It generates a structured PRD (.omc/plans/prd-{slug}.md) containing problem statement, goals and non-goals, acceptance criteria, technical constraints, and implementation phases. The PRD is linked so the ralph executor can consume it and iterate until all acceptance criteria are met.
What does the generated PRD include?
The PRD includes a problem statement, goals and non-goals, testable acceptance criteria, technical constraints, and implementation phases.
Where is the PRD saved?
The PRD is saved to .omc/plans/prd-{slug}.md and linked so Ralph can use it as completion criteria.