clawmacdo 0.88.0 → 0.89.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 +10 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -173,6 +173,14 @@ clawmacdo remotion-avatar-setup --instance <deploy-id> --name "Kenny" \
173
173
  # Install a plugin
174
174
  clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltguard"
175
175
 
176
+ # Google Workspace (gws) authentication
177
+ # gws auth login is an interactive browser OAuth flow with no headless mode, and
178
+ # the instance is headless — so credentials are injected, not minted on the box.
179
+ # Run the OAuth elsewhere (browser machine or 2ndbrain.ceo), then push the JSON:
180
+ clawmacdo gws-login --instance <deploy-id> --credentials ./gws-credentials.json
181
+ clawmacdo gws-login --instance <deploy-id> --credentials ./token.json --filename token.json # custom dest name
182
+ clawmacdo gws-logout --instance <deploy-id> # gws auth logout (revoke) + clear local credentials
183
+
176
184
  # Refresh IP after instance restart
177
185
  clawmacdo update-ip --instance <deploy-id>
178
186
 
@@ -1183,4 +1191,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1183
1191
 
1184
1192
  ---
1185
1193
 
1186
- **Current version:** 0.88.0
1194
+ **Current version:** 0.89.0
1195
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.88.0",
3
+ "version": "0.89.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.88.0",
34
- "@clawmacdo/linux-x64": "0.88.0",
35
- "@clawmacdo/win32-x64": "0.88.0"
33
+ "@clawmacdo/darwin-arm64": "0.89.0",
34
+ "@clawmacdo/linux-x64": "0.89.0",
35
+ "@clawmacdo/win32-x64": "0.89.0"
36
36
  }
37
37
  }