@jhytabest/plashboard 0.1.10 → 0.1.11
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 +3 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/plashboard-admin/SKILL.md +13 -1
package/README.md
CHANGED
|
@@ -33,6 +33,9 @@ In chat, run:
|
|
|
33
33
|
/plashboard onboard <what this dashboard should focus on>
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
For end users (Telegram/other channels), no slash command is required:
|
|
37
|
+
natural-language requests such as "I want a dashboard for X" are handled by the bundled `plashboard-admin` skill via tool calls.
|
|
38
|
+
|
|
36
39
|
## Optional Config
|
|
37
40
|
|
|
38
41
|
Add to `openclaw.json`:
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "plashboard",
|
|
3
3
|
"name": "Plashboard",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.11",
|
|
5
5
|
"description": "Template-driven dashboard runtime with scheduled OpenClaw fills and safe publish.",
|
|
6
6
|
"entry": "./src/index.ts",
|
|
7
7
|
"skills": ["./skills/plashboard-admin"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: plashboard-admin
|
|
3
|
-
description: Manage plashboard templates
|
|
3
|
+
description: Manage plashboard templates and autonomously convert natural-language dashboard requests into plashboard tool actions.
|
|
4
4
|
command-dispatch: tool
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -9,6 +9,7 @@ command-dispatch: tool
|
|
|
9
9
|
Use this skill for plashboard runtime administration.
|
|
10
10
|
|
|
11
11
|
## Use Cases
|
|
12
|
+
- Convert user requests like "I want dashboard X" into created/activated dashboards automatically.
|
|
12
13
|
- Create, update, copy, delete, and validate dashboard templates.
|
|
13
14
|
- Activate a template as the live dashboard source.
|
|
14
15
|
- Trigger immediate runs.
|
|
@@ -41,6 +42,17 @@ Always use plugin tools:
|
|
|
41
42
|
- Never edit template/state/run JSON files directly.
|
|
42
43
|
- Never perform Docker, Tailscale, or systemd operations.
|
|
43
44
|
- Never ask the model to generate full dashboard structure when filling values.
|
|
45
|
+
- Do not tell end users to run slash commands when tool calls can do the action directly.
|
|
46
|
+
|
|
47
|
+
## Intent Automation
|
|
48
|
+
- If the user asks for a new dashboard in natural language, call `plashboard_onboard` with:
|
|
49
|
+
- `description`: user request rewritten as a concrete dashboard objective
|
|
50
|
+
- `force_quickstart`: `true`
|
|
51
|
+
- `activate`: `true`
|
|
52
|
+
- `run_now`: `true`
|
|
53
|
+
- If onboarding returns readiness issues, call `plashboard_web_guide` and `plashboard_exposure_guide`, then present exact operator commands.
|
|
54
|
+
- If the user asks to modify an existing dashboard, call `plashboard_template_list` first, then update/copy/activate/run via tools.
|
|
55
|
+
- Prefer tool execution over conversational planning; only ask clarifying questions if the request is ambiguous.
|
|
44
56
|
|
|
45
57
|
## Command Shortcuts
|
|
46
58
|
- `/plashboard onboard <description> [local_url] [https_port] [repo_dir]`
|