@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 +1 -1
- package/bin/ldm.js +3 -2
- package/catalog.json +3 -3
- package/package.json +1 -1
package/SKILL.md
CHANGED
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
|
-
|
|
674
|
-
|
|
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/
|
|
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", "
|
|
57
|
-
"cliMatches": ["wip-release", "wip-repos", "wip-file-guard", "wip-
|
|
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,
|