agentgui 1.0.839 → 1.0.840
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 +27 -21
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -54,6 +54,12 @@ lib/routes-tools.js Tool management HTTP route handlers (list, install, updat
|
|
|
54
54
|
lib/routes-util.js Utility HTTP route handlers (clone, folders, git, home, version, import)
|
|
55
55
|
lib/routes-agents.js Agent list/search/auth-status/descriptor/models HTTP route handlers
|
|
56
56
|
lib/routes-conversations.js Conversation CRUD HTTP route handlers (list, create, get, update, delete, archive, restore)
|
|
57
|
+
lib/routes-messages.js Message/stream/queue HTTP route handlers (GET+POST messages, stream, queue CRUD)
|
|
58
|
+
lib/routes-sessions.js Session/chunk/full/execution HTTP route handlers (session get, chunks, full load, execution events)
|
|
59
|
+
lib/routes-runs.js Runs HTTP route handlers (POST /api/runs, runs search, run by id, wait, cancel, thread run cancel/wait)
|
|
60
|
+
lib/routes-scripts.js Scripts/cancel/resume/inject HTTP route handlers (conversation scripts, run-script, stop-script, cancel, resume, inject)
|
|
61
|
+
lib/routes-agent-actions.js Agent auth and update HTTP route handlers (POST /api/agents/:id/auth, POST /api/agents/:id/update)
|
|
62
|
+
lib/routes-auth-config.js Auth config HTTP route handlers (GET /api/auth/configs, POST /api/auth/save-config)
|
|
57
63
|
lib/routes-debug.js Debug/backup/restore/ws-stats HTTP route handlers
|
|
58
64
|
lib/routes-threads.js Thread CRUD HTTP route handlers (ACP v0.2.3 thread API)
|
|
59
65
|
lib/ws-protocol.js WebSocket RPC router (WsRouter class)
|
|
@@ -74,27 +80,27 @@ static/js/app-shortcuts.js Keyboard shortcuts overlay
|
|
|
74
80
|
static/theme.js Theme switching
|
|
75
81
|
static/css/main.css All application styles (extracted from index.html)
|
|
76
82
|
static/css/tools-popup.css Tool popup styles
|
|
77
|
-
static/js/client.js AgentGUIClient class (constructor + _dbg + init); instantiation at bottom
|
|
78
|
-
static/js/client-ws.js WebSocket listeners, _convIsStreaming, _setConvStreaming, setupRendererListeners, restoreStateFromUrl, isValidId (prototype extension)
|
|
79
|
-
static/js/client-url.js URL/scroll helpers: updateUrlForConversation, saveScrollPosition, restoreScrollPosition, setupScrollTracking (prototype extension)
|
|
80
|
-
static/js/client-ui.js setupUI (modified, calls _setupUIButtonEvents/_setupUIWindowEvents) + setupChatMicButton (prototype extension)
|
|
81
|
-
static/js/client-ui-controls.js _setupUIButtonEvents + _setupUIWindowEvents extracted helpers (prototype extension)
|
|
82
|
-
static/js/client-ws-msg.js connectWebSocket, handleWebSocketMessage, queueEvent (prototype extension)
|
|
83
|
-
static/js/client-streaming.js handleStreamingStart (prototype extension)
|
|
84
|
-
static/js/client-streaming2.js handleStreamingResumed, handleStreamingProgress, _handleStreamingProgressInner (prototype extension)
|
|
85
|
-
static/js/client-streaming3.js renderBlockContent, scrollToBottom, _showNewContentPill, _removeNewContentPill, handleStreamingError (prototype extension)
|
|
86
|
-
static/js/client-streaming4.js handleStreamingComplete, _promptPushIfWeOwnRemote, handleConversationCreated, handleMessageCreated, queue handlers (prototype extension)
|
|
87
|
-
static/js/client-events.js fetchAndRenderQueue, handleRateLimitHit/Clear, handleAllConversationsDeleted, isHtmlContent, sanitizeHtml, parseMarkdownCodeBlocks (prototype extension)
|
|
88
|
-
static/js/client-render.js renderCodeBlock, renderMessageContent (prototype extension)
|
|
89
|
-
static/js/client-exec.js startExecution, optimistic message helpers, _subscribeToConversationUpdates, _flushBgCache (prototype extension)
|
|
90
|
-
static/js/client-helpers.js _recoverMissedChunks, cache/placeholder/height/countdown/debug helpers, showLoadingSpinner/hideLoadingSpinner (prototype extension)
|
|
91
|
-
static/js/client-ui2.js _showWelcomeScreen, _showSkeletonLoading, streamToConversation, _hydrateSessionBlocks (prototype extension)
|
|
92
|
-
static/js/client-conv.js _getLazyObserver, _renderConversationContent, renderChunk, _renderChunkInner, loadAgents, loadSubAgentsForCli (prototype extension)
|
|
93
|
-
static/js/client-agents.js checkSpeechStatus, loadModelsForAgent, _populateModelSelector, lock/unlockAgentAndModel, applyAgentAndModelSelection, loadConversations, updateConnectionStatus (prototype extension)
|
|
94
|
-
static/js/client-status.js _updateConnectionIndicator, _handleModelDownloadProgress, _handleTTSSetupProgress, _toggleConnectionTooltip, updateMetrics, controls, toggleTheme, createNewConversation (prototype extension)
|
|
95
|
-
static/js/client-cache.js cacheCurrentConversation, invalidateCache, loadConversationMessages (prototype extension)
|
|
96
|
-
static/js/client-load.js _makeLoadRequest, _verifyRequestId, _completeLoadRequest, _loadConvRender (prototype extension)
|
|
97
|
-
static/js/client-scroll.js syncPromptState, updateBusyPromptArea, removeScrollUpDetection, setupScrollUpDetection (prototype extension)
|
|
83
|
+
static/js/client.js AgentGUIClient class (constructor + _dbg + init); instantiation at bottom
|
|
84
|
+
static/js/client-ws.js WebSocket listeners, _convIsStreaming, _setConvStreaming, setupRendererListeners, restoreStateFromUrl, isValidId (prototype extension)
|
|
85
|
+
static/js/client-url.js URL/scroll helpers: updateUrlForConversation, saveScrollPosition, restoreScrollPosition, setupScrollTracking (prototype extension)
|
|
86
|
+
static/js/client-ui.js setupUI (modified, calls _setupUIButtonEvents/_setupUIWindowEvents) + setupChatMicButton (prototype extension)
|
|
87
|
+
static/js/client-ui-controls.js _setupUIButtonEvents + _setupUIWindowEvents extracted helpers (prototype extension)
|
|
88
|
+
static/js/client-ws-msg.js connectWebSocket, handleWebSocketMessage, queueEvent (prototype extension)
|
|
89
|
+
static/js/client-streaming.js handleStreamingStart (prototype extension)
|
|
90
|
+
static/js/client-streaming2.js handleStreamingResumed, handleStreamingProgress, _handleStreamingProgressInner (prototype extension)
|
|
91
|
+
static/js/client-streaming3.js renderBlockContent, scrollToBottom, _showNewContentPill, _removeNewContentPill, handleStreamingError (prototype extension)
|
|
92
|
+
static/js/client-streaming4.js handleStreamingComplete, _promptPushIfWeOwnRemote, handleConversationCreated, handleMessageCreated, queue handlers (prototype extension)
|
|
93
|
+
static/js/client-events.js fetchAndRenderQueue, handleRateLimitHit/Clear, handleAllConversationsDeleted, isHtmlContent, sanitizeHtml, parseMarkdownCodeBlocks (prototype extension)
|
|
94
|
+
static/js/client-render.js renderCodeBlock, renderMessageContent (prototype extension)
|
|
95
|
+
static/js/client-exec.js startExecution, optimistic message helpers, _subscribeToConversationUpdates, _flushBgCache (prototype extension)
|
|
96
|
+
static/js/client-helpers.js _recoverMissedChunks, cache/placeholder/height/countdown/debug helpers, showLoadingSpinner/hideLoadingSpinner (prototype extension)
|
|
97
|
+
static/js/client-ui2.js _showWelcomeScreen, _showSkeletonLoading, streamToConversation, _hydrateSessionBlocks (prototype extension)
|
|
98
|
+
static/js/client-conv.js _getLazyObserver, _renderConversationContent, renderChunk, _renderChunkInner, loadAgents, loadSubAgentsForCli (prototype extension)
|
|
99
|
+
static/js/client-agents.js checkSpeechStatus, loadModelsForAgent, _populateModelSelector, lock/unlockAgentAndModel, applyAgentAndModelSelection, loadConversations, updateConnectionStatus (prototype extension)
|
|
100
|
+
static/js/client-status.js _updateConnectionIndicator, _handleModelDownloadProgress, _handleTTSSetupProgress, _toggleConnectionTooltip, updateMetrics, controls, toggleTheme, createNewConversation (prototype extension)
|
|
101
|
+
static/js/client-cache.js cacheCurrentConversation, invalidateCache, loadConversationMessages (prototype extension)
|
|
102
|
+
static/js/client-load.js _makeLoadRequest, _verifyRequestId, _completeLoadRequest, _loadConvRender (prototype extension)
|
|
103
|
+
static/js/client-scroll.js syncPromptState, updateBusyPromptArea, removeScrollUpDetection, setupScrollUpDetection (prototype extension)
|
|
98
104
|
static/js/client-utils.js renderMessagesFragment, renderMessages, escapeHtml, showError, on, emit, agent/model getters, draft/prompt helpers, destroy (prototype extension)
|
|
99
105
|
static/js/conversations.js Conversation management (class definition)
|
|
100
106
|
static/js/conv-list-renderer.js Conversation list render, CRUD, WS listener (prototype extension)
|