clawmacdo 0.88.0 → 0.90.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.
- package/README.md +32 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -148,6 +148,9 @@ clawmacdo bedrock-token-set --instance <deploy-id> \
|
|
|
148
148
|
clawmacdo openclaw-identity --instance <deploy-id> \
|
|
149
149
|
--openclaw-name "Clawdia" --owner-name "Kenneth"
|
|
150
150
|
|
|
151
|
+
# Update the Gyne consumer profile in workspace/gyne-agent/.env
|
|
152
|
+
clawmacdo gyne-consumer-profile --instance <deploy-id> --name consumer-4
|
|
153
|
+
|
|
151
154
|
# Download OpenClaw Markdown context files and memory logs as a ZIP
|
|
152
155
|
clawmacdo openclaw-md-download --instance <deploy-id> --output ~/backups/
|
|
153
156
|
|
|
@@ -173,6 +176,14 @@ clawmacdo remotion-avatar-setup --instance <deploy-id> --name "Kenny" \
|
|
|
173
176
|
# Install a plugin
|
|
174
177
|
clawmacdo plugin-install --instance <deploy-id> --plugin "@openguardrails/moltguard"
|
|
175
178
|
|
|
179
|
+
# Google Workspace (gws) authentication
|
|
180
|
+
# gws auth login is an interactive browser OAuth flow with no headless mode, and
|
|
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:
|
|
183
|
+
clawmacdo gws-login --instance <deploy-id> --credentials ./gws-credentials.json
|
|
184
|
+
clawmacdo gws-login --instance <deploy-id> --credentials ./token.json --filename token.json # custom dest name
|
|
185
|
+
clawmacdo gws-logout --instance <deploy-id> # gws auth logout (revoke) + clear local credentials
|
|
186
|
+
|
|
176
187
|
# Refresh IP after instance restart
|
|
177
188
|
clawmacdo update-ip --instance <deploy-id>
|
|
178
189
|
|
|
@@ -616,6 +627,24 @@ clawmacdo openclaw-identity --instance my-server \
|
|
|
616
627
|
|
|
617
628
|
This command sets the target agent's OpenClaw identity and writes managed owner context into the remote workspace `USER.md`, then restarts the gateway.
|
|
618
629
|
|
|
630
|
+
### Gyne Consumer Profile
|
|
631
|
+
|
|
632
|
+
```bash
|
|
633
|
+
clawmacdo gyne-consumer-profile --instance my-server --name consumer-4
|
|
634
|
+
|
|
635
|
+
# Equivalent terminology for the profile name
|
|
636
|
+
clawmacdo gyne-consumer-profile --instance my-server --consumer-name consumer-4
|
|
637
|
+
|
|
638
|
+
# Non-default workspace project or base task stream
|
|
639
|
+
clawmacdo gyne-consumer-profile --instance my-server \
|
|
640
|
+
--project gyne-agent \
|
|
641
|
+
--task-stream openclaw:tasks \
|
|
642
|
+
--name consumer-4 \
|
|
643
|
+
--json
|
|
644
|
+
```
|
|
645
|
+
|
|
646
|
+
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
|
+
|
|
619
648
|
### OpenClaw Markdown Download
|
|
620
649
|
|
|
621
650
|
```bash
|
|
@@ -1183,4 +1212,6 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
|
1183
1212
|
|
|
1184
1213
|
---
|
|
1185
1214
|
|
|
1186
|
-
**Current version:** 0.
|
|
1215
|
+
**Current version:** 0.90.0
|
|
1216
|
+
|
|
1217
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.90.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.
|
|
34
|
-
"@clawmacdo/linux-x64": "0.
|
|
35
|
-
"@clawmacdo/win32-x64": "0.
|
|
33
|
+
"@clawmacdo/darwin-arm64": "0.90.0",
|
|
34
|
+
"@clawmacdo/linux-x64": "0.90.0",
|
|
35
|
+
"@clawmacdo/win32-x64": "0.90.0"
|
|
36
36
|
}
|
|
37
37
|
}
|