From product-design
Lists all PRDs in product-docs/ with status, version, progress from linked tasks, metadata. Filters by status/type; formats as table/list/json. Tracks product dev status.
How this skill is triggered — by the user, by Claude, or both
Slash command
/product-design:list-prdsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Category**: Product & Strategy
Category: Product & Strategy
list-prds [--status <status>] [--type <type>] [--format <format>]
--status: Optional - Filter by status (draft, review, approved, active, complete, archived)--type: Optional - Filter by type (product, feature, simple)--format: Optional - Output format (table, list, json). Default: tableWhen this command is run, Claude Code should:
product-docs/ directory structurePRD List - Found 12 PRDs
Status | Type | Name | Version | Progress | Updated
----------|---------|---------------------------|---------|----------|------------
ACTIVE | Feature | user-authentication-frd | 1.2 | 67% | 2025-01-06
ACTIVE | Product | inventory-system-prd | 2.0 | 45% | 2025-01-05
REVIEW | Feature | quick-search-simple-frd | 1.0 | N/A | 2025-01-04
APPROVED | Feature | data-export-frd | 1.1 | 0% | 2025-01-03
📄 user-authentication-frd.md
Status: ACTIVE | Version: 1.2 | Progress: 67%
Location: product-docs/prds/active/feature-prds/
Tasks: ./tasks/user-authentication-frd-tasks.md
📄 inventory-system-prd.md
Status: ACTIVE | Version: 2.0 | Progress: 45%
Location: product-docs/prds/active/product-prds/
Tasks: ./tasks/inventory-system-prd-tasks.md
product-docs/ directory exists: Create it with proper structure# List all PRDs
list-prds
# List only active PRDs
list-prds --status active
# List only feature PRDs in list format
list-prds --type feature --format list
# List all PRDs in review status
list-prds --status review
--- markers[x] vs [ ] in linked task filesnpx claudepluginhub jpoutrin/product-forge --plugin product-designTracks PRD implementation progress by parsing linked Markdown task files, calculating completion percentages, section breakdowns, priorities, velocity, and estimated dates. Outputs simple, detailed, or JSON formats.
Lists blueprint documents (ADRs, PRDs, PRPs) from docs/ directories with metadata like title, status, date extracted from YAML frontmatter and headers. Outputs markdown tables for audits or indexes.