@memclaw/memclaw 0.9.27 → 0.9.29
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/SECURITY.md +2 -0
- package/dist/index.js +1 -1
- package/openclaw.plugin.json +3 -3
- package/package.json +1 -1
package/SECURITY.md
CHANGED
|
@@ -44,6 +44,7 @@ MemClaw uses platform-specific binary packages distributed via npm:
|
|
|
44
44
|
|---------|----------|----------|
|
|
45
45
|
| `@memclaw/bin-darwin-arm64` | macOS Apple Silicon | Qdrant, cortex-mem-service, cortex-mem-cli |
|
|
46
46
|
| `@memclaw/bin-win-x64` | Windows x64 | Qdrant, cortex-mem-service, cortex-mem-cli |
|
|
47
|
+
| `@memclaw/bin-linux-x64` | Linux x64 | Qdrant, cortex-mem-service, cortex-mem-cli |
|
|
47
48
|
|
|
48
49
|
### Verification
|
|
49
50
|
|
|
@@ -53,6 +54,7 @@ To verify binary packages:
|
|
|
53
54
|
# Check package integrity via npm
|
|
54
55
|
npm view @memclaw/bin-darwin-arm64
|
|
55
56
|
npm view @memclaw/bin-win-x64
|
|
57
|
+
npm view @memclaw/bin-linux-x64
|
|
56
58
|
|
|
57
59
|
# Inspect package contents
|
|
58
60
|
npm pack @memclaw/bin-darwin-arm64
|
package/dist/index.js
CHANGED
package/openclaw.plugin.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "memclaw",
|
|
3
3
|
"name": "MemClaw",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.29",
|
|
5
5
|
"description": "Layered semantic memory for OpenClaw with L0/L1/L2 tiered retrieval, easy setup, and migration from native memory",
|
|
6
6
|
"kind": "memory",
|
|
7
7
|
"skills": ["skills/memclaw", "skills/memclaw-maintance"],
|
|
8
|
-
"platforms": ["darwin-arm64", "win32-x64"],
|
|
9
|
-
"osRestriction": ["darwin-arm64", "win32-x64"],
|
|
8
|
+
"platforms": ["darwin-arm64", "win32-x64", "linux-x64"],
|
|
9
|
+
"osRestriction": ["darwin-arm64", "win32-x64", "linux-x64"],
|
|
10
10
|
"configSchema": {
|
|
11
11
|
"type": "object",
|
|
12
12
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memclaw/memclaw",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
4
4
|
"description": "MemClaw - The Cortex Memory plugin for OpenClaw. Layered semantic memory for OpenClaw with easy setup and migration",
|
|
5
5
|
"homepage": "https://github.com/sopaco/cortex-mem",
|
|
6
6
|
"repository": {
|