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.
Eliminate rebuild times and static forms. Code and adapt layouts instantly.
Compile C# scripts dynamically at runtime. Run complex Revit API transactions safely using standard, sandbox-isolated Roslyn compiler hooks.
Define layouts in React/JSON-RPC and let the Revit add-in transpile them on the fly into native, reactive desktop interfaces.
Write logic in the Code Canvas, execute instantly inside the active Revit viewport, and trace logging and events in real time.
Download the installer and reload Revit to register the AI Suite.
Enter your access code inside the Revit panel to connect to the backend server.
Write custom scripts in C# or adjust JSON layouts to trigger immediate canvas redraws.
// 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));
});