agentflow-dashboard 0.5.0 → 0.7.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-RWNVLZU7.js → chunk-GA2Y6E62.js} +1362 -335
- package/dist/cli.cjs +1352 -341
- package/dist/cli.js +1 -1
- package/dist/client/assets/index-BQUye2Lc.js +50 -0
- package/dist/client/assets/index-Ds_npIxI.css +1 -0
- package/dist/client/dashboard.js +3113 -0
- package/dist/client/index.html +13 -0
- package/dist/index.cjs +1352 -341
- package/dist/index.js +1 -1
- package/dist/public/dashboard.js +1363 -545
- package/dist/public/index.html +13 -0
- package/dist/server.cjs +1352 -341
- package/dist/server.js +1 -1
- package/package.json +12 -4
- package/public/dashboard.js +1363 -545
- package/public/index.html +13 -0
- package/dist/public/debug.html +0 -43
- package/public/debug.html +0 -43
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# AgentFlow Dashboard v0.
|
|
1
|
+
# AgentFlow Dashboard v0.5.0
|
|
2
2
|
|
|
3
3
|
Real-time monitoring dashboard for AI agent systems. Visualize execution graphs, session transcripts, and performance metrics from any agent framework.
|
|
4
4
|
|
|
@@ -9,7 +9,7 @@ Real-time monitoring dashboard for AI agent systems. Visualize execution graphs,
|
|
|
9
9
|
- **Auto-Discovery** - Recursively scans directories for trace files, watches for new files in real-time
|
|
10
10
|
- **Framework Agnostic** - Works with any agent system that produces JSON traces or JSONL session logs
|
|
11
11
|
|
|
12
|
-
###
|
|
12
|
+
### 9 Interactive Tabs
|
|
13
13
|
- **Timeline** - Waterfall execution timeline with duration bars and status icons
|
|
14
14
|
- **Transcript** - Full conversation view: user messages, assistant responses, thinking blocks, tool calls
|
|
15
15
|
- **Graph** - Interactive Cytoscape.js execution flow visualization
|
|
@@ -17,6 +17,22 @@ Real-time monitoring dashboard for AI agent systems. Visualize execution graphs,
|
|
|
17
17
|
- **Heatmap** - Error distribution across recent traces
|
|
18
18
|
- **State Machine** - Execution state flow diagram with node counts
|
|
19
19
|
- **Summary** - Auto-generated text summary with recommendations
|
|
20
|
+
- **Agent Timeline** - Gantt chart of all executions for an agent with expandable sub-activities
|
|
21
|
+
- **Process Map** - Process mining graph showing activity flows, transition frequencies, and failure rates
|
|
22
|
+
|
|
23
|
+
### Agent Timeline (Gantt Chart)
|
|
24
|
+
- All executions for an agent on a shared time axis
|
|
25
|
+
- Click any execution row to expand and see nested sub-activities
|
|
26
|
+
- Color-coded bars by type: user, assistant, thinking, tool call, tool result
|
|
27
|
+
- Trigger badges (cron, message, worker) and status indicators
|
|
28
|
+
- Up to 50 most recent executions per agent
|
|
29
|
+
|
|
30
|
+
### Process Map (Process Mining)
|
|
31
|
+
- Directed graph of activity flows aggregated across all executions
|
|
32
|
+
- Node size proportional to frequency, edge width proportional to transition count
|
|
33
|
+
- Color-coded by failure rate (green → yellow → red)
|
|
34
|
+
- Click nodes for occurrence count, frequency, avg duration, fail rate
|
|
35
|
+
- Filters rare activities to keep the graph readable
|
|
20
36
|
|
|
21
37
|
### Session Transcripts
|
|
22
38
|
- Chat-bubble UI for JSONL sessions
|
|
@@ -134,6 +150,8 @@ await dashboard.start();
|
|
|
134
150
|
| GET | `/api/traces/:filename` | Full trace detail (nodes, events, token usage) |
|
|
135
151
|
| GET | `/api/traces/:filename/events` | Session events and token usage |
|
|
136
152
|
| GET | `/api/agents` | All discovered agents with metrics |
|
|
153
|
+
| GET | `/api/agents/:agentId/timeline` | Gantt data: executions with nested activities |
|
|
154
|
+
| GET | `/api/agents/:agentId/process-graph` | Process mining graph: activity transitions |
|
|
137
155
|
| GET | `/api/stats` | Global performance statistics |
|
|
138
156
|
| GET | `/api/stats/:agentId` | Per-agent statistics |
|
|
139
157
|
| GET | `/api/process-health` | Running process audit |
|