@wipcomputer/wip-ldm-os 0.4.26 → 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.
- package/README.md +3 -17
- package/SKILL.md +3 -1
- 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 https://wip.computer/install/wip-ldm-os.txt
|
|
23
|
+
Read https://wip.computer/install/wip-ldm-os.txt and follow the instructions.
|
|
24
24
|
|
|
25
|
-
|
|
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
|
-
|
|
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.
|
|
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
|
|
@@ -70,6 +70,8 @@ LDM OS is the shared infrastructure layer. Install it once and every AI you use
|
|
|
70
70
|
|
|
71
71
|
## Operating Rules
|
|
72
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
|
+
|
|
73
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.
|
|
74
76
|
|
|
75
77
|
**Never touch sacred data.** The installer never overwrites: crystal.db, agent data, secrets, state files. Code gets updated. Data stays.
|