clawmacdo 0.91.0 → 0.92.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 +7 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -642,6 +642,10 @@ clawmacdo gyne-consumer-profile --instance my-server --name consumer-4
642
642
  # Equivalent terminology for the profile name
643
643
  clawmacdo gyne-consumer-profile --instance my-server --consumer-name consumer-4
644
644
 
645
+ # Restart a specific unit, or skip the restart entirely
646
+ clawmacdo gyne-consumer-profile --instance my-server --name consumer-4 --service gyne-agent.service
647
+ clawmacdo gyne-consumer-profile --instance my-server --name consumer-4 --no-restart
648
+
645
649
  # Non-default workspace project or base task stream
646
650
  clawmacdo gyne-consumer-profile --instance my-server \
647
651
  --project gyne-agent \
@@ -652,6 +656,8 @@ clawmacdo gyne-consumer-profile --instance my-server \
652
656
 
653
657
  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
658
 
659
+ 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`.
660
+
655
661
  ### OpenClaw Markdown Download
656
662
 
657
663
  ```bash
@@ -1219,7 +1225,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1219
1225
 
1220
1226
  ---
1221
1227
 
1222
- **Current version:** 0.91.0
1228
+ **Current version:** 0.92.0
1223
1229
 
1224
1230
 
1225
1231
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.91.0",
3
+ "version": "0.92.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.92.0",
34
+ "@clawmacdo/linux-x64": "0.92.0",
35
+ "@clawmacdo/win32-x64": "0.92.0"
36
36
  }
37
37
  }