@harness-engineering/dashboard 0.2.2 → 0.3.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 +2 -2
- package/dist/client/assets/{index-C1zvTZwx.js → index-CGxoVDlX.js} +156 -110
- package/dist/client/assets/index-WMkhShuy.css +1 -0
- package/dist/client/index.html +2 -2
- package/dist/server/{-WJBYKRAQ.js → -HPCOJXLL.js} +227 -12
- package/dist/server/serve.js +1 -1
- package/package.json +2 -1
- package/dist/client/assets/index-DVHWQnep.css +0 -1
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ The dashboard has 10 pages:
|
|
|
36
36
|
| **Adoption** | `/adoption` | Skill usage metrics: invocation counts, success rates, average duration, and last-used timestamps |
|
|
37
37
|
| **Health** | `/health` | Entropy-based project health with collapsible sections for security findings, perf checks, and arch violations |
|
|
38
38
|
| **Analyze** | `/analyze` | Interactive intelligence pipeline: submit a task description and stream SEL, CML, and PESL results in real time |
|
|
39
|
-
| **Roadmap** | `/roadmap` |
|
|
39
|
+
| **Roadmap** | `/roadmap` | Stats bar, milestone-grouped feature table with claim workflow, dependency graph, and assignment history |
|
|
40
40
|
| **Orchestrator** | `/orchestrator` | Live orchestrator state: running agents, rate limits, concurrency, token usage, tick activity, and agent streams |
|
|
41
41
|
| **Impact** | `/impact` | Graph anomaly detection (articulation points, outliers) and interactive blast radius visualization |
|
|
42
42
|
| **Graph** | `/graph` | Knowledge graph statistics: node/edge counts, type breakdown, density, connected components |
|
|
@@ -49,7 +49,7 @@ packages/dashboard/
|
|
|
49
49
|
src/
|
|
50
50
|
client/ React SPA (Vite + Tailwind CSS)
|
|
51
51
|
pages/ 10 page components (one per route)
|
|
52
|
-
components/ Shared UI: KpiCard,
|
|
52
|
+
components/ Shared UI: KpiCard, BlastRadiusGraph, chat system, roadmap components
|
|
53
53
|
hooks/ useSSE, useOrchestratorSocket, useApi, useChatContext, etc.
|
|
54
54
|
utils/ Type guards, chat streaming, context-to-prompt
|
|
55
55
|
server/ Hono API server
|