@wipcomputer/wip-ldm-os 0.4.8 → 0.4.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.
Files changed (3) hide show
  1. package/SKILL.md +1 -1
  2. package/bin/ldm.js +3 -1
  3. package/package.json +1 -1
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"
8
+ version: "0.4.9"
9
9
  homepage: "https://github.com/wipcomputer/wip-ldm-os"
10
10
  author: "Parker Todd Brooks"
11
11
  category: infrastructure
package/bin/ldm.js CHANGED
@@ -73,7 +73,9 @@ function acquireInstallLock() {
73
73
  console.log(` Wait for it to finish, or remove ~/.ldm/state/.ldm-install.lock`);
74
74
  return false;
75
75
  } catch {
76
- // PID is dead, stale lock. Clean it up.
76
+ // PID is dead, stale lock. Auto-clean.
77
+ try { unlinkSync(LOCK_PATH); } catch {}
78
+ console.log(` Cleaned stale install lock (PID ${lock.pid} is dead).`);
77
79
  }
78
80
  }
79
81
  mkdirSync(dirname(LOCK_PATH), { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ldm-os",
3
- "version": "0.4.8",
3
+ "version": "0.4.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",