Ctrl + K

Getting Started

This guide will help you get started with Blurs AI and make your first AI-powered code generation or debugging request.

Prerequisites

  • An Oblien account
  • A project in your dashboard
  • Basic understanding of your programming language

Accessing Blurs AI

Blurs AI is available in several ways:

Via Dashboard

  1. Navigate to your Oblien dashboard
  2. Select a project
  3. Click on Blurs AI in the sidebar
  4. Start describing what you need

Via Command Line (Coming Soon)

oblien blurs generate component

Your First Request

Step 1: Describe What You Need

Use natural language to describe what you want Blurs AI to do:

Example:

Create a React component for a user profile card that displays 
name, email, and avatar. Include TypeScript types.

Step 2: Review the Response

Blurs AI will generate code based on your request. Review it carefully:

  • Does it match your requirements?
  • Are there any issues or missing features?
  • Do you need to customize anything?

Step 3: Refine if Needed

If the result isn't quite right, refine your request:

Example:

Add a loading state and error handling to the user profile card.

Step 4: Use the Code

Once you're satisfied:

  1. Copy the generated code
  2. Paste it into your project
  3. Test and verify it works
  4. Customize as needed

Common Use Cases

Generate a Component

Generate a React button component with variants: primary, secondary, danger

Debug an Error

I'm getting this error: [paste error message]. Help me fix it.

Optimize Code

Review this function and suggest performance improvements: [paste code]

Create API Endpoint

Create a REST API endpoint for user authentication with login and signup

Tips for Better Results

Be Specific

āŒ "Create a component" āœ… "Create a React TypeScript component for a todo item with checkbox, text, and delete button"

Provide Context

Include relevant code or error messages when asking questions.

Break Down Complex Requests

Instead of one large request, break it into smaller, focused requests.

Use Iterative Refinement

Start with a basic request, then add details based on the initial result.

Next Steps