# Requirements Prompt Template Use this prompt structure for creating feature specifications: ``` Read docs//doku/PRD.md to understand the project vision and constraints. Read features/INDEX.md to see existing features and the next available PROJ-X ID. [Describe the feature idea clearly] Create a feature specification in features/PROJ-X-feature-name.md with: - Feature name and ID - User stories (3-5, with: As a [role], I want [action], so that [benefit]) - Acceptance criteria (testable, specific) - Edge cases (error handling, edge inputs, boundary conditions) - Dependencies (other features required) - Implementation notes (optional) Update features/INDEX.md with the new feature status. ``` Example: ``` exec "Read docs/www.example.com/doku/PRD.md and features/INDEX.md. Create a feature spec for user authentication with email/password login, including: user stories for login/logout, acceptance criteria for valid/invalid credentials, edge cases for locked accounts and rate limiting." ```