Quickstart
This guide gets you from install to your first useful change in Vyre IDE. You'll sign in, ask Vyre to explain your codebase, make a small edit, and review the result.
Install Vyre IDE and sign in
Download Vyre IDE. Open the app and sign in. Then pick a folder and start with a small task.
macOS
- macOS 12 (Monterey) and later
- Native installer (.dmg)
- Apple Silicon and Intel support
Windows
- Windows 10 and later
- Native installer (.exe)
Linux
Debian/Ubuntu (recommended)
curl -fsSL https://vyre.dev/keys | sudo tee /etc/apt/keyrings/vyre.gpg > /dev/null
sudo apt update
sudo apt install vyreAsk Vyre to explain your codebase
After you pick a folder, open Agent with Cmd I. Ask Vyre to explain the codebase and point out the main areas to read first.
"Explain this codebase. Point me to the main entry points, key modules, and anything I should read before making changes."
Vyre will search your repo, read relevant files, and summarize how the project fits together. This is one of the fastest ways to get oriented in an unfamiliar codebase.
Make one small change
Once you understand the project, ask Vyre to suggest a few safe improvements. Pick one and ask it to make the change.
"Suggest three small, safe improvements in this codebase. Explain the tradeoffs and wait for me to choose one."
Good first tasks are low risk, like improving some copywriting or fixing small UI issues.
Review the diff and verify the result
Now you can watch Vyre work. The diff view shows changes made by the agent.
When it finishes, review the diff and ask Vyre to run the checks your project already uses. That can mean tests, the type checker, linting, or a local build.
Use Plan Mode for bigger changes
Now that you know the basics, use Plan Mode for bigger changes. It works well when the task spans multiple files, needs research, or needs approval before coding.
Press Shift+Tab in the agent input to toggle Plan Mode. Instead of writing code right away, Vyre will:
- Research your codebase to find relevant files
- Ask clarifying questions about your requirements
- Create a detailed implementation plan
- Wait for your approval before building