Early access — work in progress

The AI editor
built for how you code.

Boongle IDE pairs a familiar editor with an agent that reads your project, edits files, and plans alongside you — all in one place.

Boongle IDE — my-project
Explorer
src/
App.tsx
main.tsx
package.json
1import { useState } from 'react';
2
3export function App() {
4 const [count, setCount] = useState(0);
5 // AI will refactor this next
6 return <main>{count}</main>;
7}
AI Agent

I'll extract the counter into a custom hook and add tests.

Writing useCounter.ts +24 -0
Editing App.tsx +3 -5
Ask anything… · Agent

Built for modern development

Agent mode

Let the agent read your repo, edit files, and run tools — with live diffs as it writes.

Ask & Plan

Switch to Ask for read-only help, or Plan to draft a PLAN.md before touching code.

Familiar editor

VS Code–style UI, themes, and file tree — so you feel at home from day one.