A TRON-inspired web chat interface for OpenClaw. Real-time communication with your AI agent through a cyberpunk terminal.
- Real-time WebSocket bridge to the OpenClaw gateway (JSON-RPC)
- Streaming responses with live text rendering
- Three color themes inspired by TRON: Ares (2025)
- Flynn Grid — Classic cyan/blue
- Dillinger Grid — Red/orange
- ENCOM Grid — Emerald green
- Auto-configured identity — reads agent and user names from workspace files
- Audio feedback — subtle beeps on message events
- Persistent theme — saves selection to localStorage
- Keyboard shortcuts — Enter to send, Escape to abort
openclaw skill install tron-grid-ui.skillgit clone git@github.com:amircp/moltbot-tron-grid-ui.git
cd moltbot-tron-grid-ui/assets
npm install
node server.jsOpen http://localhost:3100 in your browser.
| Variable | Default | Description |
|---|---|---|
PORT |
3100 |
Server port |
GATEWAY_URL |
ws://127.0.0.1:18789 |
OpenClaw gateway WebSocket URL |
The server automatically reads:
- Agent name from
IDENTITY.mdin the workspace - User name from
USER.mdin the workspace - Auth token auto-detected from
~/.openclaw/or~/.clawdbot/(backward compatible)
Browser ←→ WebSocket:3100 ←→ server.js ←→ WebSocket:18789 ←→ OpenClaw Gateway ←→ AI Agent
assets/index.html— Self-contained frontend (HTML + CSS + JS)assets/server.js— Node.js bridge server (Express + WebSocket)assets/package.json— Dependencies (express, ws, uuid)scripts/setup.sh— Automated setup scriptSKILL.md— OpenClaw skill instructions
MIT
