How Iterate Mode Works
Iterate mode works like a standard AI coding assistant. You describe what you need, and it edits the code directly in your current variant (frame).Standard Coding Tools
Iterate mode has access to all the tools you’d expect from a modern coding agent:- Code generation — Write new code, components, and features
- File operations — Create, edit, delete, and move files
- Grep/search — Search through your codebase to understand context
- Terminal — Run commands, install packages, execute scripts
- Code analysis — Understand existing code patterns and structure
Powered by Frontier Models
Iterate mode uses the latest frontier AI models — the same level of code quality and understanding as Cursor and Claude Code. It writes production-ready code that fits your patterns and style.When to Use Iterate Mode
Quick Fixes
Fix bugs, update styles, or make small changes
Refactoring
Improve code structure, extract components, or optimize
Feature Updates
Add functionality to existing features
Code Improvements
Enhance existing code based on feedback
Example Workflow
- You request: “Fix the button spacing in the header component”
- AI analyzes: Uses grep to find the header component, understands the current styling
- AI edits: Updates the spacing directly in the code
- You see the change: The variant updates with the fix applied
- You request: “Add error handling to the API call in the user profile”
- AI searches: Finds the API call, understands the context
- AI writes: Adds try/catch blocks and error states
- Done: Error handling is now in place