forked from bots-garden/ori
| 🎉 Begin a project. | 1 | # Ori |
| 2 | > The origin from which many voices are called, and through which they are known | |
| ✨ Workspace panel, selectors, previews, desktop app, sandbox template, resizable file tree, light/dark theme | 3 | |
| 4 | Ori is a web client for [ACP (Agent Client Protocol)](https://agentclientprotocol.com) code agents: a Go backend serves a React single-page application and connects, over ACP, to an agent such as Claude Code. The browser gets a Zed-style agent panel — streamed answers, thoughts, tool calls, plans and permission prompts — plus a workspace panel: resizable file tree, syntax-highlighted previews (with rendered Markdown and AsciiDoc), a Monaco editor and an interactive terminal. Light and dark themes, switchable from the header. | |
| 5 | ||
| 6 | ## Quick start | |
| 7 | ||
| 🛟 Updated. | 8 | From the directory where the kit lives, pointing at the project you want the agent to work on: |
| 9 | ||
| ✨ Workspace panel, selectors, previews, desktop app, sandbox template, resizable file tree, light/dark theme | 10 | ```bash |
| ✨ Switch the ACP adapter to @agentclientprotocol/claude-agent-acp (template 0.0.2) | 11 | sbx run -d claude . \ |
| 12 | --template k33g/ori:0.0.2 \ | |
| 🛟 Updated. | 13 | --kit ./kits/ori \ |
| ✨ Switch the ACP adapter to @agentclientprotocol/claude-agent-acp (template 0.0.2) | 14 | --name hello-ori \ |
| 15 | -p 3000:8888/tcp | |
| 16 | ||
| 17 | ||
| 18 | ||
| 19 | sbx run -d claude . \ | |
| 20 | --template k33g/ori:0.0.2 \ | |
| 21 | --kit https://rickub.com/bots-garden/kits/ori \ | |
| 22 | --name hello-ori \ | |
| 23 | -p 3000:8888/tcp | |
| ✨ Workspace panel, selectors, previews, desktop app, sandbox template, resizable file tree, light/dark theme | 24 | ``` |
| 25 | ||
| 🛟 Updated. | 26 | Then open **http://localhost:8888** — the panel connects to a Claude Code session already running in the sandbox, no login needed. |
| 27 | ||
| ✨ Workspace panel, selectors, previews, desktop app, sandbox template, resizable file tree, light/dark theme | 28 | |
| 29 | ## Documentation | |
| 30 | ||
| 31 | Full documentation, in English and French, lives in [`docs/`](docs/README.md) — tutorials, how-to guides, reference (CLI, WebSocket protocol) and architecture notes. |