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/README.md +20 -2
- package/dist/{chunk-YDFLDRWO.js → chunk-N6IN5SHX.js} +564 -260
- package/dist/cli.cjs +561 -266
- package/dist/cli.js +1 -1
- package/dist/index.cjs +561 -266
- package/dist/index.js +1 -1
- package/dist/public/dashboard.js +1418 -470
- package/dist/public/debug.html +2 -2
- package/dist/public/index.html +12 -0
- package/dist/server.cjs +561 -266
- package/dist/server.js +1 -1
- package/package.json +3 -3
- package/public/dashboard.js +1418 -470
- package/public/debug.html +2 -2
- package/public/index.html +12 -0
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
|
-
|
|
14
|
-
|
|
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">☰</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;">
|