agentgui 1.0.750 → 1.0.751
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/CLAUDE.md +3 -1
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -15,7 +15,7 @@ Server starts on `http://localhost:3000`, redirects to `/gm/`.
|
|
|
15
15
|
|
|
16
16
|
```
|
|
17
17
|
server.js HTTP server + WebSocket + all API routes (raw http.createServer)
|
|
18
|
-
database.js SQLite
|
|
18
|
+
database.js SQLite connection, schema DDL, migrations (queries extracted to lib/db-queries.js)
|
|
19
19
|
acp-queries.js ACP query helpers (UUID, timestamp, JSON utilities)
|
|
20
20
|
bin/gmgui.cjs CLI entry point (npx agentgui / bun x agentgui)
|
|
21
21
|
|
|
@@ -28,6 +28,7 @@ lib/agent-registry-configs.js Agent registration configs (Claude Code, OpenCode
|
|
|
28
28
|
lib/agent-descriptors.js Data-driven ACP agent descriptor builder
|
|
29
29
|
lib/checkpoint-manager.js Session recovery - load checkpoints, inject into resume flow, idempotency
|
|
30
30
|
lib/codec.js msgpack encode/decode (pack/unpack wrappers)
|
|
31
|
+
lib/db-queries.js All 88 query functions (createQueries factory, extracted from database.js)
|
|
31
32
|
lib/execution-machine.js XState v5 machine per conversation: idle/streaming/draining/rate_limited states
|
|
32
33
|
lib/gm-agent-configs.js GM agent configuration and spawning
|
|
33
34
|
lib/jsonl-watcher.js Watches ~/.claude/projects for JSONL file changes
|
|
@@ -55,6 +56,7 @@ lib/plugins/ Server plugins (acp, agents, auth, database, files, git,
|
|
|
55
56
|
static/index.html Main HTML shell
|
|
56
57
|
static/app.js App initialization
|
|
57
58
|
static/theme.js Theme switching
|
|
59
|
+
static/css/main.css All application styles (extracted from index.html)
|
|
58
60
|
static/css/tools-popup.css Tool popup styles
|
|
59
61
|
static/js/client.js Main client logic
|
|
60
62
|
static/js/conversations.js Conversation management
|