Skip to content

Commit 34b2b49

Browse files
committed
docs: highlight agent stack in README
1 parent 56cbbe9 commit 34b2b49

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
## ✨ Why Bytebot?
1212

13-
Bytebot spins up a containerized Linux desktop you can prompt, drive programmatically or operate via VNC—perfect for automation, scraping, CI tasks, and remote work.
13+
Bytebot spins up a containerized Linux desktop with a task-driven agent ready for automation. Chat with it through the web UI or control it programmatically for scraping, CI tasks and remote work.
1414

1515
## Examples
1616

@@ -31,7 +31,18 @@ https://github.com/user-attachments/assets/5f946df9-9161-4e7e-8262-9eda83ee7d22
3131
- 🌍 **Access Anywhere** – VNC & browser‑based **noVNC** built‑in
3232
- 🛠️ **Unified API** – Script every click & keystroke with a clean REST interface
3333
- ⚙️ **Ready‑to‑Go Tools** – Firefox & essentials pre‑installed
34-
- 🤖 **Built-in Agent** -
34+
- 🤖 **Task-Driven Agent** – Manage tasks via REST or Chat UI and watch them run
35+
36+
## 🧠 Agent System
37+
38+
Bytebot's agent stack is orchestrated with `docker-compose`. It starts:
39+
40+
- `bytebot-desktop` – the Linux desktop and automation daemon
41+
- `bytebot-agent` – NestJS service processing tasks with Anthropic's Claude
42+
- `bytebot-ui` – Next.js chat interface
43+
- `postgres` – stores tasks and conversation history
44+
45+
Open `http://localhost:9992` to give the agent a task and watch it work.
3546

3647
## 📖 Documentation
3748

@@ -51,8 +62,9 @@ Dive deeper at [**docs.bytebot.ai**](https://docs.bytebot.ai).
5162
echo "ANTHROPIC_API_KEY=your_api_key_here" > infrastructure/docker/.env
5263

5364
docker-compose -f infrastructure/docker/docker-compose.yml \
54-
--env-file infrastructure/docker/.env up -d # 🔥 start everything
65+
--env-file infrastructure/docker/.env up -d # start desktop, agent & UI
5566
```
67+
Once running, open `http://localhost:9992` to chat with the agent.
5668

5769
Stop:
5870

0 commit comments

Comments
 (0)