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 patternsAnalyzing 47 component files...Discovering naming conventions...Extracting styling patterns...Generated .claude/agents/frontend-executor.mdAssessment 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 componentChunk 2: Add profile API endpointChunk 3: Implement avatar uploadPlan saved to .claude/plans/user-profile.mdThe 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.tsxCreating src/components/ProfileHeader.tsxValidating against project patterns...All patterns validated successfullyThe 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.