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:

Starting Hypr assessment wizard...
? What would you like to assess?
> Frontend patterns
Analyzing 47 component files...
Discovering naming conventions...
Extracting styling patterns...
Generated .claude/agents/frontend-executor.md
Assessment complete!

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:

Loading project patterns...
Breaking feature into chunks...
Chunk 1: Create ProfilePage component
Chunk 2: Add profile API endpoint
Chunk 3: Implement avatar upload
Plan saved to .claude/plans/user-profile.md

The planner breaks this into implementable chunks with clear dependencies.

4. Implement a Chunk

Implement the first chunk from your plan:

Loading frontend-executor agent...
Applying 23 pattern rules...
Creating src/pages/ProfilePage.tsx
Creating src/components/ProfileHeader.tsx
Validating against project patterns...
All patterns validated successfully

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