agentgui 1.0.830 → 1.0.831
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 +22 -1
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -74,7 +74,28 @@ static/js/app-shortcuts.js Keyboard shortcuts overlay
|
|
|
74
74
|
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
|
-
static/js/client.js
|
|
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)
|
|
98
|
+
static/js/client-utils.js renderMessagesFragment, renderMessages, escapeHtml, showError, on, emit, agent/model getters, draft/prompt helpers, destroy (prototype extension)
|
|
78
99
|
static/js/conversations.js Conversation management (class definition)
|
|
79
100
|
static/js/conv-list-renderer.js Conversation list render, CRUD, WS listener (prototype extension)
|
|
80
101
|
static/js/conv-sidebar-actions.js Sidebar delegated listeners, folder browser (prototype extension)
|