@wipcomputer/wip-ldm-os 0.4.26 → 0.4.28
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 -1
- package/SKILL.md +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,11 +32,13 @@ Check if LDM OS is already installed.
|
|
|
32
32
|
|
|
33
33
|
If it is, show me what I have and what's new.
|
|
34
34
|
|
|
35
|
+
If not, walk me through setup.
|
|
36
|
+
|
|
35
37
|
Then ask:
|
|
36
38
|
- Do you have questions?
|
|
37
39
|
- Want to see a dry run?
|
|
38
40
|
|
|
39
|
-
If I say yes
|
|
41
|
+
If I say yes: I can run ldm install --dry-run if LDM OS is already installed. If not, I'll need to install the CLI first (npm install -g @wipcomputer/wip-ldm-os) to run the dry run.
|
|
40
42
|
|
|
41
43
|
Show me exactly what will change. Don't install anything until I say "install".
|
|
42
44
|
```
|
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.28"
|
|
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.
|