/list-prds
List all PRDs with status, priority, and grade
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/list-prds
Context preview
What this command does when you run it.
List all PRDs with status, priority, and grade
Command definition
list-prds.mdname: list-prds
description: List all PRDs with status, priority, and grade
category: PRD Management
version: 0.4.2
List PRDs Command
Display all PRDs across directories with filtering and sorting.
Purpose
Quick overview of PRD status:
- View all PRDs at a glance
- Filter by status, priority, grade
- Sort by various criteria
- Track progress across projects
Workflow
1. Scan PRD Directories
Scan all PRD directories:
- `01-draft/`: Drafts awaiting review
- `02-ready/`: Reviewed, ready for development
- `03-in-progress/`: Currently being implemented
- `04-complete/`: Completed features
- `05-archived/`: Archived PRDs
2. Display PRD Table
๐ PRDs Overview (15 total)
| ID | Feature | Status | Priority | Grade | Owner | Effort |
|----|---------|--------|----------|-------|-------|--------|
| 003 | OAuth2 Integration | Complete โ
| P0 | A- | Alice | 7d |
| 005 | Dark Mode | In Progress ๐ | P1 | B+ | Bob | 3d |
| 007 | API v2 | Ready ๐ฆ | P0 | A | - | 12d |
| 008 | Export Feature | Draft ๐ | P2 | C | - | 5d |
| 009 | Mobile App | Archived ๐๏ธ | P1 | B | - | 30d |
Summary:
โข Draft: 3 PRDs
โข Ready: 2 PRDs
โข In Progress: 1 PRD
โข Complete: 8 PRDs
โข Archived: 1 PRD
3. Apply Filters (Optional)
**Filter by status**:
/list-prds --status=ready
**Filter by priority**:
/list-prds --priority=P0
**Filter by grade**:
/list-prds --min-grade=B
**Combine filters**:
/list-prds --status=ready --priority=P0
4. Sort Results
**Sort options**:
- `--sort=priority`: By priority (P0 first)
- `--sort=grade`: By grade (A first)
- `--sort=date`: By creation date
- `--sort=effort`: By estimated effort
Flags
**Filters**:
- `--status={draft|ready|in-progress|complete|archived}`
- `--priority={P0|P1|P2}`
- `--min-grade={A|B|C|D|F}`
- `--owner={name}`
**Display**:
- `--sort={priority|grade|date|effort}`
- `--reverse`: Reverse sort order
- `--limit=N`: Show only N results
- `--verbose`: Show more details
**Examples**:
/list-prds
/list-prds --status=ready --priority=P0
/list-prds --min-grade=B --sort=effort
/list-prds --verbose
Configuration
{
"prd_workflow": {
"list": {
"default_sort": "priority",
"show_archived": false,
"columns": ["id", "feature", "status", "priority", "grade"]
}
}
}Success Criteria
- โ
All PRDs scanned from all directories
- โ
Accurate status, priority, grade displayed
- โ
Filters applied correctly
- โ
Sorted as requested
- โ
Easy to read and understand
---
**Version**: 0.4.2 **Plugin**: claude-prd-workflow v0.4.2
Read more
name: list-prds description: List all PRDs with status, priority, and grade category: PRD Management version: 0.4.2
List PRDs Command
Display all PRDs across directories with filtering and sorting.
Purpose
Quick overview of PRD status:
- View all PRDs at a glance
- Filter by status, priority, grade
- Sort by various criteria
- Track progress across projects
Workflow
1. Scan PRD Directories
Scan all PRD directories:
- `01-draft/`: Drafts awaiting review
- `02-ready/`: Reviewed, ready for development
- `03-in-progress/`: Currently being implemented
- `04-complete/`: Completed features
- `05-archived/`: Archived PRDs
2. Display PRD Table
๐ PRDs Overview (15 total) | ID | Feature | Status | Priority | Grade | Owner | Effort | |----|---------|--------|----------|-------|-------|--------| | 003 | OAuth2 Integration | Complete โ | P0 | A- | Alice | 7d | | 005 | Dark Mode | In Progress ๐ | P1 | B+ | Bob | 3d | | 007 | API v2 | Ready ๐ฆ | P0 | A | - | 12d | | 008 | Export Feature | Draft ๐ | P2 | C | - | 5d | | 009 | Mobile App | Archived ๐๏ธ | P1 | B | - | 30d | Summary: โข Draft: 3 PRDs โข Ready: 2 PRDs โข In Progress: 1 PRD โข Complete: 8 PRDs โข Archived: 1 PRD
3. Apply Filters (Optional)
**Filter by status**:
/list-prds --status=ready
**Filter by priority**:
/list-prds --priority=P0
**Filter by grade**:
/list-prds --min-grade=B
**Combine filters**:
/list-prds --status=ready --priority=P0
4. Sort Results
**Sort options**:
- `--sort=priority`: By priority (P0 first)
- `--sort=grade`: By grade (A first)
- `--sort=date`: By creation date
- `--sort=effort`: By estimated effort
Flags
**Filters**:
- `--status={draft|ready|in-progress|complete|archived}`
- `--priority={P0|P1|P2}`
- `--min-grade={A|B|C|D|F}`
- `--owner={name}`
**Display**:
- `--sort={priority|grade|date|effort}`
- `--reverse`: Reverse sort order
- `--limit=N`: Show only N results
- `--verbose`: Show more details
**Examples**:
/list-prds /list-prds --status=ready --priority=P0 /list-prds --min-grade=B --sort=effort /list-prds --verbose
Configuration
{
"prd_workflow": {
"list": {
"default_sort": "priority",
"show_archived": false,
"columns": ["id", "feature", "status", "priority", "grade"]
}
}
}Success Criteria
- โ All PRDs scanned from all directories
- โ Accurate status, priority, grade displayed
- โ Filters applied correctly
- โ Sorted as requested
- โ Easy to read and understand
---
**Version**: 0.4.2 **Plugin**: claude-prd-workflow v0.4.2
The complete Claude Code plugin for Product-Driven Development Transform PRDs from ideas to shipped features with AI-powered review, guided implementation, and automated quality gates. Never ship unclear requirements again.
Repo: Yassinello/claude-plugin-prd-workflow

