@wipcomputer/wip-ldm-os 0.2.5 → 0.2.6

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 CHANGED
@@ -89,6 +89,10 @@ The OS connects your AIs. Add-ons are what they actually use. Each one is a full
89
89
  - Memory consolidation protocol for AI agents with bounded context windows. A practical guide for remembering memories.
90
90
  - [Read more about Dream Weaver Protocol](https://github.com/wipcomputer/dream-weaver-protocol)
91
91
 
92
+ **OpenClaw**
93
+ - Open-source agent runtime. Run AI agents 24/7 with identity, memory, and tool access. The existence proof for LDM OS.
94
+ - [Read more about OpenClaw](https://github.com/openclaw/openclaw)
95
+
92
96
  **Bridge**
93
97
  - Cross-platform agent bridge. Enables Claude Code CLI to talk to OpenClaw CLI without a human in the middle.
94
98
  - [Read more about Bridge](https://github.com/wipcomputer/wip-bridge)
package/SKILL.md CHANGED
@@ -5,7 +5,7 @@ license: MIT
5
5
  interface: [cli, skill]
6
6
  metadata:
7
7
  display-name: "LDM OS"
8
- version: "0.2.5"
8
+ version: "0.2.6"
9
9
  homepage: "https://github.com/wipcomputer/wip-ldm-os"
10
10
  author: "Parker Todd Brooks"
11
11
  category: infrastructure
package/catalog.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "id": "memory-crystal",
6
6
  "name": "Memory Crystal",
7
7
  "description": "Persistent memory for your AI. Search, capture, consolidation.",
8
- "npm": "memory-crystal",
8
+ "npm": "@wipcomputer/memory-crystal",
9
9
  "repo": "wipcomputer/memory-crystal",
10
10
  "registryMatches": ["memory-crystal"],
11
11
  "cliMatches": ["crystal"],
package/lib/state.mjs CHANGED
@@ -83,7 +83,7 @@ function scanExtensionDir(dir) {
83
83
  function detectCLIBinaries() {
84
84
  const knownBins = [
85
85
  'crystal', 'mdview', 'wip-release', 'wip-repos', 'wip-file-guard',
86
- 'ldm', 'ldm-scaffold', 'wip-install', 'wip-license',
86
+ 'ldm', 'ldm-scaffold', 'wip-install', 'wip-license', 'openclaw',
87
87
  ];
88
88
 
89
89
  const binaries = {};
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ldm-os",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "type": "module",
5
5
  "description": "LDM OS: identity, memory, and sovereignty infrastructure for AI agents",
6
6
  "main": "src/boot/boot-hook.mjs",
7
7
  "bin": {
8
- "ldm": "./bin/ldm.mjs",
9
- "wip-ldm-os": "./bin/ldm.mjs",
10
- "ldm-scaffold": "./bin/scaffold.sh",
11
- "ldm-boot-install": "./src/boot/install-cli.mjs"
8
+ "ldm": "bin/ldm.mjs",
9
+ "wip-ldm-os": "bin/ldm.mjs",
10
+ "ldm-scaffold": "bin/scaffold.sh",
11
+ "ldm-boot-install": "src/boot/install-cli.mjs"
12
12
  },
13
13
  "claudeCode": {
14
14
  "hook": {