docs: update all documentation for agor rebrand and dual-repo structure
This commit is contained in:
parent
5fadd1c022
commit
421c38cd8c
21 changed files with 225 additions and 207 deletions
14
README.md
14
README.md
|
|
@ -63,8 +63,8 @@ Agent Orchestrator lets you run multiple Claude Code agents in parallel, organiz
|
|||
Agent Orchestrator (Tauri 2.x)
|
||||
├── Rust backend (src-tauri/)
|
||||
│ ├── Commands: groups, sessions, btmsg, bttask, search, secrets, plugins, notifications
|
||||
│ ├── bterminal-core: PtyManager, SidecarManager, EventSink trait
|
||||
│ └── bterminal-relay: WebSocket server for remote machines (+ TLS)
|
||||
│ ├── agor-core: PtyManager, SidecarManager, EventSink trait
|
||||
│ └── agor-relay: WebSocket server for remote machines (+ TLS)
|
||||
├── Svelte 5 frontend (src/)
|
||||
│ ├── Workspace: ProjectGrid, ProjectBox (per-project tabs), StatusBar
|
||||
│ ├── Stores: workspace, agents, health, conflicts, wake-scheduler, plugins
|
||||
|
|
@ -97,21 +97,21 @@ npm run tauri:build
|
|||
|
||||
## Configuration
|
||||
|
||||
Config: `~/.config/bterminal/groups.json` — project groups, agents, prompts (human-editable JSON).
|
||||
Config: `~/.config/agor/groups.json` — project groups, agents, prompts (human-editable JSON).
|
||||
|
||||
Database: `~/.local/share/bterminal/` — sessions.db (sessions, metrics, anchors), btmsg.db (messages, tasks, agents).
|
||||
Database: `~/.local/share/agor/` — sessions.db (sessions, metrics, anchors), btmsg.db (messages, tasks, agents).
|
||||
|
||||
## Multi-Machine Support
|
||||
|
||||
```
|
||||
Agent Orchestrator --WebSocket/TLS--> bterminal-relay (Remote Machine)
|
||||
Agent Orchestrator --WebSocket/TLS--> agor-relay (Remote Machine)
|
||||
├── PtyManager (remote terminals)
|
||||
└── SidecarManager (remote agents)
|
||||
```
|
||||
|
||||
```bash
|
||||
cd v2 && cargo build --release -p bterminal-relay
|
||||
./target/release/bterminal-relay --port 9750 --token <secret> --tls-cert cert.pem --tls-key key.pem
|
||||
cd v2 && cargo build --release -p agor-relay
|
||||
./target/release/agor-relay --port 9750 --token <secret> --tls-cert cert.pem --tls-key key.pem
|
||||
```
|
||||
|
||||
## Keyboard Shortcuts
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue