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 | ||
| 8 | ```bash | |
| 9 | make deps # install frontend dependencies | |
| 10 | make run-mock # build everything and start on :8888 with the bundled demo agent (no Claude needed) | |
| 11 | make run # same, but connected to Claude Code via npx @zed-industries/claude-code-acp | |
| 12 | make test # run the Go and frontend test suites | |
| 13 | ``` | |
| 14 | ||
| 15 | Then open [http://localhost:8888](http://localhost:8888). | |
| 16 | ||
| 17 | ## Documentation | |
| 18 | ||
| 19 | Full documentation, in English and French, lives in [`docs/`](docs/README.md) — tutorials, how-to guides, reference (CLI, WebSocket protocol) and architecture notes. |