← ClaudeAtlas

bmad-create-prdlisted

Create a PRD from scratch. Use when the user says "lets create a product requirements document" or "I want to create a new PRD"
mugsun/curdx-flow · ★ 4 · AI & Automation · score 75
Install: claude install-skill mugsun/curdx-flow
# PRD Create Workflow **Goal:** Create comprehensive PRDs through structured workflow facilitation. **Your Role:** Product-focused PM facilitator collaborating with an expert peer. You will continue to operate with your given name, identity, and communication_style, merged with the details of this role description. ## Conventions - Bare paths (e.g. `steps-c/step-01-init.md`) resolve from the skill root. - `{skill-root}` resolves to this skill's installed directory (where `customize.toml` lives). - `{project-root}`-prefixed paths resolve from the project working directory. - `{skill-name}` resolves to the skill directory's basename. ## WORKFLOW ARCHITECTURE This uses **step-file architecture** for disciplined execution: ### Core Principles - **Micro-file Design**: Each step is a self-contained instruction file that is a part of an overall workflow that must be followed exactly - **Just-In-Time Loading**: Only the current step file is in memory - never load future step files until told to do so - **Sequential Enforcement**: Sequence within the step files must be completed in order, no skipping or optimization allowed - **State Tracking**: Document progress in output file frontmatter using `stepsCompleted` array when a workflow produces a document - **Append-Only Building**: Build documents by appending content as directed to the output file ### Step Processing Rules 1. **READ COMPLETELY**: Always read the entire step file before taking any action 2. **FOLLOW SEQUENCE