@wipcomputer/wip-ldm-os 0.4.25 → 0.4.27

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.
Files changed (3) hide show
  1. package/README.md +3 -17
  2. package/SKILL.md +17 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -20,25 +20,11 @@ LDM OS is a shared infrastructure that enables:
20
20
  Open your AI and paste this:
21
21
 
22
22
  ```
23
- Read wip.computer/install/wip-ldm-os.txt
23
+ Read https://wip.computer/install/wip-ldm-os.txt and follow the instructions.
24
24
 
25
- Then explain:
26
- 1. What is LDM OS?
27
- 2. What does it install on my system?
28
- 3. What changes for us? (this AI)
29
- 4. What changes across all my AIs?
25
+ Explain what LDM OS is and what it does. Check if it's already installed.
30
26
 
31
- Check if LDM OS is already installed.
32
-
33
- If it is, show me what I have and what's new.
34
-
35
- Then ask:
36
- - Do you have questions?
37
- - Want to see a dry run?
38
-
39
- If I say yes, run: ldm install --dry-run
40
-
41
- Show me exactly what will change. Don't install anything until I say "install".
27
+ If not installed, walk me through setup. Don't install anything until I say "install".
42
28
  ```
43
29
 
44
30
  That's it. Your AI reads the spec, explains what it does, and walks you through a dry run before touching anything.
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.4.25"
8
+ version: "0.4.27"
9
9
  homepage: "https://github.com/wipcomputer/wip-ldm-os"
10
10
  author: "Parker Todd Brooks"
11
11
  category: infrastructure
@@ -32,6 +32,20 @@ compatibility: Requires git, npm, node. Node.js 18+.
32
32
 
33
33
  # LDM OS
34
34
 
35
+ ## CRITICAL: Bootstrap (read this first)
36
+
37
+ If `ldm` is not installed, run this BEFORE anything else:
38
+
39
+ ```bash
40
+ npm install -g @wipcomputer/wip-ldm-os
41
+ ```
42
+
43
+ Then check: `ldm --version`. If that works, proceed with `ldm install --dry-run`.
44
+
45
+ If npm/node is not installed, the user needs Node.js 18+ from https://nodejs.org first.
46
+
47
+ ---
48
+
35
49
  You use Claude Code, GPT, OpenClaw, others. They don't share memory. They don't know each other. They don't know how to work together.
36
50
 
37
51
  LDM OS is the shared infrastructure layer. Install it once and every AI you use gets:
@@ -56,6 +70,8 @@ LDM OS is the shared infrastructure layer. Install it once and every AI you use
56
70
 
57
71
  ## Operating Rules
58
72
 
73
+ **Check before you run.** Before running any `ldm` command, check if it's installed: `which ldm`. If not found, tell the user: "I can run `ldm install --dry-run` to show you exactly what will change, but first I need to install the LDM OS CLI. That's one npm package (`npm install -g @wipcomputer/wip-ldm-os`) that gives us the `ldm` command. It doesn't install anything else until you say so." Never show the user a "command not found" error you already knew would happen.
74
+
59
75
  **Always dry-run first.** Before installing or making changes, run with `--dry-run` so the user can see exactly what will happen. Only proceed when the user explicitly says to.
60
76
 
61
77
  **Never touch sacred data.** The installer never overwrites: crystal.db, agent data, secrets, state files. Code gets updated. Data stays.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ldm-os",
3
- "version": "0.4.25",
3
+ "version": "0.4.27",
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",