clawport-ui 0.6.4 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -122,7 +122,7 @@ All AI calls -- chat, vision, TTS, transcription -- route through the gateway. O
122
122
 
123
123
  | Variable | Description | How to find it |
124
124
  |----------|-------------|----------------|
125
- | `WORKSPACE_PATH` | Path to your OpenClaw workspace | Default: `~/.openclaw/workspace` |
125
+ | `WORKSPACE_PATH` | Path to your OpenClaw workspace | Default: `~/.openclaw/agents/main/workspace` (or legacy `~/.openclaw/workspace`) |
126
126
  | `OPENCLAW_BIN` | Path to the `openclaw` binary | Run `which openclaw` |
127
127
  | `OPENCLAW_GATEWAY_TOKEN` | Gateway auth token | Run `openclaw gateway status` |
128
128
 
@@ -132,7 +132,7 @@ All AI calls -- chat, vision, TTS, transcription -- route through the gateway. O
132
132
  |----------|-------------|
133
133
  | `ELEVENLABS_API_KEY` | ElevenLabs API key for voice indicators on agent profiles |
134
134
 
135
- Running `clawport setup` auto-detects all required values and writes `.env.local`. See [SETUP.md](SETUP.md) for manual configuration, agent customization, and troubleshooting.
135
+ Running `clawport setup` auto-detects all required values and writes `.env.local`. When installed globally, if the package directory isn't writable, setup writes to `~/.config/clawport-ui/.env.local` instead. See [SETUP.md](SETUP.md) for manual configuration, agent customization, and troubleshooting.
136
136
 
137
137
  ---
138
138
 
@@ -171,7 +171,7 @@ clawport help # Show usage
171
171
  ## Testing
172
172
 
173
173
  ```bash
174
- npm test # 501 tests across 23 suites (Vitest)
174
+ npm test # 536 tests across 24 suites (Vitest)
175
175
  npx tsc --noEmit # Type-check (zero errors)
176
176
  npx next build # Production build
177
177
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawport-ui",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Open-source dashboard for managing, monitoring, and chatting with your OpenClaw AI agents.",
5
5
  "homepage": "https://clawport.dev",
6
6
  "repository": {