@worca/ui 0.1.0-rc.2 → 0.1.0-rc.4
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 +44 -0
- package/app/main.bundle.js +174 -168
- package/app/main.bundle.js.map +3 -3
- package/bin/worca-ui.js +7 -2
- package/package.json +1 -1
- package/server/index.js +15 -1
- package/server/preferences.js +1 -1
- package/server/project-routes.js +9 -5
- package/server/version-check.js +82 -0
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
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
|
+
```
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
- **Real-time WebSocket streaming** — no polling, no page refreshes
|
|
25
|
+
- **Multi-project sidebar** — live status dots and run count badges
|
|
26
|
+
- **Stage pipeline** — cost, duration, and timing bar per stage with drill-down to iterations
|
|
27
|
+
- **Beads kanban board** — task status across Open/In Progress/Closed columns
|
|
28
|
+
- **Token & cost dashboard** — per-run cost breakdown with stage-proportional bar chart
|
|
29
|
+
- **Run history** — browse completed and interrupted runs sorted newest-first
|
|
30
|
+
- **Settings editor** — configure agents, stages, governance, pricing, and webhooks from the UI
|
|
31
|
+
- **Lifecycle controls** — pause, resume, and stop pipelines from the header
|
|
32
|
+
|
|
33
|
+
## Requirements
|
|
34
|
+
|
|
35
|
+
- Node.js 22+
|
|
36
|
+
- worca-cc pipeline installed in target projects (`pip install worca-cc`)
|
|
37
|
+
|
|
38
|
+
## Documentation
|
|
39
|
+
|
|
40
|
+
Full documentation and screenshots: [GitHub repository](https://github.com/SinishaDjukic/worca-cc)
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
[MIT](https://github.com/SinishaDjukic/worca-cc/blob/main/LICENSE)
|