Overview
The AI Coder panel appears in the Sandbox Panel after generating a screen or creating a sandbox. It provides two interaction modes:- Agent Mode
- Plan Mode
Direct coding assistance - The AI immediately takes action on your requests.Best for:
- Quick changes and fixes
- Adding single features
- Debugging issues
- File operations
- Read and analyze code files
- Write new files or edit existing ones
- Run terminal commands
- Install npm packages
- Auto-commit changes to git
Using Agent Mode
Basic Workflow
- Open the Sandbox Panel by clicking the Terminal button after generating a screen
- Ensure you’re in Agent mode (default)
- Type your request in natural language
- Watch the AI work - see files being read/written, commands executed
- Preview changes in the live sandbox
Example Requests
Adding features
Adding features
Editing existing code
Editing existing code
Debugging
Debugging
Package installation
Package installation
Tool Indicators
The AI shows what tools it’s using in real-time:| Icon | Tool | Description |
|---|---|---|
| 👁️ | Read | Reading a file |
| ✏️ | Edit | Modifying a file |
| 📝 | Write | Creating a new file |
| 🖥️ | Bash | Running a terminal command |
| 🔍 | Search | Searching the codebase |
| ✅ | Done | Tool completed successfully |
Using Plan Mode
Plan Mode is designed for complex requests that benefit from discussion before implementation.How It Works
Question Types
The AI may ask various types of questions:Pick One
Choose a single option from multiple choices.
Pick Many
Select multiple options that apply.
Text Input
Provide free-form text response.
Confirm
Yes/no confirmation for a decision.
Rate
Rate something on a scale.
Slider
Set a value along a range.
Example Session
Reference Images
Upload images to provide visual context for the AI:- Click the image icon in the chat input
- Select one or more images
- Add your prompt describing what you want
- The AI will use the images as reference
Selected Component Context
Use React Grab to select components directly in the preview:- Enable React Grab mode in the preview toolbar
- Click on any component in the preview
- The component’s code context is automatically attached to your next message
- Ask the AI to modify that specific component
Auto Features
Auto Commit
After the AI makes file changes, it automatically creates a git commit with a descriptive message. This gives you a complete history of all AI-assisted changes. View commit history:Auto Package Detection
When the AI writes code that imports new packages, they’re automatically detected and installed. You’ll see a notification when packages are being installed.Error Recovery
If a Vite build error occurs, the AI:- Detects the error automatically
- Reads the relevant file
- Fixes the issue
- Verifies the fix worked
Model Selection
When the model selector is enabled (?model=true in URL), you can choose which AI model handles your requests:
| Model | Strengths |
|---|---|
| Gemini 3 Pro | Balanced, good default choice |
| Claude Sonnet 4 | Excellent for complex reasoning |
| GPT-5 | Strong general performance |
| Kimi K2 | Fast responses via Groq |
The model selector is only visible when
?model=true is added to the URL.Tips for Best Results
Be specific
Instead of “make it look better”, say “add rounded corners, shadows, and a gradient background”.
Use Plan Mode for complexity
For features touching multiple files, Plan Mode ensures thorough implementation.
Supabase Integration
When Seemodo Cloud is connected, the AI has direct access to your Supabase project:- Create and modify database tables
- Set up authentication
- Configure storage buckets
- Write Edge Functions
- Create RLS policies