Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ Windows:
powershell -c "irm https://openui.com/openclaw-os/install.ps1 | iex"
```

The installer downloads the source, builds the workspace UI, registers it as an OpenClaw plugin, restarts the gateway, and opens the dashboard in your browser.
The installer downloads the latest source, builds the workspace UI, registers it as an OpenClaw plugin, restarts the gateway, and opens the dashboard in your browser.

or through published package

```bash
openclaw plugins install @openuidev/openclaw-os-plugin
openclaw gateway restart
openclaw os url
```


> The workspace runs at `http://localhost:18789/plugins/openclawos`; run **`openclaw os url`** for the pre-authenticated URL.
Expand Down
8 changes: 8 additions & 0 deletions packages/claw-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ Windows:
powershell -c "irm https://openui.com/openclaw-os/install.ps1 | iex"
```

or

```bash
openclaw plugins install @openuidev/openclaw-os-plugin
openclaw gateway restart
openclaw os url
```

### Opening the workspace

The workspace is served from your gateway — most likely `http://localhost:18789/plugins/openclawos`. For the pre-authenticated URL, run `openclaw os url`.
Expand Down
2 changes: 1 addition & 1 deletion packages/claw-plugin/openclaw.plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "openclaw-os-plugin",
"name": "Claw — OpenUI for OpenClaw",
"description": "Enables Generative UI in the Claw client by injecting the OpenUI Lang system prompt for direct WebSocket chat sessions.",
"version": "0.1.3",
"version": "0.1.4",
"enabledByDefault": true,
"activation": { "onStartup": true },
"contracts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/claw-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openuidev/openclaw-os-plugin",
"version": "0.1.3",
"version": "0.1.4",
"type": "module",
"description": "OpenClaw plugin that turns agent responses into Generative UI and serves the claw-client at /plugins/openclawos.",
"keywords": [
Expand Down
Loading