A minimalist, local coding IDE for software engineers. Clean file explorer, Monaco editor, integrated terminal, and AI agent — bring your own model.
New to the codebase? Start with CODEBASE.md — architecture map, agent flow, and file guide.
- File Explorer — Browse, open, create files and folders
- Code Editor — Monaco editor with syntax highlighting, tabs, Ctrl+S save
- Terminal — Integrated shell (PowerShell on Windows, bash on macOS/Linux)
- AI Chat — Streaming chat with context from your open file
- BYOM (Bring Your Own Model) — Connect any API:
- Ollama — Local models (Llama, Mistral, etc.)
- DeepSeek — DeepSeek API
- OpenAI — GPT models
- Custom — Any OpenAI-compatible endpoint
# Install dependencies
npm install
# Run in development
npm start
# Build for production
npm run build- Install Ollama
- Pull a model:
ollama pull llama3.2 - In Ontology → Settings → select Ollama
- Click Test Connection → Save
- Get an API key from DeepSeek
- Settings → select DeepSeek
- Paste your API key → Test → Save
Settings → select provider → enter API key, base URL, and model name.
| Shortcut | Action |
|---|---|
Ctrl+O |
Open folder |
Ctrl+S |
Save current file |
Enter |
Send chat message |
Shift+Enter |
New line in chat |
- Electron + React + TypeScript + Vite
- Monaco Editor
- xterm.js + node-pty
- Tailwind CSS
- Zustand
MIT
