clawmacdo 0.90.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 +16 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -179,9 +179,16 @@ clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltgu
179
179
  # Google Workspace (gws) authentication
180
180
  # gws auth login is an interactive browser OAuth flow with no headless mode, and
181
181
  # the instance is headless — so credentials are injected, not minted on the box.
182
- # Run the OAuth elsewhere (browser machine or 2ndbrain.ceo), then push the JSON:
182
+ # Mode 1 push a credentials JSON exported elsewhere (browser machine / 2ndbrain.ceo):
183
183
  clawmacdo gws-login --instance <deploy-id> --credentials ./gws-credentials.json
184
184
  clawmacdo gws-login --instance <deploy-id> --credentials ./token.json --filename token.json # custom dest name
185
+ # Mode 2 — hand clawmacdo a raw OAuth authorization code; it exchanges it with Google
186
+ # and writes the authorized_user credentials. Add --code-verifier if the flow used PKCE.
187
+ # The auth URL must request access_type=offline, or Google returns no refresh_token.
188
+ clawmacdo gws-login --instance <deploy-id> \
189
+ --code <oauth-code> \
190
+ --client-id <client-id> --client-secret <client-secret> \
191
+ --redirect-uri <redirect-uri> [--code-verifier <pkce-verifier>]
185
192
  clawmacdo gws-logout --instance <deploy-id> # gws auth logout (revoke) + clear local credentials
186
193
 
187
194
  # Refresh IP after instance restart
@@ -635,6 +642,10 @@ clawmacdo gyne-consumer-profile --instance my-server --name consumer-4
635
642
  # Equivalent terminology for the profile name
636
643
  clawmacdo gyne-consumer-profile --instance my-server --consumer-name consumer-4
637
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
+
638
649
  # Non-default workspace project or base task stream
639
650
  clawmacdo gyne-consumer-profile --instance my-server \
640
651
  --project gyne-agent \
@@ -645,6 +656,8 @@ clawmacdo gyne-consumer-profile --instance my-server \
645
656
 
646
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`.
647
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
+
648
661
  ### OpenClaw Markdown Download
649
662
 
650
663
  ```bash
@@ -1212,6 +1225,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1212
1225
 
1213
1226
  ---
1214
1227
 
1215
- **Current version:** 0.90.0
1228
+ **Current version:** 0.92.0
1229
+
1216
1230
 
1217
1231
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.90.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.90.0",
34
- "@clawmacdo/linux-x64": "0.90.0",
35
- "@clawmacdo/win32-x64": "0.90.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
  }