claude-mpm 4.2.43__py3-none-any.whl → 4.2.51__py3-none-any.whl

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 (155) hide show
  1. claude_mpm/VERSION +1 -1
  2. claude_mpm/agents/BASE_PM.md +117 -12
  3. claude_mpm/agents/INSTRUCTIONS.md +154 -10
  4. claude_mpm/agents/WORKFLOW.md +46 -1
  5. claude_mpm/agents/frontmatter_validator.py +20 -12
  6. claude_mpm/agents/templates/nextjs_engineer.json +277 -0
  7. claude_mpm/agents/templates/python_engineer.json +289 -0
  8. claude_mpm/agents/templates/react_engineer.json +11 -3
  9. claude_mpm/agents/templates/security.json +50 -9
  10. claude_mpm/cli/commands/agents.py +2 -2
  11. claude_mpm/cli/commands/uninstall.py +1 -2
  12. claude_mpm/cli/interactive/agent_wizard.py +3 -3
  13. claude_mpm/cli/parsers/agent_manager_parser.py +3 -3
  14. claude_mpm/cli/parsers/agents_parser.py +1 -1
  15. claude_mpm/constants.py +1 -1
  16. claude_mpm/core/api_validator.py +330 -0
  17. claude_mpm/core/error_handler.py +2 -4
  18. claude_mpm/core/file_utils.py +4 -12
  19. claude_mpm/core/framework_loader.py +22 -0
  20. claude_mpm/core/log_manager.py +8 -5
  21. claude_mpm/core/logger.py +1 -1
  22. claude_mpm/core/logging_utils.py +6 -6
  23. claude_mpm/core/unified_agent_registry.py +18 -4
  24. claude_mpm/dashboard/react/components/DataInspector/DataInspector.module.css +188 -0
  25. claude_mpm/dashboard/react/components/EventViewer/EventViewer.module.css +156 -0
  26. claude_mpm/dashboard/react/components/shared/ConnectionStatus.module.css +38 -0
  27. claude_mpm/dashboard/react/components/shared/FilterBar.module.css +92 -0
  28. claude_mpm/dashboard/static/archive/activity_dashboard_fixed.html +248 -0
  29. claude_mpm/dashboard/static/archive/activity_dashboard_test.html +61 -0
  30. claude_mpm/dashboard/static/archive/test_activity_connection.html +179 -0
  31. claude_mpm/dashboard/static/archive/test_claude_tree_tab.html +68 -0
  32. claude_mpm/dashboard/static/archive/test_dashboard.html +409 -0
  33. claude_mpm/dashboard/static/archive/test_dashboard_fixed.html +519 -0
  34. claude_mpm/dashboard/static/archive/test_dashboard_verification.html +181 -0
  35. claude_mpm/dashboard/static/archive/test_file_data.html +315 -0
  36. claude_mpm/dashboard/static/archive/test_file_tree_empty_state.html +243 -0
  37. claude_mpm/dashboard/static/archive/test_file_tree_fix.html +234 -0
  38. claude_mpm/dashboard/static/archive/test_file_tree_rename.html +117 -0
  39. claude_mpm/dashboard/static/archive/test_file_tree_tab.html +115 -0
  40. claude_mpm/dashboard/static/archive/test_file_viewer.html +224 -0
  41. claude_mpm/dashboard/static/archive/test_final_activity.html +220 -0
  42. claude_mpm/dashboard/static/archive/test_tab_fix.html +139 -0
  43. claude_mpm/dashboard/static/built/assets/events.DjpNxWNo.css +1 -0
  44. claude_mpm/dashboard/static/built/components/activity-tree.js +1 -1
  45. claude_mpm/dashboard/static/built/components/agent-hierarchy.js +777 -0
  46. claude_mpm/dashboard/static/built/components/agent-inference.js +1 -1
  47. claude_mpm/dashboard/static/built/components/build-tracker.js +333 -0
  48. claude_mpm/dashboard/static/built/components/code-simple.js +857 -0
  49. claude_mpm/dashboard/static/built/components/code-tree/tree-breadcrumb.js +353 -0
  50. claude_mpm/dashboard/static/built/components/code-tree/tree-constants.js +235 -0
  51. claude_mpm/dashboard/static/built/components/code-tree/tree-search.js +409 -0
  52. claude_mpm/dashboard/static/built/components/code-tree/tree-utils.js +435 -0
  53. claude_mpm/dashboard/static/built/components/code-viewer.js +2 -1076
  54. claude_mpm/dashboard/static/built/components/connection-debug.js +654 -0
  55. claude_mpm/dashboard/static/built/components/diff-viewer.js +891 -0
  56. claude_mpm/dashboard/static/built/components/event-processor.js +1 -1
  57. claude_mpm/dashboard/static/built/components/event-viewer.js +1 -1
  58. claude_mpm/dashboard/static/built/components/export-manager.js +1 -1
  59. claude_mpm/dashboard/static/built/components/file-change-tracker.js +443 -0
  60. claude_mpm/dashboard/static/built/components/file-change-viewer.js +690 -0
  61. claude_mpm/dashboard/static/built/components/file-tool-tracker.js +1 -1
  62. claude_mpm/dashboard/static/built/components/module-viewer.js +1 -1
  63. claude_mpm/dashboard/static/built/components/nav-bar.js +145 -0
  64. claude_mpm/dashboard/static/built/components/page-structure.js +429 -0
  65. claude_mpm/dashboard/static/built/components/session-manager.js +1 -1
  66. claude_mpm/dashboard/static/built/components/ui-state-manager.js +2 -465
  67. claude_mpm/dashboard/static/built/components/working-directory.js +1 -1
  68. claude_mpm/dashboard/static/built/connection-manager.js +536 -0
  69. claude_mpm/dashboard/static/built/dashboard.js +1 -1
  70. claude_mpm/dashboard/static/built/extension-error-handler.js +164 -0
  71. claude_mpm/dashboard/static/built/react/events.js +30 -0
  72. claude_mpm/dashboard/static/built/shared/dom-helpers.js +396 -0
  73. claude_mpm/dashboard/static/built/shared/event-bus.js +330 -0
  74. claude_mpm/dashboard/static/built/shared/event-filter-service.js +540 -0
  75. claude_mpm/dashboard/static/built/shared/logger.js +385 -0
  76. claude_mpm/dashboard/static/built/shared/page-structure.js +251 -0
  77. claude_mpm/dashboard/static/built/shared/tooltip-service.js +253 -0
  78. claude_mpm/dashboard/static/built/socket-client.js +1 -1
  79. claude_mpm/dashboard/static/built/tab-isolation-fix.js +185 -0
  80. claude_mpm/dashboard/static/css/dashboard.css +28 -5
  81. claude_mpm/dashboard/static/dist/assets/events.DjpNxWNo.css +1 -0
  82. claude_mpm/dashboard/static/dist/components/activity-tree.js +1 -1
  83. claude_mpm/dashboard/static/dist/components/agent-inference.js +1 -1
  84. claude_mpm/dashboard/static/dist/components/code-viewer.js +2 -0
  85. claude_mpm/dashboard/static/dist/components/event-processor.js +1 -1
  86. claude_mpm/dashboard/static/dist/components/event-viewer.js +1 -1
  87. claude_mpm/dashboard/static/dist/components/export-manager.js +1 -1
  88. claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +1 -1
  89. claude_mpm/dashboard/static/dist/components/module-viewer.js +1 -1
  90. claude_mpm/dashboard/static/dist/components/session-manager.js +1 -1
  91. claude_mpm/dashboard/static/dist/components/working-directory.js +1 -1
  92. claude_mpm/dashboard/static/dist/dashboard.js +1 -1
  93. claude_mpm/dashboard/static/dist/react/events.js +30 -0
  94. claude_mpm/dashboard/static/dist/socket-client.js +1 -1
  95. claude_mpm/dashboard/static/events.html +607 -0
  96. claude_mpm/dashboard/static/index.html +713 -0
  97. claude_mpm/dashboard/static/js/components/activity-tree.js +3 -17
  98. claude_mpm/dashboard/static/js/components/agent-hierarchy.js +4 -1
  99. claude_mpm/dashboard/static/js/components/agent-inference.js +3 -0
  100. claude_mpm/dashboard/static/js/components/build-tracker.js +8 -0
  101. claude_mpm/dashboard/static/js/components/code-viewer.js +387 -72
  102. claude_mpm/dashboard/static/js/components/event-processor.js +3 -0
  103. claude_mpm/dashboard/static/js/components/event-viewer.js +39 -2
  104. claude_mpm/dashboard/static/js/components/export-manager.js +3 -0
  105. claude_mpm/dashboard/static/js/components/file-tool-tracker.js +30 -10
  106. claude_mpm/dashboard/static/js/components/socket-manager.js +4 -0
  107. claude_mpm/dashboard/static/js/components/ui-state-manager.js +286 -108
  108. claude_mpm/dashboard/static/js/components/working-directory.js +3 -0
  109. claude_mpm/dashboard/static/js/dashboard.js +61 -49
  110. claude_mpm/dashboard/static/js/socket-client.js +12 -8
  111. claude_mpm/dashboard/static/js/stores/dashboard-store.js +562 -0
  112. claude_mpm/dashboard/static/js/tab-isolation-fix.js +185 -0
  113. claude_mpm/dashboard/static/legacy/activity.html +736 -0
  114. claude_mpm/dashboard/static/legacy/agents.html +786 -0
  115. claude_mpm/dashboard/static/legacy/files.html +747 -0
  116. claude_mpm/dashboard/static/legacy/tools.html +831 -0
  117. claude_mpm/dashboard/static/monitors-index.html +218 -0
  118. claude_mpm/dashboard/static/monitors.html +431 -0
  119. claude_mpm/dashboard/static/production/events.html +659 -0
  120. claude_mpm/dashboard/static/production/main.html +715 -0
  121. claude_mpm/dashboard/static/production/monitors.html +483 -0
  122. claude_mpm/dashboard/static/socket.io.min.js +7 -0
  123. claude_mpm/dashboard/static/socket.io.v4.8.1.backup.js +7 -0
  124. claude_mpm/dashboard/static/test-archive/dashboard.html +635 -0
  125. claude_mpm/dashboard/static/test-archive/debug-events.html +147 -0
  126. claude_mpm/dashboard/static/test-archive/test-navigation.html +256 -0
  127. claude_mpm/dashboard/static/test-archive/test-react-exports.html +180 -0
  128. claude_mpm/dashboard/templates/index.html +82 -38
  129. claude_mpm/hooks/claude_hooks/services/connection_manager_http.py +1 -1
  130. claude_mpm/services/agents/deployment/agent_discovery_service.py +3 -0
  131. claude_mpm/services/agents/deployment/agent_template_builder.py +25 -8
  132. claude_mpm/services/agents/deployment/agent_validator.py +3 -0
  133. claude_mpm/services/agents/deployment/validation/template_validator.py +13 -4
  134. claude_mpm/services/agents/local_template_manager.py +2 -6
  135. claude_mpm/services/monitor/daemon.py +1 -2
  136. claude_mpm/services/monitor/daemon_manager.py +2 -5
  137. claude_mpm/services/monitor/event_emitter.py +2 -2
  138. claude_mpm/services/monitor/handlers/code_analysis.py +4 -6
  139. claude_mpm/services/monitor/handlers/hooks.py +2 -4
  140. claude_mpm/services/monitor/server.py +23 -226
  141. claude_mpm/tools/code_tree_analyzer.py +2 -2
  142. {claude_mpm-4.2.43.dist-info → claude_mpm-4.2.51.dist-info}/METADATA +1 -1
  143. {claude_mpm-4.2.43.dist-info → claude_mpm-4.2.51.dist-info}/RECORD +148 -87
  144. claude_mpm/commands/mpm-browser-monitor.md +0 -370
  145. claude_mpm/commands/mpm-monitor.md +0 -177
  146. claude_mpm/dashboard/static/js/browser-console-monitor.js +0 -495
  147. claude_mpm/dashboard/static/js/components/browser-log-viewer.js +0 -763
  148. claude_mpm/dashboard/static/test-browser-monitor.html +0 -470
  149. claude_mpm/dashboard/static/test-simple.html +0 -97
  150. claude_mpm/services/monitor/handlers/browser.py +0 -451
  151. /claude_mpm/dashboard/static/{test_debug.html → test-archive/test_debug.html} +0 -0
  152. {claude_mpm-4.2.43.dist-info → claude_mpm-4.2.51.dist-info}/WHEEL +0 -0
  153. {claude_mpm-4.2.43.dist-info → claude_mpm-4.2.51.dist-info}/entry_points.txt +0 -0
  154. {claude_mpm-4.2.43.dist-info → claude_mpm-4.2.51.dist-info}/licenses/LICENSE +0 -0
  155. {claude_mpm-4.2.43.dist-info → claude_mpm-4.2.51.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,654 @@
1
+ /**
2
+ * Connection Debug Panel
3
+ *
4
+ * Provides detailed connection metrics and debugging tools
5
+ * for troubleshooting connection issues.
6
+ */
7
+
8
+ class ConnectionDebugPanel {
9
+ constructor(connectionManager) {
10
+ this.connectionManager = connectionManager;
11
+ this.isVisible = false;
12
+ this.updateInterval = null;
13
+
14
+ this.init();
15
+ }
16
+
17
+ init() {
18
+ // Create debug panel HTML
19
+ this.createPanel();
20
+
21
+ // Setup event listeners
22
+ this.setupEventListeners();
23
+
24
+ // Start metric updates when visible
25
+ this.connectionManager.onStatusChange(() => {
26
+ if (this.isVisible) {
27
+ this.updateMetrics();
28
+ }
29
+ });
30
+ }
31
+
32
+ createPanel() {
33
+ const panel = document.createElement('div');
34
+ panel.id = 'connection-debug-panel';
35
+ panel.className = 'connection-debug-panel';
36
+ panel.style.display = 'none';
37
+
38
+ panel.innerHTML = `
39
+ <div class="debug-panel-header">
40
+ <h3>🔧 Connection Debug</h3>
41
+ <button id="close-debug-panel" class="btn-close">✕</button>
42
+ </div>
43
+
44
+ <div class="debug-panel-content">
45
+ <!-- Connection Info -->
46
+ <div class="debug-section">
47
+ <h4>Connection Info</h4>
48
+ <div class="debug-info">
49
+ <div class="info-row">
50
+ <span class="info-label">Client ID:</span>
51
+ <span id="debug-client-id" class="info-value">--</span>
52
+ </div>
53
+ <div class="info-row">
54
+ <span class="info-label">Socket ID:</span>
55
+ <span id="debug-socket-id" class="info-value">--</span>
56
+ </div>
57
+ <div class="info-row">
58
+ <span class="info-label">State:</span>
59
+ <span id="debug-state" class="info-value">--</span>
60
+ </div>
61
+ <div class="info-row">
62
+ <span class="info-label">Quality:</span>
63
+ <span id="debug-quality" class="info-value">--</span>
64
+ </div>
65
+ <div class="info-row">
66
+ <span class="info-label">Last Sequence:</span>
67
+ <span id="debug-sequence" class="info-value">--</span>
68
+ </div>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- Connection Metrics -->
73
+ <div class="debug-section">
74
+ <h4>Metrics</h4>
75
+ <div class="metrics-grid">
76
+ <div class="metric-item">
77
+ <span class="metric-value" id="debug-total-events">0</span>
78
+ <span class="metric-label">Total Events</span>
79
+ </div>
80
+ <div class="metric-item">
81
+ <span class="metric-value" id="debug-events-acked">0</span>
82
+ <span class="metric-label">Acknowledged</span>
83
+ </div>
84
+ <div class="metric-item">
85
+ <span class="metric-value" id="debug-buffered">0</span>
86
+ <span class="metric-label">Buffered</span>
87
+ </div>
88
+ <div class="metric-item">
89
+ <span class="metric-value" id="debug-reconnects">0</span>
90
+ <span class="metric-label">Reconnects</span>
91
+ </div>
92
+ </div>
93
+ </div>
94
+
95
+ <!-- Connection Timeline -->
96
+ <div class="debug-section">
97
+ <h4>Connection Timeline</h4>
98
+ <div id="debug-timeline" class="debug-timeline">
99
+ <!-- Timeline events will be added here -->
100
+ </div>
101
+ </div>
102
+
103
+ <!-- Debug Actions -->
104
+ <div class="debug-section">
105
+ <h4>Debug Actions</h4>
106
+ <div class="debug-actions">
107
+ <button id="debug-force-reconnect" class="btn-action">Force Reconnect</button>
108
+ <button id="debug-request-stats" class="btn-action">Request Stats</button>
109
+ <button id="debug-clear-buffer" class="btn-action">Clear Buffer</button>
110
+ <button id="debug-simulate-disconnect" class="btn-action">Simulate Disconnect</button>
111
+ <button id="debug-export-logs" class="btn-action">Export Logs</button>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- Network Tests -->
116
+ <div class="debug-section">
117
+ <h4>Network Tests</h4>
118
+ <div class="network-tests">
119
+ <div class="test-row">
120
+ <button id="test-latency" class="btn-test">Test Latency</button>
121
+ <span id="latency-result" class="test-result">--</span>
122
+ </div>
123
+ <div class="test-row">
124
+ <button id="test-throughput" class="btn-test">Test Throughput</button>
125
+ <span id="throughput-result" class="test-result">--</span>
126
+ </div>
127
+ <div class="test-row">
128
+ <button id="test-stability" class="btn-test">Test Stability</button>
129
+ <span id="stability-result" class="test-result">--</span>
130
+ </div>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- Event Log -->
135
+ <div class="debug-section">
136
+ <h4>Recent Events</h4>
137
+ <div id="debug-event-log" class="event-log">
138
+ <!-- Recent events will be shown here -->
139
+ </div>
140
+ </div>
141
+ </div>
142
+ `;
143
+
144
+ document.body.appendChild(panel);
145
+
146
+ // Add styles
147
+ this.addStyles();
148
+ }
149
+
150
+ addStyles() {
151
+ const style = document.createElement('style');
152
+ style.textContent = `
153
+ .connection-debug-panel {
154
+ position: fixed;
155
+ right: 20px;
156
+ top: 80px;
157
+ width: 400px;
158
+ max-height: 80vh;
159
+ background: white;
160
+ border-radius: 12px;
161
+ box-shadow: 0 8px 32px rgba(0,0,0,0.15);
162
+ z-index: 1001;
163
+ overflow: hidden;
164
+ display: flex;
165
+ flex-direction: column;
166
+ }
167
+
168
+ .debug-panel-header {
169
+ display: flex;
170
+ justify-content: space-between;
171
+ align-items: center;
172
+ padding: 16px;
173
+ background: linear-gradient(135deg, #667eea 0%, #4299e1 100%);
174
+ color: white;
175
+ }
176
+
177
+ .debug-panel-header h3 {
178
+ margin: 0;
179
+ font-size: 16px;
180
+ }
181
+
182
+ .btn-close {
183
+ background: rgba(255,255,255,0.2);
184
+ border: none;
185
+ color: white;
186
+ width: 28px;
187
+ height: 28px;
188
+ border-radius: 50%;
189
+ cursor: pointer;
190
+ font-size: 16px;
191
+ transition: background 0.2s;
192
+ }
193
+
194
+ .btn-close:hover {
195
+ background: rgba(255,255,255,0.3);
196
+ }
197
+
198
+ .debug-panel-content {
199
+ overflow-y: auto;
200
+ padding: 16px;
201
+ max-height: calc(80vh - 60px);
202
+ }
203
+
204
+ .debug-section {
205
+ margin-bottom: 20px;
206
+ padding-bottom: 16px;
207
+ border-bottom: 1px solid #e2e8f0;
208
+ }
209
+
210
+ .debug-section:last-child {
211
+ border-bottom: none;
212
+ }
213
+
214
+ .debug-section h4 {
215
+ margin: 0 0 12px 0;
216
+ font-size: 14px;
217
+ color: #2d3748;
218
+ font-weight: 600;
219
+ }
220
+
221
+ .debug-info {
222
+ background: #f7fafc;
223
+ padding: 12px;
224
+ border-radius: 8px;
225
+ }
226
+
227
+ .info-row {
228
+ display: flex;
229
+ justify-content: space-between;
230
+ padding: 4px 0;
231
+ font-size: 13px;
232
+ }
233
+
234
+ .info-label {
235
+ color: #718096;
236
+ }
237
+
238
+ .info-value {
239
+ font-family: 'SF Mono', Monaco, monospace;
240
+ color: #2d3748;
241
+ font-weight: 500;
242
+ }
243
+
244
+ .debug-actions {
245
+ display: grid;
246
+ grid-template-columns: repeat(2, 1fr);
247
+ gap: 8px;
248
+ }
249
+
250
+ .btn-action {
251
+ padding: 8px 12px;
252
+ background: #4299e1;
253
+ color: white;
254
+ border: none;
255
+ border-radius: 6px;
256
+ font-size: 12px;
257
+ cursor: pointer;
258
+ transition: background 0.2s;
259
+ }
260
+
261
+ .btn-action:hover {
262
+ background: #3182ce;
263
+ }
264
+
265
+ .network-tests {
266
+ display: flex;
267
+ flex-direction: column;
268
+ gap: 8px;
269
+ }
270
+
271
+ .test-row {
272
+ display: flex;
273
+ align-items: center;
274
+ gap: 12px;
275
+ }
276
+
277
+ .btn-test {
278
+ flex: 0 0 120px;
279
+ padding: 6px 12px;
280
+ background: #805ad5;
281
+ color: white;
282
+ border: none;
283
+ border-radius: 6px;
284
+ font-size: 12px;
285
+ cursor: pointer;
286
+ }
287
+
288
+ .test-result {
289
+ flex: 1;
290
+ padding: 6px 12px;
291
+ background: #f7fafc;
292
+ border-radius: 6px;
293
+ font-size: 12px;
294
+ font-family: 'SF Mono', Monaco, monospace;
295
+ }
296
+
297
+ .debug-timeline {
298
+ max-height: 150px;
299
+ overflow-y: auto;
300
+ background: #f7fafc;
301
+ padding: 8px;
302
+ border-radius: 8px;
303
+ font-size: 12px;
304
+ }
305
+
306
+ .timeline-event {
307
+ padding: 4px 0;
308
+ border-bottom: 1px solid #e2e8f0;
309
+ }
310
+
311
+ .timeline-event:last-child {
312
+ border-bottom: none;
313
+ }
314
+
315
+ .timeline-time {
316
+ color: #718096;
317
+ font-size: 11px;
318
+ }
319
+
320
+ .timeline-desc {
321
+ color: #2d3748;
322
+ margin-top: 2px;
323
+ }
324
+
325
+ .event-log {
326
+ max-height: 200px;
327
+ overflow-y: auto;
328
+ background: #1a202c;
329
+ color: #e2e8f0;
330
+ padding: 12px;
331
+ border-radius: 8px;
332
+ font-family: 'SF Mono', Monaco, monospace;
333
+ font-size: 11px;
334
+ }
335
+
336
+ .log-entry {
337
+ padding: 2px 0;
338
+ }
339
+
340
+ .log-time {
341
+ color: #718096;
342
+ }
343
+
344
+ .log-type {
345
+ color: #4299e1;
346
+ font-weight: 600;
347
+ }
348
+
349
+ .log-data {
350
+ color: #cbd5e0;
351
+ }
352
+
353
+ @media (max-width: 768px) {
354
+ .connection-debug-panel {
355
+ right: 10px;
356
+ left: 10px;
357
+ width: auto;
358
+ }
359
+ }
360
+ `;
361
+
362
+ document.head.appendChild(style);
363
+ }
364
+
365
+ setupEventListeners() {
366
+ // Close button
367
+ document.getElementById('close-debug-panel').addEventListener('click', () => {
368
+ this.hide();
369
+ });
370
+
371
+ // Debug actions
372
+ document.getElementById('debug-force-reconnect').addEventListener('click', () => {
373
+ this.forceReconnect();
374
+ });
375
+
376
+ document.getElementById('debug-request-stats').addEventListener('click', () => {
377
+ this.requestStats();
378
+ });
379
+
380
+ document.getElementById('debug-clear-buffer').addEventListener('click', () => {
381
+ this.clearBuffer();
382
+ });
383
+
384
+ document.getElementById('debug-simulate-disconnect').addEventListener('click', () => {
385
+ this.simulateDisconnect();
386
+ });
387
+
388
+ document.getElementById('debug-export-logs').addEventListener('click', () => {
389
+ this.exportLogs();
390
+ });
391
+
392
+ // Network tests
393
+ document.getElementById('test-latency').addEventListener('click', () => {
394
+ this.testLatency();
395
+ });
396
+
397
+ document.getElementById('test-throughput').addEventListener('click', () => {
398
+ this.testThroughput();
399
+ });
400
+
401
+ document.getElementById('test-stability').addEventListener('click', () => {
402
+ this.testStability();
403
+ });
404
+ }
405
+
406
+ show() {
407
+ const panel = document.getElementById('connection-debug-panel');
408
+ panel.style.display = 'flex';
409
+ this.isVisible = true;
410
+
411
+ // Start metric updates
412
+ this.startMetricUpdates();
413
+
414
+ // Initial update
415
+ this.updateMetrics();
416
+ }
417
+
418
+ hide() {
419
+ const panel = document.getElementById('connection-debug-panel');
420
+ panel.style.display = 'none';
421
+ this.isVisible = false;
422
+
423
+ // Stop metric updates
424
+ this.stopMetricUpdates();
425
+ }
426
+
427
+ toggle() {
428
+ if (this.isVisible) {
429
+ this.hide();
430
+ } else {
431
+ this.show();
432
+ }
433
+ }
434
+
435
+ startMetricUpdates() {
436
+ this.updateInterval = setInterval(() => {
437
+ this.updateMetrics();
438
+ }, 1000);
439
+ }
440
+
441
+ stopMetricUpdates() {
442
+ if (this.updateInterval) {
443
+ clearInterval(this.updateInterval);
444
+ this.updateInterval = null;
445
+ }
446
+ }
447
+
448
+ updateMetrics() {
449
+ const metrics = this.connectionManager.getMetrics();
450
+ const socket = this.connectionManager.socket;
451
+
452
+ // Update connection info
453
+ document.getElementById('debug-client-id').textContent = metrics.clientId || '--';
454
+ document.getElementById('debug-socket-id').textContent = socket?.id || '--';
455
+ document.getElementById('debug-state').textContent = metrics.connectionState || '--';
456
+ document.getElementById('debug-quality').textContent =
457
+ `${Math.round(metrics.connectionQuality * 100)}%`;
458
+ document.getElementById('debug-sequence').textContent = metrics.lastSequence || '0';
459
+
460
+ // Update metrics
461
+ document.getElementById('debug-total-events').textContent = metrics.totalEvents || '0';
462
+ document.getElementById('debug-events-acked').textContent = metrics.eventsAcked || '0';
463
+ document.getElementById('debug-buffered').textContent = metrics.bufferedEvents || '0';
464
+ document.getElementById('debug-reconnects').textContent = metrics.totalReconnections || '0';
465
+ }
466
+
467
+ addTimelineEvent(description) {
468
+ const timeline = document.getElementById('debug-timeline');
469
+ const event = document.createElement('div');
470
+ event.className = 'timeline-event';
471
+
472
+ const now = new Date();
473
+ event.innerHTML = `
474
+ <div class="timeline-time">${now.toLocaleTimeString()}</div>
475
+ <div class="timeline-desc">${description}</div>
476
+ `;
477
+
478
+ timeline.insertBefore(event, timeline.firstChild);
479
+
480
+ // Keep only last 20 events
481
+ while (timeline.children.length > 20) {
482
+ timeline.removeChild(timeline.lastChild);
483
+ }
484
+ }
485
+
486
+ addLogEntry(type, data) {
487
+ const log = document.getElementById('debug-event-log');
488
+ const entry = document.createElement('div');
489
+ entry.className = 'log-entry';
490
+
491
+ const now = new Date();
492
+ entry.innerHTML = `
493
+ <span class="log-time">${now.toLocaleTimeString()}</span>
494
+ <span class="log-type">${type}</span>
495
+ <span class="log-data">${JSON.stringify(data)}</span>
496
+ `;
497
+
498
+ log.insertBefore(entry, log.firstChild);
499
+
500
+ // Keep only last 50 entries
501
+ while (log.children.length > 50) {
502
+ log.removeChild(log.lastChild);
503
+ }
504
+ }
505
+
506
+ // Debug actions
507
+ forceReconnect() {
508
+ this.addTimelineEvent('Force reconnect initiated');
509
+ if (this.connectionManager.socket) {
510
+ this.connectionManager.socket.disconnect();
511
+ setTimeout(() => {
512
+ this.connectionManager.socket.connect();
513
+ }, 100);
514
+ }
515
+ }
516
+
517
+ requestStats() {
518
+ this.addTimelineEvent('Requesting connection stats');
519
+ if (this.connectionManager.socket) {
520
+ this.connectionManager.socket.emit('get_connection_stats');
521
+ }
522
+ }
523
+
524
+ clearBuffer() {
525
+ this.addTimelineEvent('Clearing event buffer');
526
+ this.connectionManager.eventBuffer = [];
527
+ localStorage.removeItem('claude_mpm_event_buffer');
528
+ this.updateMetrics();
529
+ }
530
+
531
+ simulateDisconnect() {
532
+ this.addTimelineEvent('Simulating disconnect');
533
+ if (this.connectionManager.socket) {
534
+ this.connectionManager.socket.disconnect();
535
+ }
536
+ }
537
+
538
+ exportLogs() {
539
+ const logs = {
540
+ metrics: this.connectionManager.getMetrics(),
541
+ timeline: [],
542
+ events: []
543
+ };
544
+
545
+ // Collect timeline events
546
+ const timeline = document.getElementById('debug-timeline');
547
+ Array.from(timeline.children).forEach(child => {
548
+ logs.timeline.push(child.textContent.trim());
549
+ });
550
+
551
+ // Collect event log
552
+ const eventLog = document.getElementById('debug-event-log');
553
+ Array.from(eventLog.children).forEach(child => {
554
+ logs.events.push(child.textContent.trim());
555
+ });
556
+
557
+ // Download as JSON
558
+ const blob = new Blob([JSON.stringify(logs, null, 2)], { type: 'application/json' });
559
+ const url = URL.createObjectURL(blob);
560
+ const a = document.createElement('a');
561
+ a.href = url;
562
+ a.download = `connection-debug-${Date.now()}.json`;
563
+ a.click();
564
+ URL.revokeObjectURL(url);
565
+
566
+ this.addTimelineEvent('Logs exported');
567
+ }
568
+
569
+ // Network tests
570
+ async testLatency() {
571
+ const resultEl = document.getElementById('latency-result');
572
+ resultEl.textContent = 'Testing...';
573
+
574
+ const start = Date.now();
575
+ this.connectionManager.socket.emit('ping');
576
+
577
+ // Wait for pong
578
+ const pongHandler = () => {
579
+ const latency = Date.now() - start;
580
+ resultEl.textContent = `${latency}ms`;
581
+ this.connectionManager.socket.off('pong', pongHandler);
582
+ this.addTimelineEvent(`Latency test: ${latency}ms`);
583
+ };
584
+
585
+ this.connectionManager.socket.on('pong', pongHandler);
586
+
587
+ // Timeout after 5 seconds
588
+ setTimeout(() => {
589
+ this.connectionManager.socket.off('pong', pongHandler);
590
+ if (resultEl.textContent === 'Testing...') {
591
+ resultEl.textContent = 'Timeout';
592
+ }
593
+ }, 5000);
594
+ }
595
+
596
+ async testThroughput() {
597
+ const resultEl = document.getElementById('throughput-result');
598
+ resultEl.textContent = 'Testing...';
599
+
600
+ // Send 100 events rapidly
601
+ const start = Date.now();
602
+ let received = 0;
603
+
604
+ const handler = () => {
605
+ received++;
606
+ if (received === 100) {
607
+ const duration = (Date.now() - start) / 1000;
608
+ const throughput = Math.round(100 / duration);
609
+ resultEl.textContent = `${throughput} evt/s`;
610
+ this.addTimelineEvent(`Throughput test: ${throughput} events/sec`);
611
+ }
612
+ };
613
+
614
+ this.connectionManager.socket.on('test_response', handler);
615
+
616
+ for (let i = 0; i < 100; i++) {
617
+ this.connectionManager.socket.emit('test_event', { index: i });
618
+ }
619
+
620
+ // Cleanup after 10 seconds
621
+ setTimeout(() => {
622
+ this.connectionManager.socket.off('test_response', handler);
623
+ if (received < 100) {
624
+ resultEl.textContent = `${received}/100 received`;
625
+ }
626
+ }, 10000);
627
+ }
628
+
629
+ async testStability() {
630
+ const resultEl = document.getElementById('stability-result');
631
+ resultEl.textContent = 'Testing (30s)...';
632
+
633
+ let disconnects = 0;
634
+ let reconnects = 0;
635
+ const startMetrics = { ...this.connectionManager.metrics };
636
+
637
+ // Monitor for 30 seconds
638
+ setTimeout(() => {
639
+ const endMetrics = this.connectionManager.metrics;
640
+ disconnects = endMetrics.totalConnections - startMetrics.totalConnections;
641
+
642
+ if (disconnects === 0) {
643
+ resultEl.textContent = 'Stable ✓';
644
+ } else {
645
+ resultEl.textContent = `${disconnects} drops`;
646
+ }
647
+
648
+ this.addTimelineEvent(`Stability test: ${disconnects} disconnections`);
649
+ }, 30000);
650
+ }
651
+ }
652
+
653
+ // Export for use
654
+ export { ConnectionDebugPanel };