musubix2 0.5.80 → 0.5.81
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/.claude/.musubix-managed +1 -1
- package/dist/assets/skills-manifest.json +1 -1
- package/dist/cli.js +12 -1
- package/dist/index.js +12 -1
- package/package.json +1 -1
package/.claude/.musubix-managed
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"generator":"musubix2","version":"0.5.
|
|
1
|
+
{"generator":"musubix2","version":"0.5.81","timestamp":"2026-07-11T22:12:14.845Z"}
|
package/dist/cli.js
CHANGED
|
@@ -2607,7 +2607,15 @@ function capFirst(w) {
|
|
|
2607
2607
|
return w.charAt(0).toUpperCase() + w.slice(1);
|
|
2608
2608
|
}
|
|
2609
2609
|
function camelJoin(parts) {
|
|
2610
|
-
return parts.map((w, i) =>
|
|
2610
|
+
return parts.map((w, i) => {
|
|
2611
|
+
if (i !== 0) {
|
|
2612
|
+
return capFirst(w);
|
|
2613
|
+
}
|
|
2614
|
+
if (w.length > 1 && w === w.toUpperCase()) {
|
|
2615
|
+
return w.toLowerCase();
|
|
2616
|
+
}
|
|
2617
|
+
return w.charAt(0).toLowerCase() + w.slice(1);
|
|
2618
|
+
}).join("");
|
|
2611
2619
|
}
|
|
2612
2620
|
function pascalJoin(parts) {
|
|
2613
2621
|
return parts.map(capFirst).join("");
|
|
@@ -8947,6 +8955,9 @@ function isLikelyConfigSecret(matchText) {
|
|
|
8947
8955
|
if (/[$#]\{|\$\w|<[^>]+>|\{\{|%\(|process\.env|os\.environ|getenv/i.test(v)) {
|
|
8948
8956
|
return false;
|
|
8949
8957
|
}
|
|
8958
|
+
if (new Set(v).size < 4) {
|
|
8959
|
+
return false;
|
|
8960
|
+
}
|
|
8950
8961
|
return true;
|
|
8951
8962
|
}
|
|
8952
8963
|
function blankNonCode(code, hashComments) {
|
package/dist/index.js
CHANGED
|
@@ -2607,7 +2607,15 @@ function capFirst(w) {
|
|
|
2607
2607
|
return w.charAt(0).toUpperCase() + w.slice(1);
|
|
2608
2608
|
}
|
|
2609
2609
|
function camelJoin(parts) {
|
|
2610
|
-
return parts.map((w, i) =>
|
|
2610
|
+
return parts.map((w, i) => {
|
|
2611
|
+
if (i !== 0) {
|
|
2612
|
+
return capFirst(w);
|
|
2613
|
+
}
|
|
2614
|
+
if (w.length > 1 && w === w.toUpperCase()) {
|
|
2615
|
+
return w.toLowerCase();
|
|
2616
|
+
}
|
|
2617
|
+
return w.charAt(0).toLowerCase() + w.slice(1);
|
|
2618
|
+
}).join("");
|
|
2611
2619
|
}
|
|
2612
2620
|
function pascalJoin(parts) {
|
|
2613
2621
|
return parts.map(capFirst).join("");
|
|
@@ -8947,6 +8955,9 @@ function isLikelyConfigSecret(matchText) {
|
|
|
8947
8955
|
if (/[$#]\{|\$\w|<[^>]+>|\{\{|%\(|process\.env|os\.environ|getenv/i.test(v)) {
|
|
8948
8956
|
return false;
|
|
8949
8957
|
}
|
|
8958
|
+
if (new Set(v).size < 4) {
|
|
8959
|
+
return false;
|
|
8960
|
+
}
|
|
8950
8961
|
return true;
|
|
8951
8962
|
}
|
|
8952
8963
|
function blankNonCode(code, hashComments) {
|