clawmacdo 0.91.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 +27 -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.
@@ -642,6 +662,10 @@ clawmacdo gyne-consumer-profile --instance my-server --name consumer-4
642
662
  # Equivalent terminology for the profile name
643
663
  clawmacdo gyne-consumer-profile --instance my-server --consumer-name consumer-4
644
664
 
665
+ # Restart a specific unit, or skip the restart entirely
666
+ clawmacdo gyne-consumer-profile --instance my-server --name consumer-4 --service gyne-agent.service
667
+ clawmacdo gyne-consumer-profile --instance my-server --name consumer-4 --no-restart
668
+
645
669
  # Non-default workspace project or base task stream
646
670
  clawmacdo gyne-consumer-profile --instance my-server \
647
671
  --project gyne-agent \
@@ -652,6 +676,8 @@ clawmacdo gyne-consumer-profile --instance my-server \
652
676
 
653
677
  This command SSHes into the instance as the OpenClaw user, resolves the configured workspace for `--agent` (default `main`), and updates only `workspace/<project>/.env` (default `gyne-agent/.env`). It sets `CONSUMER_NAME=<name>` and `CONSUMER_TASK_STREAM=<TASK_STREAM>:<name>`, preserving the rest of the `.env` and creating a `.clawmacdo-gyne-*.bak` backup beside it. If `--task-stream` is omitted, the command derives the base stream from the existing `TASK_STREAM` value, falling back to `openclaw:tasks`.
654
678
 
679
+ By default it then restarts the Gyne consumer `systemctl --user` service so the worker re-registers under the new `CONSUMER_NAME` (changing `.env` alone does not affect a running process). The unit is auto-detected from the enabled `--user` services (a `gyne`/`consumer` unit, excluding the gateway); pass `--service <unit>` to target a specific unit, or `--no-restart` to only edit `.env`.
680
+
655
681
  ### OpenClaw Markdown Download
656
682
 
657
683
  ```bash
@@ -1219,7 +1245,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1219
1245
 
1220
1246
  ---
1221
1247
 
1222
- **Current version:** 0.91.0
1248
+ **Current version:** 0.93.0
1223
1249
 
1224
1250
 
1225
1251
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.91.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.91.0",
34
- "@clawmacdo/linux-x64": "0.91.0",
35
- "@clawmacdo/win32-x64": "0.91.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
  }