clawmacdo 0.76.0 → 0.78.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 +8 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -589,16 +589,19 @@ Downloads the active OpenClaw workspace Markdown context files as a ZIP: `AGENTS
|
|
|
589
589
|
|
|
590
590
|
```bash
|
|
591
591
|
clawmacdo openclaw-llm-wiki --instance my-server \
|
|
592
|
+
--project remotion-avatar \
|
|
592
593
|
--title "Project LLM Wiki" \
|
|
593
594
|
--prompt "Include architecture, runbooks, and open questions."
|
|
594
595
|
|
|
595
596
|
# Upload an existing Markdown file from a web backend or local path
|
|
596
597
|
clawmacdo openclaw-llm-wiki --instance my-server \
|
|
598
|
+
--project remotion-avatar \
|
|
597
599
|
--llm-wiki-md ./llm_wiki.md \
|
|
598
|
-
--skip-claude
|
|
600
|
+
--skip-claude \
|
|
601
|
+
--json
|
|
599
602
|
```
|
|
600
603
|
|
|
601
|
-
SSHes into the instance as the OpenClaw user, resolves the target agent workspace, creates or uploads an attachable `llm_wiki.md`
|
|
604
|
+
SSHes into the instance as the OpenClaw user, resolves the target agent workspace, creates or uploads an attachable `llm_wiki.md` under `workspace/<project>/`, seeds that project wiki folder, then optionally launches Claude Code inside the project directory to refine the wiki structure. `--project` defaults to `llm_wiki`; `--llm-wiki-md` uploads any local Markdown file as `<project>/llm_wiki.md`; `--skip-claude` makes the command upload/seed only. `--json` returns `{ ok, project, files, claude_status, error }` plus paths so web apps can display Claude failure details.
|
|
602
605
|
|
|
603
606
|
### OpenClaw Wiki Files
|
|
604
607
|
|
|
@@ -615,9 +618,10 @@ clawmacdo wiki-write --instance my-server --path llm_wiki/new-page.md \
|
|
|
615
618
|
--base-sha NEW \
|
|
616
619
|
--json
|
|
617
620
|
clawmacdo wiki-export --instance my-server --project llm_wiki --output ~/backups/ --json
|
|
621
|
+
clawmacdo wiki-delete --instance my-server --project wiki-163327 --json
|
|
618
622
|
```
|
|
619
623
|
|
|
620
|
-
These commands resolve the configured OpenClaw agent workspace on the instance and only operate on safe relative Markdown paths under that workspace. `wiki-read` returns `content`, `sha256`, `mtime`, and `size`; `wiki-write` requires `--base-sha` so a web app cannot overwrite a file that changed after it was opened. Use `--base-sha NEW` only when creating a new file. `wiki-index` returns per-page hashes plus headings, tags, and Markdown/wiki links for graph or navigation UIs.
|
|
624
|
+
These commands resolve the configured OpenClaw agent workspace on the instance and only operate on safe relative Markdown paths under that workspace. `wiki-read` returns `content`, `sha256`, `mtime`, and `size`; `wiki-write` requires `--base-sha` so a web app cannot overwrite a file that changed after it was opened. Use `--base-sha NEW` only when creating a new file. `wiki-index` returns per-page hashes plus headings, tags, and Markdown/wiki links for graph or navigation UIs. `wiki-delete` is intentionally narrower: it only deletes a direct `workspace/wiki-*` project folder and rejects empty names, absolute paths, traversal, symlinks, files, and non-`wiki-*` slugs.
|
|
621
625
|
|
|
622
626
|
### Gateway Token Rotation
|
|
623
627
|
|
|
@@ -1074,4 +1078,4 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
|
1074
1078
|
|
|
1075
1079
|
---
|
|
1076
1080
|
|
|
1077
|
-
**Current version:** 0.
|
|
1081
|
+
**Current version:** 0.78.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.78.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.78.0",
|
|
34
|
+
"@clawmacdo/linux-x64": "0.78.0",
|
|
35
|
+
"@clawmacdo/win32-x64": "0.78.0"
|
|
36
36
|
}
|
|
37
37
|
}
|