kodelyth-ecc 1.5.9 → 1.5.10

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/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to Kodelyth ECC are documented here.
4
4
 
5
+ ## v1.5.10 — Fix install crash on macOS bash 3.2 (May 2026)
6
+
7
+ ### Bug Fix
8
+
9
+ - **`install.sh` crashes after Rules (common) on `claude-home` target** — `set -euo pipefail` + bash 3.2 (macOS default) treats an empty array `"${LANGUAGE_MODULES[@]}"` as an unbound variable and exits. Fixed by using the bash 3.2-safe empty-array expansion `"${LANGUAGE_MODULES[@]+"${LANGUAGE_MODULES[@]}"}"`, matching the pattern already correctly used for the JSON install state on line 430. Users who install without any `--profile` or language flags (the majority) were affected.
10
+
11
+ ---
12
+
5
13
  ## v1.5.9 — Intent routing for all 5 parallel commands (May 2026)
6
14
 
7
15
  ### Bug Fix / Feature
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.9
1
+ 1.5.10
package/install.sh CHANGED
@@ -363,7 +363,7 @@ case "$TARGET" in
363
363
  cp -r "$SCRIPT_DIR/rules/common"/. "$RULES_DEST/"
364
364
  echo -e " ${GREEN}✓${RESET} Rules (common) ${BLUE}(→ $RULES_DEST)${RESET}"
365
365
  fi
366
- for lang in "${LANGUAGE_MODULES[@]}"; do
366
+ for lang in "${LANGUAGE_MODULES[@]+"${LANGUAGE_MODULES[@]}"}"; do
367
367
  if [[ -d "$SCRIPT_DIR/rules/$lang" ]]; then
368
368
  mkdir -p "$RULES_DEST/$lang"
369
369
  cp -r "$SCRIPT_DIR/rules/$lang"/. "$RULES_DEST/$lang/"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kodelyth-ecc",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
4
4
  "description": "Production-grade AI coding toolkit — 62 agents, 188 skills, 90 commands, parallel multi-agent commands, semantic intent routing, self-learning memory. Works with Claude Code, Windsurf, Cursor, Codex, Antigravity, and OpenCode.",
5
5
  "author": "Kodelyth <github.com/sifxprime>",
6
6
  "license": "MIT",