agentflow-dashboard 0.4.1 → 0.6.0

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/public/debug.html CHANGED
@@ -10,8 +10,8 @@ fetch('/api/process-health')
10
10
 
11
11
  // Test categorization
12
12
  const processes = data.osProcesses || [];
13
- let agents = [];
14
- let infrastructure = [];
13
+ const agents = [];
14
+ const infrastructure = [];
15
15
 
16
16
  processes.forEach(proc => {
17
17
  const cmd = proc.command.toLowerCase();
package/public/index.html CHANGED
@@ -1235,6 +1235,7 @@
1235
1235
  <div class="tab" data-tab="state">State Machine</div>
1236
1236
  <div class="tab" data-tab="summary">Summary</div>
1237
1237
  <div class="tab" data-tab="transcript">Transcript</div>
1238
+ <div class="tab" data-tab="agenttimeline">Agent Timeline</div>
1238
1239
  <div class="tab" data-tab="processmap">Process Map</div>
1239
1240
  </div>
1240
1241
 
@@ -1334,6 +1335,17 @@
1334
1335
  </div>
1335
1336
  </div>
1336
1337
 
1338
+ <!-- Agent Timeline (Gantt) tab -->
1339
+ <div class="tab-panel" id="panel-agenttimeline">
1340
+ <div class="timeline-container" id="agentTimelineContent" style="overflow:auto;">
1341
+ <div class="empty-state" id="agentTimelineEmpty">
1342
+ <div class="empty-state-icon">&#9776;</div>
1343
+ <div class="empty-state-title">Agent Timeline</div>
1344
+ <div class="empty-state-text">Select a trace to view all executions for its agent as a Gantt chart.</div>
1345
+ </div>
1346
+ </div>
1347
+ </div>
1348
+
1337
1349
  <!-- Process Map tab -->
1338
1350
  <div class="tab-panel" id="panel-processmap">
1339
1351
  <div id="cyProcessMap" style="width:100%;height:100%;min-height:500px;">