Building developer tools that make complex workflows simple.
Sanar is an internal developer platform and automation suite that connects AI agents to internal systems. The ecosystem includes:
| Component | Description | Tech Stack |
|---|---|---|
| Lattice | Code intelligence engine with semantic search, AST parsing, and code navigation | Rust, tree-sitter |
| Forge | FFI binding generator for cross-language interoperability | Rust |
| Axon | Neural-speed messaging bus with sub-50μs latency | Rust, io_uring |
| Sanar Desktop | Local-first AI workspace application | Flutter, Rust |
| Repository | Description | Version |
|---|---|---|
| lattice | Code intelligence & semantic search engine | 0.5.0-alpha |
| forge | FFI binding generator (Rust, TypeScript, Python, Go, Cap'n Proto) | 0.1.0 |
| axon | High-performance messaging infrastructure with LLM Gateway | 0.1.0 |
| desktop | Cross-platform desktop workspace app | 0.1.0 |
┌─────────────────────────────────────────────────────────────┐
│ Sanar Desktop │
│ (Flutter + Rust FFI) │
└─────────────────────┬───────────────────────────────────────┘
│
┌───────────┴───────────┐
▼ ▼
┌─────────────────┐ ┌─────────────────┐
│ Lattice │ │ Axon │
│ Code Intel │ │ Messaging │
│ AST · Search │ │ LLM Gateway │
└────────┬────────┘ └────────┬────────┘
│ │
└───────────┬───────────┘
▼
┌─────────────────┐
│ Forge │
│ FFI Bindings │
│ TS·Py·Go·Cap'n │
└─────────────────┘
- Lattice: Tree-sitter parsing, RocksDB storage, SIMD-accelerated similarity search
- Forge: Custom IDL with code generation for 5 target languages, incremental compilation
- Axon: io_uring + eBPF networking, Cap'n Proto serialization, built-in chaos testing
- Desktop: Flutter + Rust bridge, local SQLite, cross-platform (Windows, macOS, Linux)
# Clone and bootstrap (Windows)
git clone https://github.com/Sanar-Technologies/desktop.git
cd desktop
flutter pub get
cargo build --release