@wipcomputer/wip-ldm-os 0.4.50 → 0.4.51
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/lib/deploy.mjs +3 -5
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -9,7 +9,7 @@ license: MIT
|
|
|
9
9
|
compatibility: Requires git, npm, node. Node.js 18+.
|
|
10
10
|
metadata:
|
|
11
11
|
display-name: "LDM OS"
|
|
12
|
-
version: "0.4.
|
|
12
|
+
version: "0.4.51"
|
|
13
13
|
homepage: "https://github.com/wipcomputer/wip-ldm-os"
|
|
14
14
|
author: "Parker Todd Brooks"
|
|
15
15
|
category: infrastructure
|
package/lib/deploy.mjs
CHANGED
|
@@ -835,11 +835,9 @@ export function installSingleTool(toolPath) {
|
|
|
835
835
|
}
|
|
836
836
|
|
|
837
837
|
if (interfaces.skill) {
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
skip(`Skill: ${toolName} installed but not enabled`);
|
|
842
|
-
}
|
|
838
|
+
// Skills always deploy regardless of enabled state.
|
|
839
|
+
// They're instruction files (SKILL.md), not running code.
|
|
840
|
+
if (installSkill(toolPath, toolName)) installed++;
|
|
843
841
|
}
|
|
844
842
|
|
|
845
843
|
if (interfaces.module) {
|