v1.0.0 Now Available for Revit 2023 - 2026

Supercharge Autodesk Revit with Server-Driven AI

Transpile rich React forms directly into native Revit panels. Execute Roslyn C# scripts on-the-fly and bridge desktop CAD with AI automation via JSON-RPC.

Engineered for High-Performance BIM Automation

Eliminate rebuild times and static forms. Code and adapt layouts instantly.

Roslyn Execution Core

Compile C# scripts dynamically at runtime. Run complex Revit API transactions safely using standard, sandbox-isolated Roslyn compiler hooks.

Server-Driven WPF UI

Define layouts in React/JSON-RPC and let the Revit add-in transpile them on the fly into native, reactive desktop interfaces.

Live Dev Console

Write logic in the Code Canvas, execute instantly inside the active Revit viewport, and trace logging and events in real time.

Ready to automate? It only takes 3 steps:

1. Install Revit Add-in

Download the installer and reload Revit to register the AI Suite.

2. Connect to the Dev Portal

Enter your access code inside the Revit panel to connect to the backend server.

3. Code & Sync Instantly

Write custom scripts in C# or adjust JSON layouts to trigger immediate canvas redraws.

DynamicUICanvas.xaml.cs
// Initialize and connect to server
var client = new JsonRpcClient("ws://localhost:8000");
await client.ConnectAsync();

// Server triggers layout compilation
client.On("LayoutRequest", async (payload) => {
    var layout = Transpile(payload.JsonLayout);
    await Dispatcher.InvokeAsync(() => RenderPanel(layout));
});