Loading...

Quick Start

Run your first assessment and generate agents in 5 minutes.

1. Run the Assessment Wizard

In your project directory, run the assessment wizard:

/hypr:assess

The wizard guides you through assessing your frontend, backend, and planning patterns. It analyzes your existing code to understand your conventions.

2. Review Generated Agents

After assessment, check the generated agents:

/hypr:status

You should see agents for:

  • Frontend Executor - implements UI components
  • Backend Executor - implements API endpoints
  • Feature Planner - breaks features into chunks
  • Code Reviewer - validates against patterns

3. Plan a Feature

Create an implementation plan for a new feature:

/hypr:plan "Add user profile page with avatar upload"

The planner breaks this into implementable chunks with clear dependencies.

4. Implement a Chunk

Implement the first chunk from your plan:

/hypr:implement chunk-1

The executor generates code following your project's patterns.

5. Review the Code

Validate the implementation against your patterns:

/hypr:review

The reviewer catches any deviations from your conventions.

Next Steps