Vision HTTP API
All prompting flows through a structured HTTP API. React is the
head; the core engine stays headless under
aider-vision-core/.
Aider Vision is a lightweight, cross-platform desktop app built with Tauri and React. It gives you Cursor-like AI coding capabilities through a clean, focused workspace — powered by Aider Vision Core, a headless evolution of Aider.
Features
No Electron shell. No VS Code fork. Aider Vision pairs a native Rust backend with a minimal React front end and a headless AI engine you control.
All prompting flows through a structured HTTP API. React is the
head; the core engine stays headless under
aider-vision-core/.
Send prompts in a dedicated Chat tab and inspect raw engine output in a Technical Terminal for debugging.
Desktop spawns a local
aider-vision-core-serve instance. Web mode uses the
same API via Vite proxy or direct URL.
Adjust binary path, LLM model, extra CLI params, working directory, auto-approve limits, and worker mode from Settings.
Link an aider-vision-core submodule or directory
for advanced JSONL worker support and multi-repo workspaces.
Rust + Tauri v2 keeps memory and startup time low on macOS, Linux, and Windows — without sacrificing cross-platform parity.
Architecture
Aider Vision beheads the old standalone Aider UX. Users never interact with the core CLI directly — every turn is API-driven.
src/
/sessions
aider-vision-core/
Self-evolving by design. Aider Vision is built to help develop itself — dogfooding the same Vision API and chat workflow you use for your own projects.
Getting started
macOS
The fastest way to install on macOS. The cask downloads a
universal (Apple Silicon + Intel)
signed and notarized DMG — ready for Gatekeeper —
and installs Aider Vision.app to
/Applications/.
brew tap digital-defiance/tap
brew install aider-vision
For development, Linux, Windows, or hacking on the app itself. Requires Node.js 18+, Rust (stable), Yarn 3+, and the Aider CLI on your PATH.
Fetch the superproject and enter the workspace.
git clone https://github.com/digitaldefiance/aider-vision.git
cd aider-vision
Yarn Plug'n'Play manages packages without a bloated
node_modules tree.
yarn install
Launches the Tauri shell with hot reload for the React front end.
yarn tauri dev
Package a native binary for your platform.
yarn tauri build
Documentation
Architecture notes, IPC contracts, development guides, and troubleshooting — all in the repo.