arbor-server 1.7.0

WebSocket server implementing the Arbor Protocol
Documentation

Overview

arbor-server exposes the Arbor graph over WebSocket, enabling:

  • VS Code Extension: Live code highlighting
  • Logic Forest Visualizer: Real-time graph rendering
  • Custom Clients: Any tool that speaks JSON-RPC

Protocol

Default: ws://localhost:7432

Method Description
discover Find architectural entry points
impact Calculate blast radius of changes
context Get ranked context for AI prompts
graph.subscribe Stream live graph updates
spotlight Highlight a node across clients

Message Format

{
  "jsonrpc": "2.0",
  "method": "context",
  "params": { "node": "auth::validate", "depth": 2 },
  "id": 1
}

Usage

cargo install arbor-graph-cli
arbor serve  # Starts on ws://localhost:7432

Links