Aiwg create-prd

Create a Product Requirements Document (PRD) for a product feature

install
source · Clone the upstream repo
git clone https://github.com/jmagly/aiwg
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jmagly/aiwg "$T" && mkdir -p ~/.claude/skills && cp -r "$T/agentic/code/frameworks/sdlc-complete/skills/create-prd" ~/.claude/skills/jmagly-aiwg-create-prd-fbc4f5 && rm -rf "$T"
manifest: agentic/code/frameworks/sdlc-complete/skills/create-prd/SKILL.md
source content

Create a comprehensive Product Requirements Document (PRD) based on the feature description provided.

Instructions:

  1. Parse the arguments:

    • First argument: Feature description (required)
    • Second argument: Output path (optional, defaults to
      PRD.md
      in current directory)
  2. Create a well-structured PRD that includes:

    • Executive Summary: Brief overview of the feature
    • Problem Statement: What problem does this solve?
    • Objectives: Clear, measurable goals
    • User Stories: Who are the users and what are their needs?
    • Functional Requirements: What the feature must do
    • Non-Functional Requirements: Performance, security, usability standards
    • Success Metrics: How will we measure success?
    • Assumptions & Constraints: Any limitations or dependencies
    • Out of Scope: What this PRD does NOT cover
  3. Focus on:

    • User needs and business value (not technical implementation)
    • Clear, measurable objectives
    • Specific acceptance criteria
    • User personas and their journey
  4. Use the TodoWrite tool to track PRD sections as you complete them

Example usage:

  • /create-prd "Add dark mode toggle to settings"
  • /create-prd "Implement user authentication with SSO" auth-PRD.md

Feature description: $ARGUMENTS

References

  • @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/instruction-comprehension.md — Fully parse the feature description before drafting; track all multi-part requirements
  • @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/human-authorization.md — Confirm scope and output location before writing; PRD commits product direction
  • @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/skills/intake-start/SKILL.md — Intake validation skill that feeds the requirements context a PRD builds on
  • @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/skills/project-status/SKILL.md — Use to orient within the SDLC phase before generating PRD artifacts