You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Features only a multi-agent hub can offer:
1. Auto-router (/api/route_auto): classifies the request and picks the best agent automatically.
2. Agent Arena (/api/arena): same prompt to 2 agents side-by-side to compare.
3. Council (/api/council): N agents + a synthesized consensus with agreement/disagreement.
4. Pipelines (/api/pipeline): chain agents, each step's output feeds the next.
5. Shared memory (/api/memory): facts injected into every agent's context (route() brain).
6. Prompt library (/api/prompts) + /name slash-command expansion in the composer.
7. Voice in/out: Web Speech STT mic + TTS 'speak replies' toggle.
8. Command palette (Cmd/Ctrl+K): jump anywhere / ask any agent.
9. Usage meter (/api/usage): per-agent request counts + 'free via subscription' (claudecode).
10. Export conversation to Markdown; conversations persist (pinned/today/earlier).
New chat modes as chips (Auto/Arena/Council/Pipeline); Memory & prompts view; palette overlay.
Verified on Windows: memory/prompts/arena/usage endpoints round-trip (usage shows free_requests);
dashboard renders 10 chips + memory view + palette with no console errors.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,21 @@ Plus two integrations that glue it together:
172
172
173
173
**Auto-updates:**`aios start` now auto-runs `git pull` + reinstalls changed deps when the repo has updates (`updates.auto_update: true`). Turn it off in `aios.config.yaml`.
174
174
175
+
## ✨ 10 things no single-agent tool can do
176
+
177
+
Because The AI OS runs **six agents wired through one hub**, it can do multi-agent things nothing else can:
178
+
179
+
1.**🎯 Auto-router** — the hub reads your message and *automatically picks the best agent* (code → opencode, research → CrewAI…), and tells you which it chose.
180
+
2.**⚖️ Agent Arena** — send one prompt to **two agents side-by-side** and compare their answers.
181
+
3.**🏛️ Council** — ask several agents, then a chair agent **synthesizes a consensus** and flags where they disagree.
182
+
4.**⛓ Pipelines** — **chain agents**: research (CrewAI) → build (opencode) → summarize (Brain), each step feeding the next.
183
+
5.**🧠 Shared memory** — facts you save are injected into **every** agent's context, so they all know you.
184
+
6.**📚 Prompt library + slash commands** — save prompts, type `/name` in chat to expand them.
185
+
7.**🎙️ Voice in/out** — talk to the hub and have replies read aloud (browser-native, no cloud).
186
+
8.**⌘K command palette** — jump anywhere or ask any agent instantly.
187
+
9.**📊 Usage + subscription-savings meter** — counts requests per agent and shows how many ran **free on your Claude subscription**.
188
+
10.**⬇️ Export & saved conversations** — full conversation history (pinned/today/earlier), export any chat to Markdown.
189
+
175
190
**AIOS API (OpenAI-compatible):** the hub is itself an API you can POST to. Point any OpenAI client/SDK at `http://<host>:8787/v1`. The "models" are the agents/targets: `brain`, `team`, `opencode`, `crewai`, `claudecode`, `all`.
0 commit comments