clawmacdo 0.77.0 → 0.79.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 +3 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -618,9 +618,10 @@ clawmacdo wiki-write --instance my-server --path llm_wiki/new-page.md \
|
|
|
618
618
|
--base-sha NEW \
|
|
619
619
|
--json
|
|
620
620
|
clawmacdo wiki-export --instance my-server --project llm_wiki --output ~/backups/ --json
|
|
621
|
+
clawmacdo wiki-delete --instance my-server --project wiki-163327 --json
|
|
621
622
|
```
|
|
622
623
|
|
|
623
|
-
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.
|
|
624
625
|
|
|
625
626
|
### Gateway Token Rotation
|
|
626
627
|
|
|
@@ -1077,4 +1078,4 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
|
1077
1078
|
|
|
1078
1079
|
---
|
|
1079
1080
|
|
|
1080
|
-
**Current version:** 0.
|
|
1081
|
+
**Current version:** 0.79.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmacdo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.79.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.79.0",
|
|
34
|
+
"@clawmacdo/linux-x64": "0.79.0",
|
|
35
|
+
"@clawmacdo/win32-x64": "0.79.0"
|
|
36
36
|
}
|
|
37
37
|
}
|