The Graph-Native Intelligence Layer for Code
Stop RAG-ing. Start navigating.
Quick Start • Why Arbor? • Features • Architecture • Protocol • Contributing
The Vector RAG Problem: Most AI coding assistants treat your codebase like a bag of text. They embed chunks into vectors and hope similarity search finds the right context. The result? Hallucinated connections, missing dependencies, and refactors that break everything downstream.
Arbor thinks differently.
We parse your code into an Abstract Syntax Tree using Tree-sitter, then build a living graph where every function, class, and variable is a node, and every import, call, and implementation is an edge. When an AI asks "where is authentication handled?", Arbor doesn't grep for "auth" — it traces the call graph to find the actual service that initiates the flow.
Traditional RAG: Arbor:
"auth" → 47 results "auth" → AuthController
├── validates via → TokenMiddleware
├── queries → UserRepository
└── emits → AuthEvent
Download arbor-windows-v0.1.0.zip from the Releases page.
# Unzip and add to PATH, then:
cd your-project
arbor init
arbor index
arbor bridge --viz # Starts server + opens visualizer# Clone and build
git clone https://github.com/Anandb71/arbor.git
cd arbor/crates
cargo build --release
# Build visualizer (requires Flutter)
cd ../visualizer
flutter build windowsThat's it. Your IDE or AI agent can now connect to ws://localhost:7433 and query the graph.
Every code entity becomes a queryable node. Arbor understands scope, shadowing, and namespace isolation — so when you ask for context, you get the exact logical block, not keyword-matched noise.
Arbor watches your files and re-parses only the changed AST nodes. In a 100k-line monorepo, saving a file triggers a ~15ms update. You'll never notice it running.
Refactoring a function? Arbor traces every caller, every consumer, every downstream dependency. See the full impact before you break production.
Not all code is equal. Arbor ranks nodes by "centrality" — a function called by 50 others is more architecturally significant than a one-off utility. Context windows get the important stuff first.
The optional desktop app renders your codebase as an interactive force-directed graph. Custom shaders create bloom and glow effects as you navigate. Features include:
- Follow Mode: Camera automatically tracks the node the AI is focusing on
- Low GPU Mode: Disable effects for better performance on older hardware
- Real-time Sync: Graph updates as you edit code
The Logic Forest Visualizer rendering 27,676 nodes with bloom effects
Verify your environment with a single command:
┌─────────────────────────────────────────────────────────────────┐
│ Your IDE / AI Agent │
└─────────────────────────────────────────────────────────────────┘
│
│ WebSocket (Arbor Protocol)
▼
┌─────────────────────────────────────────────────────────────────┐
│ Context Sidecar │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────────────┐ │
│ │ Protocol │ │ Ranking │ │ Discovery │ │
│ │ Handler │ │ Engine │ │ Engine │ │
│ └──────────────┘ └──────────────┘ └──────────────────────┘ │
└─────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────┐
│ Arbor Graph │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────────────┐ │
│ │ Nodes │ │ Edges │ │ Relationships │ │
│ │ (Entities) │ │ (Links) │ │ (Semantic) │ │
│ └──────────────┘ └──────────────┘ └──────────────────────┘ │
└─────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────┐
│ Pulse Indexer │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────────────┐ │
│ │ Tree-sitter │ │ Watcher │ │ Delta Sync │ │
│ │ Parser │ │ (notify) │ │ Engine │ │
│ └──────────────┘ └──────────────┘ └──────────────────────┘ │
└─────────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────────┐
│ Your Codebase │
│ TypeScript • Rust • Python │
└─────────────────────────────────────────────────────────────────┘
The Arbor Protocol is a simple JSON-RPC interface over WebSocket. Here's what your AI agent can ask:
// Find the architectural root for a concept
{
"method": "discover",
"params": { "query": "user authentication" }
}
// Get the blast radius for a function
{
"method": "impact",
"params": { "node": "UserService.validateToken" }
}
// Retrieve ranked context for a task
{
"method": "context",
"params": {
"task": "refactor the payment flow",
"maxTokens": 8000
}
}See docs/PROTOCOL.md for the full specification.
| Language | Status | Parser |
|---|---|---|
| TypeScript | ✅ | tree-sitter-typescript |
| JavaScript | ✅ | tree-sitter-typescript |
| Rust | ✅ | tree-sitter-rust |
| Python | ✅ | tree-sitter-python |
| Go | ✅ | tree-sitter-go |
| Java | ✅ | tree-sitter-java |
| C | ✅ | tree-sitter-c |
| C++ | ✅ | tree-sitter-cpp |
| Dart | ✅ | tree-sitter-dart |
Adding a new language? See our language contribution guide.
arbor/
├── crates/ # Rust workspace
│ ├── arbor-core/ # AST parsing, Tree-sitter integration
│ ├── arbor-graph/ # Graph schema, relationships, ranking
│ ├── arbor-watcher/ # File watching, incremental sync
│ ├── arbor-server/ # WebSocket server, protocol handler
│ └── arbor-cli/ # Command-line interface
├── visualizer/ # Flutter desktop app
│ ├── lib/
│ │ ├── core/ # Theme, state management
│ │ ├── graph/ # Force-directed layout
│ │ └── shaders/ # GLSL bloom/glow effects
│ └── shaders/ # Raw GLSL files
└── docs/ # Extended documentation
We obsess over speed because slow tools don't get used.
| Metric | Target | Actual |
|---|---|---|
| Initial index (10k files) | < 5s | ~2.3s |
| Incremental update | < 100ms | ~15ms |
| Query response | < 50ms | ~8ms |
| Memory (100k LOC) | < 200MB | ~120MB |
Benchmarks run on M1 MacBook Pro. Your mileage may vary, but not by much.
We love contributors. Whether you're fixing a typo, adding a language parser, or building something entirely new — you're welcome here.
- Read CONTRIBUTING.md
- Check the good first issues
- Join the discussion in GitHub Discussions
- Phase 1: Core indexer and CLI
- Phase 2: Logic Forest visualizer ✅
- Phase 3: VS Code extension ✅
- Phase 4: Agentic Bridge (MCP) ✅
- Phase 5: Linux ARM64/AMD64 + macOS ARM64 CI/CD ✅
- Phase 6: Language server protocol support
- Phase 7: Go and Java parser support
- Phase 8: C/C++ parser support
- Phase 9: Dart/Flutter parser support
Arbor is designed with security in mind:
- No data exfiltration: All indexing happens locally; no code leaves your machine
- No API keys required: Works entirely offline
- No telemetry: Zero phone-home behavior
- Open source: Full source code available for audit
Arbor v0.1.0 is feature-complete. The entire stack is now synchronized:
Claude asks about AuthController
│
▼
┌─────────────────┐
│ Arbor Bridge │ ← MCP Server (stdio)
│ (arbor-mcp) │
└────────┬────────┘
│ trigger_spotlight()
▼
┌─────────────────┐
│ SyncServer │ ← WebSocket broadcast
│ (port 8080) │
└────────┬────────┘
│ FocusNode message
┌───────┴───────┐
│ │
▼ ▼
┌─────────┐ ┌─────────┐
│ VS Code │ │ Forest │
│ Golden │ │ Camera │
│Highlight│ │Animation│
│ #FFD700 │ │ 600ms │
└─────────┘ └─────────┘
Experience: Ask Claude, "How does auth work?" → Watch your IDE highlight the file → Watch the Visualizer fly to the node.
| Command | Description |
|---|---|
arbor init |
Creates .arbor/ config directory |
arbor index |
Full index of the codebase |
arbor query <q> |
Search the graph |
arbor serve |
Start the sidecar server |
arbor export |
Export graph to JSON |
arbor status |
Show index status |
arbor viz |
Launch the Logic Forest visualizer |
arbor bridge |
Start MCP server for AI integration |
arbor bridge --viz |
MCP + Visualizer together |
arbor check-health |
System diagnostics and health check |
MIT — use it however you want. See LICENSE for details.
Built for developers who think code is more than text.
"The forest is mapped. The AI is walking the path."
