Native services where they count.
Heavy editor work runs natively — not trapped in a web view. Window management, file I/O, and terminal IPC go straight through a Rust + Tauri services layer.
// Tech Stack
//Features
Heavy editor work runs natively — not trapped in a web view. Window management, file I/O, and terminal IPC go straight through a Rust + Tauri services layer.
Your VS Code extensions run unmodified — no forks, no rewrites. A compatibility host speaks the VS Code extension API directly.
Failures are typed, traceable, and cancellable — so the editor fails loudly in development instead of silently in production.
Tauri uses the OS WebView on each platform — no bundled Chromium. One codebase compiles to native macOS, Windows, and Linux packages.
Updates, indexing, signing, and health checks run in a persistent daemon — survives when the main window closes.
Fork it, ship it, build commercial products on top of it. The entire codebase is CC0 public domain — no attribution required, no compliance headaches.
//Roadmap
Elements
Roadmap
Elements
Roadmap
//Architecture
Background daemon that runs independently — updates, indexing, signing, and health checks, all outside the main window.
Node.js sidecar that hosts and executes VS Code extensions.
Pure abstract library - defines the contracts that all Rust components implement, not the implementations themselves.
Work-stealing task scheduler with lock-free queues for bounded background execution.
WebAssembly sandbox for running extensions in capability-isolated environments.
Build system using an embedded Rhai scripting engine for flexible cross-element orchestration.
Local DNS server authoritative for the editor.land zone - all subdomains resolve to loopback, keeping internal services off the network.
Primary native backend and Tauri application shell - replaces the Electron main process entirely.
Build orchestration for VS Code platform source code.
Rust-native TypeScript compilation pipeline built on the OXC toolchain - parser, transformer, and codegen in one process.
Manages pre-compiled platform-specific Node.js binaries for each target platform.
Renders the editor interface in the OS WebView using Astro component islands for efficient rendering.
Protocol definitions for gRPC communication between Mountain, Cocoon, Air, and Grove.
UI service layer that recreates the VS Code workbench environment inside the Tauri WebView.
Service worker that provides offline caching and dynamic CSS import handling for the web shell.
//Download
Universal Binary: Apple Silicon and Intel
64-bit (x64)
DEB, RPM, AppImage