agentgui 1.0.581 → 1.0.582
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,15 @@ Multi-agent GUI client for AI coding agents (Claude Code, Gemini CLI, OpenCode,
|
|
|
9
9
|
|
|
10
10
|

|
|
11
11
|
|
|
12
|
+
## Why AgentGUI?
|
|
13
|
+
|
|
14
|
+
Modern AI coding requires juggling multiple agents, each in their own terminal. AgentGUI solves this by providing a unified interface where you can:
|
|
15
|
+
|
|
16
|
+
- **Compare agents side-by-side** - Test the same prompt across Claude Code, Gemini CLI, OpenCode, and others
|
|
17
|
+
- **Preserve context** - Every conversation, file change, and terminal output is automatically saved
|
|
18
|
+
- **Resume interrupted work** - Pick up exactly where you left off, even after system restarts
|
|
19
|
+
- **Work visually** - See streaming responses, file changes, and tool calls in real-time instead of raw JSON
|
|
20
|
+
|
|
12
21
|
## Features
|
|
13
22
|
|
|
14
23
|
- 🤖 **Multi-Agent Support** - Switch between Claude Code, Gemini CLI, OpenCode, Kilo, and more from one interface
|
|
@@ -84,6 +93,18 @@ static/js/websocket-manager.js WebSocket connection handling
|
|
|
84
93
|
- WebSocket endpoint at `/gm/sync` for real-time updates
|
|
85
94
|
- ACP tools (OpenCode, Kilo) auto-launch as HTTP servers on startup with health checks
|
|
86
95
|
|
|
96
|
+
## Use Cases
|
|
97
|
+
|
|
98
|
+
**Multi-Agent Comparison**: Run the same task through different agents to compare approaches, quality, and speed.
|
|
99
|
+
|
|
100
|
+
**Long-Running Projects**: Build complex features across multiple sessions without losing context or conversation history.
|
|
101
|
+
|
|
102
|
+
**Team Collaboration**: Share conversation URLs and working directories for pair programming with AI agents.
|
|
103
|
+
|
|
104
|
+
**Agent Development**: Test and debug custom agents with full visibility into streaming events and tool calls.
|
|
105
|
+
|
|
106
|
+
**Offline Speech**: Use local speech-to-text and text-to-speech without API costs or internet dependency.
|
|
107
|
+
|
|
87
108
|
## REST API
|
|
88
109
|
|
|
89
110
|
All routes prefixed with `/gm`:
|