Planning Features
How to break features into implementable chunks.
Why Planning Matters
Good planning is the difference between smooth implementation and scope creep. The Feature Planner agent breaks work into chunks that are:
- Small enough to implement in one session
- Self-contained with clear boundaries
- Testable independently
- Ordered by dependencies
Creating a Plan
/hypr:plan "Add user profile page with avatar upload" The planner analyzes the request and your codebase to create chunks like:
- Create profile API endpoint
- Add avatar upload service
- Build profile page component
- Add avatar upload UI
- Connect frontend to API
Chunk Structure
Each chunk includes:
- Title - clear description of what's being built
- Dependencies - which chunks must be done first
- Files - which files will be created or modified
- Acceptance Criteria - how to verify it's complete