agentgui 1.0.825 → 1.0.827
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 +16 -7
- package/package.json +2 -2
package/CLAUDE.md
CHANGED
|
@@ -75,14 +75,21 @@ static/theme.js Theme switching
|
|
|
75
75
|
static/css/main.css All application styles (extracted from index.html)
|
|
76
76
|
static/css/tools-popup.css Tool popup styles
|
|
77
77
|
static/js/client.js Main client logic
|
|
78
|
-
static/js/conversations.js Conversation management
|
|
78
|
+
static/js/conversations.js Conversation management (class definition)
|
|
79
|
+
static/js/conv-list-renderer.js Conversation list render, CRUD, WS listener (prototype extension)
|
|
80
|
+
static/js/conv-sidebar-actions.js Sidebar delegated listeners, folder browser (prototype extension)
|
|
81
|
+
static/js/conv-sidebar-clone.js Delete-all, clone UI, DOM-ready bootstrap (prototype extension)
|
|
79
82
|
static/js/streaming-renderer.js Renders agent streaming events as HTML
|
|
80
83
|
static/js/event-processor.js Processes incoming events
|
|
81
|
-
static/js/event-filter.js
|
|
82
|
-
static/js/websocket-manager.js WebSocket
|
|
84
|
+
static/js/event-filter-config.js Filters events by type
|
|
85
|
+
static/js/websocket-manager.js WebSocket send/subscribe/disconnect methods (prototype extension)
|
|
86
|
+
static/js/ws-core.js WebSocketManager class + connect/reconnect/heartbeat core
|
|
87
|
+
static/js/ws-latency.js WebSocket latency tracking, ping/pong, quality tiers (prototype extension)
|
|
83
88
|
static/js/ws-client.js WsClient RPC wrapper over WebSocketManager
|
|
84
|
-
static/js/ui-components.js UI component helpers
|
|
85
|
-
static/js/
|
|
89
|
+
static/js/ui-components.js UI component helpers (modal, tabs, alert, spinner, progress, collapsible)
|
|
90
|
+
static/js/ui-components-rendering.js Input/select/button/badge factory helpers (static extension)
|
|
91
|
+
static/js/syntax-highlighter.js Code syntax highlighting (class definition)
|
|
92
|
+
static/js/syntax-highlighter-render.js Token-to-HTML render logic (prototype extension)
|
|
86
93
|
static/js/voice.js Voice input/output
|
|
87
94
|
static/js/stt-handler.js Speech-to-text recording and upload
|
|
88
95
|
static/js/features.js View toggle, drag-drop upload, model progress indicator
|
|
@@ -90,8 +97,10 @@ static/js/tools-manager.js Tool install/update UI orchestrator
|
|
|
90
97
|
static/js/tools-manager-ui.js Tool card rendering + voice selector helpers
|
|
91
98
|
static/js/agent-auth.js Agent authentication UI (dropdown, auth-status, provider keys)
|
|
92
99
|
static/js/agent-auth-oauth.js OAuth modal functions (triggerAuth, onWsMessage, paste fallback)
|
|
93
|
-
static/js/dialogs.js Modal dialog system
|
|
94
|
-
static/js/
|
|
100
|
+
static/js/dialogs.js Modal dialog system (class definition)
|
|
101
|
+
static/js/dialogs-types.js Dialog type-specific render helpers (prototype extension)
|
|
102
|
+
static/js/image-loader.js Lazy image loading orchestration for agent file read events
|
|
103
|
+
static/js/image-loader-element.js ImageLoader DOM element rendering (prototype extension)
|
|
95
104
|
static/js/pm2-monitor.js PM2 process monitor UI
|
|
96
105
|
static/js/script-runner.js npm script runner UI
|
|
97
106
|
static/js/state-barrier.js Atomic state machine for conversation management
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentgui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.827",
|
|
4
4
|
"description": "Multi-agent ACP client with real-time communication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "electron/main.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@google/gemini-cli": "latest",
|
|
29
29
|
"@huggingface/transformers": "^3.8.1",
|
|
30
30
|
"@kilocode/cli": "latest",
|
|
31
|
-
"@lanmower/
|
|
31
|
+
"@lanmower/ccf": "^1.0.4",
|
|
32
32
|
"audio-decode": "^2.2.3",
|
|
33
33
|
"better-sqlite3": "^12.6.2",
|
|
34
34
|
"busboy": "^1.6.0",
|