aidevops 2.172.23 → 2.172.26

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
- 2.172.23
1
+ 2.172.26
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 2.172.23
6
+ # Version: 2.172.26
7
7
 
8
8
  set -euo pipefail
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "2.172.23",
3
+ "version": "2.172.26",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,9 +22,17 @@ check_python_for_skill_scanner() {
22
22
  local ver_output
23
23
  ver_output=$("$py_bin" --version 2>/dev/null) || return 1
24
24
  # "Python 3.11.5" -> extract major.minor
25
- local major minor
26
- major=$(echo "$ver_output" | sed -E 's/Python ([0-9]+)\..*/\1/')
27
- minor=$(echo "$ver_output" | sed -E 's/Python [0-9]+\.([0-9]+).*/\1/')
25
+ if [[ "$ver_output" != Python\ * ]]; then
26
+ return 1
27
+ fi
28
+ local version major remainder minor
29
+ version="${ver_output#Python }"
30
+ major="${version%%.*}"
31
+ remainder="${version#*.}"
32
+ minor="${remainder%%.*}"
33
+ if [[ ! "$major" =~ ^[0-9]+$ || ! "$minor" =~ ^[0-9]+$ ]]; then
34
+ return 1
35
+ fi
28
36
  if [[ "$major" -gt "$required_major" ]] ||
29
37
  { [[ "$major" -eq "$required_major" ]] && [[ "$minor" -ge "$required_minor" ]]; }; then
30
38
  return 0
@@ -61,7 +69,13 @@ check_python_for_skill_scanner() {
61
69
  print_success "Python 3.11 installed via uv (at $uv_py)"
62
70
  return 0
63
71
  fi
64
- print_warning "uv installed Python 3.11 but it could not be found on PATH"
72
+ print_warning "uv reported Python 3.11 installed, but verification failed"
73
+ if [[ -n "$uv_py" ]]; then
74
+ print_warning "Found interpreter at $uv_py, but version verification still failed"
75
+ else
76
+ print_warning "python3.11 is not on PATH and 'uv python find 3.11' did not return a usable path"
77
+ fi
78
+ print_info "Run 'uv python list' to confirm the install and update PATH if needed"
65
79
  else
66
80
  print_warning "uv python install 3.11 failed — see errors above"
67
81
  fi
package/setup.sh CHANGED
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
10
10
  # AI Assistant Server Access Framework Setup Script
11
11
  # Helps developers set up the framework for their infrastructure
12
12
  #
13
- # Version: 2.172.23
13
+ # Version: 2.172.26
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)