@worca/ui 0.1.0-rc.3 → 0.1.0-rc.5

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 ADDED
@@ -0,0 +1,46 @@
1
+ # @worca/ui
2
+
3
+ Real-time pipeline monitoring dashboard for [worca-cc](https://github.com/SinishaDjukic/worca-cc).
4
+
5
+ ## What it does
6
+
7
+ A web dashboard for monitoring worca pipelines in real-time: stage progress with cost/duration breakdown, beads kanban board, token & cost dashboard, run history, and settings editor. All updates stream via WebSocket — no polling.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install -g @worca/ui
13
+ ```
14
+
15
+ ## Quick Start
16
+
17
+ ```bash
18
+ worca-ui # monitor all projects (default, port 3400)
19
+ worca-ui --project /path # monitor single project
20
+ worca-ui --help # show all commands and options
21
+ worca-ui --version # print version
22
+ ```
23
+
24
+ ## Features
25
+
26
+ - **Real-time WebSocket streaming** — no polling, no page refreshes
27
+ - **Multi-project sidebar** — live status dots and run count badges
28
+ - **Stage pipeline** — cost, duration, and timing bar per stage with drill-down to iterations
29
+ - **Beads kanban board** — task status across Open/In Progress/Closed columns
30
+ - **Token & cost dashboard** — per-run cost breakdown with stage-proportional bar chart
31
+ - **Run history** — browse completed and interrupted runs sorted newest-first
32
+ - **Settings editor** — configure agents, stages, governance, pricing, and webhooks from the UI
33
+ - **Lifecycle controls** — pause, resume, and stop pipelines from the header
34
+
35
+ ## Requirements
36
+
37
+ - Node.js 22+
38
+ - worca-cc pipeline installed in target projects (`pip install worca-cc`)
39
+
40
+ ## Documentation
41
+
42
+ Full documentation and screenshots: [GitHub repository](https://github.com/SinishaDjukic/worca-cc)
43
+
44
+ ## License
45
+
46
+ [MIT](https://github.com/SinishaDjukic/worca-cc/blob/main/LICENSE)