@wipcomputer/wip-ldm-os 0.2.8 → 0.2.9
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/SKILL.md
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/wip-ldm-os",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
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.
|
|
9
|
-
"wip-ldm-os": "bin/ldm.
|
|
8
|
+
"ldm": "bin/ldm.js",
|
|
9
|
+
"wip-ldm-os": "bin/ldm.js",
|
|
10
10
|
"ldm-scaffold": "bin/scaffold.sh",
|
|
11
|
-
"ldm-boot-install": "src/boot/install-cli.
|
|
11
|
+
"ldm-boot-install": "src/boot/install-cli.js"
|
|
12
12
|
},
|
|
13
13
|
"claudeCode": {
|
|
14
14
|
"hook": {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
// LDM OS Boot Hook Installer CLI
|
|
3
3
|
// Usage:
|
|
4
|
-
// node install-cli.
|
|
5
|
-
// node install-cli.
|
|
6
|
-
// node install-cli.
|
|
4
|
+
// node install-cli.js # install or update
|
|
5
|
+
// node install-cli.js --status # show current state
|
|
6
|
+
// node install-cli.js --dry-run # preview without changes
|
|
7
7
|
|
|
8
8
|
import { detectInstallState, runInstallOrUpdate, formatStatus, formatResult } from './installer.mjs';
|
|
9
9
|
|
/package/bin/{ldm.mjs → ldm.js}
RENAMED
|
File without changes
|