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.
@@ -1 +1 @@
1
- {"generator":"musubix2","version":"0.5.80","timestamp":"2026-07-11T22:03:06.382Z"}
1
+ {"generator":"musubix2","version":"0.5.81","timestamp":"2026-07-11T22:12:14.845Z"}
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0",
3
- "generatedAt": "2026-07-11T22:03:06.414Z",
3
+ "generatedAt": "2026-07-11T22:12:14.878Z",
4
4
  "entries": [
5
5
  {
6
6
  "platform": "copilot",
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) => i === 0 ? w.charAt(0).toLowerCase() + w.slice(1) : capFirst(w)).join("");
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) => i === 0 ? w.charAt(0).toLowerCase() + w.slice(1) : capFirst(w)).join("");
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musubix2",
3
- "version": "0.5.80",
3
+ "version": "0.5.81",
4
4
  "description": "MUSUBIX2 — Specification Driven Development System",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",