Loading...

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:

  1. Create profile API endpoint
  2. Add avatar upload service
  3. Build profile page component
  4. Add avatar upload UI
  5. 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

Next Steps

Learn about implementing code