← Back to Plugins
Channels

Enso

Proxy2021 By Proxy2021 👁 26 views ▲ 0 votes

Every AI answer is an interactive app โ€” OpenClaw channel plugin with on-demand React UI generation

GitHub

README

# Enso

**Every AI answer is an interactive app.**

Enso is an [OpenClaw](https://github.com/nicepkg/openclaw) channel plugin that turns conversational AI into on-demand interactive experiences. Ask a question and get a clean text response โ€” then tap a button to transform it into a live React application with charts, tables, controls, and actions.

## How It Works

1. **Chat** โ€” Send a message. Enso routes it through OpenClaw's agent pipeline and streams back a response.
2. **Enhance** โ€” Tap the App button on any response card. Enso generates a self-contained React component tailored to the data.
3. **Interact** โ€” The app is live. Click buttons, sort tables, expand sections. Actions dispatch back to real tools โ€” no round-trip to the LLM needed.

## Features

- **Instant app generation** โ€” Any AI response can become an interactive React app with one click
- **17 built-in UI components** โ€” Tabs, DataTable, Charts (via Recharts), Accordion, Dialog, Stat cards, and more
- **Tool integration** โ€” File browser, media player, travel planner, meal planner, and automatic bridge to any co-loaded OpenClaw plugin's tools
- **Build custom apps** โ€” Describe what you want, and Enso builds a full app (executors + template) that persists and can be reused
- **Refine in place** โ€” Type an instruction in app view to regenerate just the template (single LLM call, cheapest iteration)
- **Claude Code integration** โ€” Run `/code` to open a Claude Code session with streaming terminal output and interactive questions
- **Multi-machine remote access** โ€” Connect from anywhere via Cloudflare Tunnel with token auth
- **Mobile-first** โ€” Android app (Capacitor), PWA support, QR code pairing from phone to PC
- **Dark theme** โ€” Designed for comfortable extended use

## Quick Start

### Windows

```powershell
git clone https://github.com/Proxy2021/Enso.git
cd Enso
.\scripts\install.ps1
```

### macOS / Linux

```bash
git clone https://github.com/Proxy2021/Enso.git
cd Enso
./scripts/install.sh
```

The install script handles everything: dependencies, OpenClaw onboarding (model + API key setup), build, and server start. A QR code is displayed at the end for connecting your phone.

See [SETUP.md](SETUP.md) for the full setup guide.

## Architecture

```
Browser / Android App
    โ”‚
    โ”‚  WebSocket (text, streaming, actions)
    โ–ผ
Enso Server (:3001)          โ† Express + WS, started by OpenClaw gateway
    โ”‚
    โ–ผ
OpenClaw Gateway (:18789)    โ† Agent routing, tool dispatch
    โ”‚
    โ–ผ
LLM (Gemini, OpenAI, etc.)  โ† Configured during onboarding
```

**Frontend**: React 19 ยท Zustand ยท Tailwind CSS 4 ยท Recharts ยท Lucide ยท Vite 6
**Backend**: Express ยท WebSocket ยท TypeScript ยท OpenClaw Plugin SDK
**Mobile**: Capacitor (Android) ยท PWA

## Project Structure

```
src/                          Frontend (React + Vite)
โ”œโ”€โ”€ cards/                    Card renderers (DynamicUI, Terminal, etc.)
โ”œโ”€โ”€ components/               Timeline, ChatInput, ConnectionPicker, SetupWizard
โ”œโ”€โ”€ store/chat.ts             Zustand state management
โ””โ”€โ”€ lib/                      WS client, sandbox, EnsoUI components, connections

openclaw-plugin/              Backend (OpenClaw channel plugin)
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ server.ts             Express + WS server
โ”‚   โ”œโ”€โ”€ outbound.ts           Response delivery + enhance + action dispatch
โ”‚   โ”œโ”€โ”€ ui-generator.ts       LLM-based UI generation
โ”‚   โ”œโ”€โ”€ tool-factory.ts       App build pipeline
โ”‚   โ””โ”€โ”€ native-tools/         Auto-bridge for any OpenClaw plugin's tools
โ””โ”€โ”€ apps/                     Built-in app templates

scripts/                      Install scripts + QR code tools
shared/types.ts               Shared WebSocket protocol types
```

## Development

```bash
npm run dev          # Frontend dev server (Vite, port 5173)
npm run build        # Production build
```

Requires a running OpenClaw gateway with the Enso plugin enabled. The Vite dev server proxies WebSocket and media requests to `localhost:3001`.

## Documentation

- [SETUP.md](SETUP.md) โ€” Quick start and setup guide
- [openclaw-plugin/SETUP.md](openclaw-plugin/SETUP.md) โ€” Detailed plugin configuration, remote access, Cloudflare Tunnel, multi-machine setup
- [CLAUDE-REFERENCE.md](CLAUDE-REFERENCE.md) โ€” App building API reference, template rules, EnsoUI components

## License

MIT
channels

Comments

Sign in to leave a comment

Loading comments...