agentgui 1.0.841 → 1.0.842

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.
Files changed (2) hide show
  1. package/CLAUDE.md +3 -0
  2. package/package.json +1 -1
package/CLAUDE.md CHANGED
@@ -60,6 +60,9 @@ lib/routes-runs.js Runs HTTP route handlers (POST /api/runs, runs search, ru
60
60
  lib/routes-scripts.js Scripts/cancel/resume/inject HTTP route handlers (conversation scripts, run-script, stop-script, cancel, resume, inject)
61
61
  lib/routes-agent-actions.js Agent auth and update HTTP route handlers (POST /api/agents/:id/auth, POST /api/agents/:id/update)
62
62
  lib/routes-auth-config.js Auth config HTTP route handlers (GET /api/auth/configs, POST /api/auth/save-config)
63
+ lib/http-utils.js HTTP utility functions (parseBody, acceptsEncoding, compressAndSend, sendJSON)
64
+ lib/provider-config.js Provider config helpers (buildSystemPrompt, maskKey, getProviderConfigs, saveProviderConfig, PROVIDER_CONFIGS)
65
+ lib/server-utils.js Server utility functions (logError, errLogPath, makeCleanupExecution, makeGetModelsForAgent)
63
66
  lib/routes-debug.js Debug/backup/restore/ws-stats HTTP route handlers
64
67
  lib/routes-threads.js Thread CRUD HTTP route handlers (ACP v0.2.3 thread API)
65
68
  lib/ws-protocol.js WebSocket RPC router (WsRouter class)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.841",
3
+ "version": "1.0.842",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "electron/main.js",