clawmacdo 0.87.0 → 0.88.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 +26 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -140,6 +140,10 @@ clawmacdo deploy --provider digitalocean --openclaw-version 2026.3.22 ... # dep
140
140
  clawmacdo update-model --instance <deploy-id> \
141
141
  --primary-model openai --openai-key "$OPENAI_API_KEY"
142
142
 
143
+ # Update the Bedrock token used by the OpenClaw workspace tty proxy
144
+ clawmacdo bedrock-token-set --instance <deploy-id> \
145
+ --bearer-token "$AWS_BEARER_TOKEN_BEDROCK"
146
+
143
147
  # Set OpenClaw display name and owner context
144
148
  clawmacdo openclaw-identity --instance <deploy-id> \
145
149
  --openclaw-name "Clawdia" --owner-name "Kenneth"
@@ -332,6 +336,22 @@ clawmacdo update-model --instance <deploy-id> \
332
336
 
333
337
  The command updates API keys in `.env`, configures provider settings (BytePlus `openclaw.json`), sets the model via `openclaw models set`, adds failovers, and restarts the gateway service. When `opencode` is selected, OpenCode is installed via `curl -fsSL https://opencode.ai/install | bash` and configured with MiniMax M2.5 Free (`opencode/minimax-m2.5-free`) — no API key required. API keys for other providers are optional — if omitted, the existing key on the instance is preserved.
334
338
 
339
+ ### Update Bedrock Token for the TTY Proxy
340
+
341
+ OpenClaw deployments that point to the local Ollama-compatible tty proxy keep the OpenClaw model selection unchanged. To rotate the AWS Bedrock token used by that proxy, update the tty proxy project `.env` under `/home/openclaw/.openclaw/workspace`:
342
+
343
+ ```bash
344
+ clawmacdo bedrock-token-set --instance <deploy-id> \
345
+ --bearer-token "$AWS_BEARER_TOKEN_BEDROCK"
346
+
347
+ # If auto-detection finds the wrong workspace project, pass the .env explicitly.
348
+ clawmacdo bedrock-token-set --instance <deploy-id> \
349
+ --bearer-token "$AWS_BEARER_TOKEN_BEDROCK" \
350
+ --env-file claw-tty-proxy/.env
351
+ ```
352
+
353
+ 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`.
354
+
335
355
  ### ARK API Key Management
336
356
 
337
357
  Generate temporary BytePlus ARK API keys or list available endpoints.
@@ -870,6 +890,11 @@ execSync(`${bin} update-model \
870
890
  --primary-model openai \
871
891
  --openai-key "${process.env.OPENAI_API_KEY}"`, { stdio: "inherit" });
872
892
 
893
+ // --- Rotate Bedrock token for the OpenClaw workspace tty proxy ---
894
+ execSync(`${bin} bedrock-token-set \
895
+ --instance <deploy-id> \
896
+ --bearer-token "${process.env.AWS_BEARER_TOKEN_BEDROCK}"`, { stdio: "inherit" });
897
+
873
898
  // --- Install a plugin ---
874
899
  execSync(`${bin} plugin-install \
875
900
  --instance <deploy-id> \
@@ -1158,4 +1183,4 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
1158
1183
 
1159
1184
  ---
1160
1185
 
1161
- **Current version:** 0.87.0
1186
+ **Current version:** 0.88.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.87.0",
3
+ "version": "0.88.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.87.0",
34
- "@clawmacdo/linux-x64": "0.87.0",
35
- "@clawmacdo/win32-x64": "0.87.0"
33
+ "@clawmacdo/darwin-arm64": "0.88.0",
34
+ "@clawmacdo/linux-x64": "0.88.0",
35
+ "@clawmacdo/win32-x64": "0.88.0"
36
36
  }
37
37
  }