Files
ComfyUI_frontend/ComfyUI_vibe/.claude/commands/quick-prd.md
orkhanart f7f137dd2e feat(infra): Add development rules, PRD system, and Claude agent commands
- Add .cursorrules for Cursor IDE with design patterns
- Add .editorconfig for consistent formatting
- Add CLAUDE.md updates with version header, common pitfalls, component size limits
- Add PRD system with folder structure and templates (feature, enhancement, quick)
- Add Claude commands for PRD workflow:
  - /create-prd, /quick-prd, /generate-tasks
  - /ux-review, /ui-design, /product-review agents
  - /create-component for component generation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 20:22:11 -08:00

1.7 KiB

Quick PRD

Create a lightweight PRD for smaller features or enhancements.

Usage

/quick-prd "Feature Name" --priority P2

Or interactively:

/quick-prd

When to Use

Use quick PRD for:

  • Small enhancements
  • Bug fixes that need documentation
  • Minor UI changes
  • Features that don't need full technical specification

For complex features, use /create-prd instead.

Process

Step 1: Gather Basic Info

Ask for:

  1. Feature name
  2. One-sentence description
  3. Priority (P0-P3)
  4. 3-5 requirements

Step 2: Create Quick PRD

  1. Create folder: PRDs/active/P{X}-{feature-name}/
  2. Copy PRDs/_templates/quick-prd.md
  3. Fill in sections

Step 3: Generate Content

Fill in:

  • Summary (1 paragraph)
  • Problem (1-2 sentences)
  • Solution (brief description)
  • Requirements (3-5 items)
  • Acceptance criteria (3-5 checkboxes)
  • Implementation notes (affected files)

Output

Creates:

PRDs/active/P{X}-{feature-name}/
└── PRD.md   # Quick PRD (single file)

Template

# Quick PRD: [Feature Name]

| Priority | P{X} |
| Status | Draft |
| Owner | [Name] |
| Created | YYYY-MM-DD |

## Summary
[One paragraph]

## Problem
[What problem does this solve?]

## Solution
[Brief description]

## Requirements
1. [Requirement]
2. [Requirement]
3. [Requirement]

## Acceptance Criteria
- [ ] [Criterion]
- [ ] [Criterion]
- [ ] pnpm typecheck passes
- [ ] pnpm lint passes

## Implementation Notes
- Affected files: src/...
- Dependencies: None

Example

Input:

/quick-prd "Add tooltip to node header" --priority P3

Output:

Created: PRDs/active/P3-add-tooltip-to-node-header/PRD.md

Quick PRD created with:
- Summary: Add informative tooltips to node headers
- 3 requirements
- 4 acceptance criteria