@jhytabest/plashboard 0.1.0 → 0.1.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 +72 -0
- package/package.json +9 -1
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# @jhytabest/plashboard
|
|
2
|
+
|
|
3
|
+
Template-driven dashboard runtime plugin for OpenClaw.
|
|
4
|
+
|
|
5
|
+
This plugin manages dashboard templates, scheduled fill runs, validation, and atomic publish to a live `dashboard.json`.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
openclaw plugins install @jhytabest/plashboard
|
|
11
|
+
openclaw plugins enable plashboard
|
|
12
|
+
openclaw plugins doctor
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Update
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
openclaw plugins update plashboard
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Minimal Config
|
|
22
|
+
|
|
23
|
+
Add to `openclaw.json`:
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"plugins": {
|
|
28
|
+
"entries": {
|
|
29
|
+
"plashboard": {
|
|
30
|
+
"enabled": true,
|
|
31
|
+
"config": {
|
|
32
|
+
"data_dir": "/var/lib/openclaw/plash-data",
|
|
33
|
+
"scheduler_tick_seconds": 30,
|
|
34
|
+
"max_parallel_runs": 1,
|
|
35
|
+
"default_retry_count": 1,
|
|
36
|
+
"retry_backoff_seconds": 20,
|
|
37
|
+
"session_timeout_seconds": 90,
|
|
38
|
+
"fill_provider": "mock",
|
|
39
|
+
"display_profile": {
|
|
40
|
+
"width_px": 1920,
|
|
41
|
+
"height_px": 1080,
|
|
42
|
+
"safe_top_px": 96,
|
|
43
|
+
"safe_bottom_px": 106,
|
|
44
|
+
"safe_side_px": 28,
|
|
45
|
+
"layout_safety_margin_px": 24
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
For real model runs, switch `fill_provider` to `command` and provide `fill_command`.
|
|
55
|
+
|
|
56
|
+
## Runtime Command
|
|
57
|
+
|
|
58
|
+
```text
|
|
59
|
+
/plashboard init
|
|
60
|
+
/plashboard status
|
|
61
|
+
/plashboard list
|
|
62
|
+
/plashboard activate <template-id>
|
|
63
|
+
/plashboard copy <source-template-id> <new-template-id> [new-name] [activate]
|
|
64
|
+
/plashboard delete <template-id>
|
|
65
|
+
/plashboard run <template-id>
|
|
66
|
+
/plashboard set-display <width> <height> <safe_top> <safe_bottom>
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Notes
|
|
70
|
+
|
|
71
|
+
- The plugin includes an admin skill (`plashboard-admin`) for tool-guided management.
|
|
72
|
+
- Trusted publishing (OIDC) is enabled in CI/CD for npm releases.
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jhytabest/plashboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Plashboard OpenClaw plugin runtime",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/jhytabest/plashboard"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/jhytabest/plashboard",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/jhytabest/plashboard/issues"
|
|
14
|
+
},
|
|
7
15
|
"type": "module",
|
|
8
16
|
"main": "src/index.ts",
|
|
9
17
|
"files": [
|