clawmacdo 0.92.0 → 0.93.0

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 +21 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -144,6 +144,10 @@ clawmacdo update-model --instance <deploy-id> \
144
144
  clawmacdo bedrock-token-set --instance <deploy-id> \
145
145
  --bearer-token "$AWS_BEARER_TOKEN_BEDROCK"
146
146
 
147
+ # Set OPENCLAW_INSTANCE in the claw-ttyproxy project .env
148
+ clawmacdo ttyproxy-instance-set --instance <deploy-id> \
149
+ --openclaw-instance openclaw-prod-1
150
+
147
151
  # Set OpenClaw display name and owner context
148
152
  clawmacdo openclaw-identity --instance <deploy-id> \
149
153
  --openclaw-name "Clawdia" --owner-name "Kenneth"
@@ -370,6 +374,22 @@ clawmacdo bedrock-token-set --instance <deploy-id> \
370
374
 
371
375
  The command installs `dotenvx` on the instance if needed and writes `AWS_BEARER_TOKEN_BEDROCK` with dotenvx encryption. It handles an already-encrypted `.env` by using `dotenvx set --encrypt` instead of editing ciphertext with `sed`.
372
376
 
377
+ ### Set OPENCLAW_INSTANCE for the TTY Proxy
378
+
379
+ Update the `OPENCLAW_INSTANCE` value in the claw-ttyproxy project `.env` (`/home/openclaw/.openclaw/workspace/claw-ttyproxy/.env`) on a deployed instance:
380
+
381
+ ```bash
382
+ clawmacdo ttyproxy-instance-set --instance <deploy-id> \
383
+ --openclaw-instance openclaw-prod-1
384
+
385
+ # If the tty proxy project lives in a different workspace directory, pass the .env explicitly.
386
+ clawmacdo ttyproxy-instance-set --instance <deploy-id> \
387
+ --openclaw-instance openclaw-prod-1 \
388
+ --env-file claw-tty-proxy/.env
389
+ ```
390
+
391
+ The command replaces the existing `OPENCLAW_INSTANCE=` line in place (or appends one if missing), leaves a timestamped `.bak` beside the file, and keeps every other key untouched. Restart the tty proxy afterwards so it picks up the new value.
392
+
373
393
  ### ARK API Key Management
374
394
 
375
395
  Generate temporary BytePlus ARK API keys or list available endpoints.
@@ -1225,7 +1245,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1225
1245
 
1226
1246
  ---
1227
1247
 
1228
- **Current version:** 0.92.0
1248
+ **Current version:** 0.93.0
1229
1249
 
1230
1250
 
1231
1251
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.92.0",
3
+ "version": "0.93.0",
4
4
  "description": "CLI tool for deploying OpenClaw to multiple cloud providers with pre-installed AI dev tools",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -30,8 +30,8 @@
30
30
  "node": ">=16"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@clawmacdo/darwin-arm64": "0.92.0",
34
- "@clawmacdo/linux-x64": "0.92.0",
35
- "@clawmacdo/win32-x64": "0.92.0"
33
+ "@clawmacdo/darwin-arm64": "0.93.0",
34
+ "@clawmacdo/linux-x64": "0.93.0",
35
+ "@clawmacdo/win32-x64": "0.93.0"
36
36
  }
37
37
  }