@wipcomputer/wip-ldm-os 0.2.7 → 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
@@ -5,7 +5,7 @@ license: MIT
5
5
  interface: [cli, skill]
6
6
  metadata:
7
7
  display-name: "LDM OS"
8
- version: "0.2.7"
8
+ version: "0.2.9"
9
9
  homepage: "https://github.com/wipcomputer/wip-ldm-os"
10
10
  author: "Parker Todd Brooks"
11
11
  category: infrastructure
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ldm-os",
3
- "version": "0.2.7",
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.mjs",
9
- "wip-ldm-os": "bin/ldm.mjs",
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.mjs"
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.mjs # install or update
5
- // node install-cli.mjs --status # show current state
6
- // node install-cli.mjs --dry-run # preview without changes
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
 
File without changes