@wipcomputer/wip-ldm-os 0.4.21 → 0.4.22

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.4.21"
8
+ version: "0.4.22"
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
@@ -670,8 +670,9 @@ async function cmdInstallCatalog() {
670
670
  console.log(` CLI updated to v${latest}. Re-running with new code...`);
671
671
  console.log('');
672
672
  // Re-exec with the new binary. LDM_SELF_UPDATED prevents infinite loop.
673
- const newArgs = process.argv.slice(1);
674
- execSync(`LDM_SELF_UPDATED=1 ldm ${newArgs.join(' ')}`, { stdio: 'inherit' });
673
+ // process.argv.slice(2) skips 'node' and the script path, keeps just 'install' + flags
674
+ const reArgs = process.argv.slice(2).join(' ') || 'install';
675
+ execSync(`LDM_SELF_UPDATED=1 ldm ${reArgs}`, { stdio: 'inherit' });
675
676
  process.exit(0);
676
677
  } catch (e) {
677
678
  console.log(` ! Self-update failed: ${e.message}. Continuing with v${PKG_VERSION}.`);
package/catalog.json CHANGED
@@ -51,10 +51,10 @@
51
51
  "id": "wip-ai-devops-toolbox",
52
52
  "name": "AI DevOps Toolbox",
53
53
  "description": "Release pipeline, license compliance, repo management, identity file protection.",
54
- "npm": "@wipcomputer/universal-installer",
54
+ "npm": "@wipcomputer/wip-ai-devops-toolbox",
55
55
  "repo": "wipcomputer/wip-ai-devops-toolbox",
56
- "registryMatches": ["wip-repos", "wip-release", "wip-file-guard", "wip-license-hook", "wip-repo-permissions-hook", "universal-installer", "deploy-public", "post-merge-rename", "wip-license-guard", "wip-repo-init", "wip-readme-format", "wip-branch-guard"],
57
- "cliMatches": ["wip-release", "wip-repos", "wip-file-guard", "wip-install", "wip-branch-guard"],
56
+ "registryMatches": ["wip-repos", "wip-release", "wip-file-guard", "wip-license-hook", "wip-repo-permissions-hook", "deploy-public", "post-merge-rename", "wip-license-guard", "wip-repo-init", "wip-readme-format", "wip-branch-guard"],
57
+ "cliMatches": ["wip-release", "wip-repos", "wip-file-guard", "wip-branch-guard"],
58
58
  "recommended": false,
59
59
  "status": "stable",
60
60
  "postInstall": null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ldm-os",
3
- "version": "0.4.21",
3
+ "version": "0.4.22",
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",