The workspace module's react render mode turns any agent into a UI builder. Ask for a dashboard, a form, a marketing page. The agent writes JSX into src/, the runtime serves it as a live preview, the user iterates by chatting. Useful for prototyping, design exploration, and onboarding non-engineers to React.
1modules:2 workspace:3 config:4 render_mode: react5 entry_file: src/App.tsx6 lint: true78agents:9 - id: builder10 modules: [workspace]11 brain: { model: claude-sonnet-4-6 }12 system_prompt: "Build the requested UI. One file at a time. Type-safe."# 1. install runtime
curl -sSL https://digitorn.ai/install | sh
# 2. save the YAML above to ~/.digitorn/apps/my-react-builder/app.yaml
mkdir -p ~/.digitorn/apps/my-react-builder
# paste the YAML into app.yaml
# 3. deploy
digitorn deploy my-react-builderEngineering notes from the Digitorn team. No marketing, no launch announcements, no "10 prompts that will change your life". Just the things we write that we'd want to read.