aidevops 3.13.7 → 3.13.8

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/VERSION CHANGED
@@ -1 +1 @@
1
- 3.13.7
1
+ 3.13.8
package/aidevops.sh CHANGED
@@ -5,7 +5,7 @@
5
5
  # AI DevOps Framework CLI
6
6
  # Usage: aidevops <command> [options]
7
7
  #
8
- # Version: 3.13.7
8
+ # Version: 3.13.8
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.13.7",
3
+ "version": "3.13.8",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -39,13 +39,13 @@ trap 'rc=$?; echo "[ERROR] ${BASH_SOURCE[0]}:${LINENO} exit $rc" >&2' ERR
39
39
  shopt -s inherit_errexit 2>/dev/null || true
40
40
 
41
41
  # SCRIPT_DIR — resolves to the setup-modules/ directory so sub-library
42
- # source calls work regardless of the caller's working directory.
43
- if [[ -z "${SCRIPT_DIR:-}" ]]; then
44
- _sched_orch_lib_path="${BASH_SOURCE[0]%/*}"
45
- [[ "$_sched_orch_lib_path" == "${BASH_SOURCE[0]}" ]] && _sched_orch_lib_path="."
46
- SCRIPT_DIR="$(cd "$_sched_orch_lib_path" && pwd)"
47
- unset _sched_orch_lib_path
48
- fi
42
+ # source calls work regardless of the caller's working directory or any
43
+ # inherited SCRIPT_DIR from parent scripts. Always derive from ${BASH_SOURCE[0]}
44
+ # to ensure sub-libraries load from the correct location.
45
+ _sched_orch_lib_path="${BASH_SOURCE[0]%/*}"
46
+ [[ "$_sched_orch_lib_path" == "${BASH_SOURCE[0]}" ]] && _sched_orch_lib_path="."
47
+ SCRIPT_DIR="$(cd "$_sched_orch_lib_path" && pwd)"
48
+ unset _sched_orch_lib_path
49
49
 
50
50
  # Source sub-libraries. Each carries its own include guard so double-sourcing
51
51
  # is safe. SC1091 suppressed per reference/large-file-split.md §5.1 — paths
package/setup.sh CHANGED
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
12
12
  # AI Assistant Server Access Framework Setup Script
13
13
  # Helps developers set up the framework for their infrastructure
14
14
  #
15
- # Version: 3.13.7
15
+ # Version: 3.13.8
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)