clawmacdo 0.72.0 → 0.74.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 +17 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -575,7 +575,22 @@ This command sets the target agent's OpenClaw identity and writes managed owner
|
|
|
575
575
|
clawmacdo openclaw-md-download --instance my-server --output ~/backups/
|
|
576
576
|
```
|
|
577
577
|
|
|
578
|
-
Downloads the active OpenClaw workspace Markdown context files as a ZIP: `AGENTS.md`, `SOUL.md`, `IDENTITY.md`, `USER.md`, `TOOLS.md`, `HEARTBEAT.md`, `BOOTSTRAP.md` when present, plus daily memory logs under `memory/*.md`.
|
|
578
|
+
Downloads the active OpenClaw workspace Markdown context files as a ZIP: `AGENTS.md`, `SOUL.md`, `IDENTITY.md`, `USER.md`, `TOOLS.md`, `HEARTBEAT.md`, `BOOTSTRAP.md`, `llm_wiki.md` when present, plus daily memory logs under `memory/*.md`.
|
|
579
|
+
|
|
580
|
+
### OpenClaw LLM Wiki
|
|
581
|
+
|
|
582
|
+
```bash
|
|
583
|
+
clawmacdo openclaw-llm-wiki --instance my-server \
|
|
584
|
+
--title "Project LLM Wiki" \
|
|
585
|
+
--prompt "Include architecture, runbooks, and open questions."
|
|
586
|
+
|
|
587
|
+
# Upload an existing Markdown file from a web backend or local path
|
|
588
|
+
clawmacdo openclaw-llm-wiki --instance my-server \
|
|
589
|
+
--llm-wiki-md ./llm_wiki.md \
|
|
590
|
+
--skip-claude
|
|
591
|
+
```
|
|
592
|
+
|
|
593
|
+
SSHes into the instance as the OpenClaw user, resolves the target agent workspace, creates or uploads an attachable `llm_wiki.md` at the workspace root, seeds the `llm_wiki/` project tree, then optionally launches Claude Code on the instance to refine the wiki structure. `--llm-wiki-md` uploads any local Markdown file as `llm_wiki.md`; `--skip-claude` makes the command upload/seed only.
|
|
579
594
|
|
|
580
595
|
### Gateway Token Rotation
|
|
581
596
|
|
|
@@ -1008,8 +1023,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
|
1008
1023
|
|
|
1009
1024
|
---
|
|
1010
1025
|
|
|
1011
|
-
**Current version:** 0.
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1026
|
+
**Current version:** 0.74.0
|
|
1015
1027
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.74.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.74.0",
|
|
34
|
+
"@clawmacdo/linux-x64": "0.74.0",
|
|
35
|
+
"@clawmacdo/win32-x64": "0.74.0"
|
|
36
36
|
}
|
|
37
37
|
}
|