smithery/neversight

ralph-prd

Generates Product Requirements Documents for complex Ralph Loop tasks. Use when asked to "generate a PRD", "create product requirements", or "plan a ralph task". Delegates to prometheus agent for strategic planning.

Installation

$ npx skills add smithery/neversight --skill ralph-prd

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Write, Grep, Glob, Bash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,542 B
  • docs SUMMARY.md 234 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Ralph PRD Workflow

Purpose

Generate structured Product Requirements Documents (PRDs) for complex Ralph Loop tasks. This skill helps break down large tasks into manageable phases with clear success criteria and exit conditions.

Integrations

Type References
skills ralph-graceful-exit
agents prometheus, metis
hooks ralph-activity-log

PRD Template Structure

{
  "title": "Task Title",
  "objective": "Clear goal statement",
  "success_criteria": [
    "Criterion 1: Specific, measurable outcome",
    "Criterion 2: Another measurable outcome"
  ],
  "phases": [
    {
      "name": "Phase 1: Discovery",
      "tasks": ["Task 1.1", "Task 1.2"],
      "completion": 0
    },
    {
      "name": "Phase 2: Implementation",
      "tasks": ["Task 2.1", "Task 2.2"],
      "completion": 0
    }
  ],
  "constraints": [
    "Constraint 1",
    "Constraint 2"
  ],
  "exit_conditions": [
    "All tests pass",
    "Documentation complete",
    "No regressions"
  ]
}

Workflow

  1. Analyze task complexity via metis agent

- Identify scope and dependencies - Estimate effort per phase - Flag potential blockers

  1. Generate PRD JSON via prometheus agent

- Define clear objective - Break into phases - Set measurable success criteria

  1. Store PRD in .ralph/prd.json

- Create .ralph directory if needed - Validate JSON structure

  1. Track completion % per iteration

- Update phase completion as tasks finish - Log progress to ralph-activity-log

  1. Invoke ralph-graceful-exit when criteria met

- Check all successcriteria - Verify exitconditions - Recommend completion

Usage

Generate PRD for New Task

/ralph-prd "Implement user authentication with OAuth2"

Check PRD Progress

/ralph-prd status

Update Phase Completion

/ralph-prd update --phase 1 --completion 100

Progressive Loading

For detailed templates, see:

  • [templates/default-prd.json](templates/default-prd.json) - Standard PRD template
  • [templates/feature-prd.json](templates/feature-prd.json) - Feature-focused template