aidevops 3.0.0 → 3.0.1

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.0.0
1
+ 3.0.1
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 3.0.0
6
+ # Version: 3.0.1
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": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -441,6 +441,16 @@ check_requirements() {
441
441
  missing_deps+=("rg")
442
442
  missing_packages+=("ripgrep")
443
443
  fi
444
+ if ! command -v sqlite3 >/dev/null 2>&1; then
445
+ missing_deps+=("sqlite3")
446
+ # Package name varies: sqlite3 on Debian/Ubuntu/apt, sqlite on brew/Fedora/Arch/Alpine
447
+ local pkg_mgr
448
+ pkg_mgr=$(detect_package_manager)
449
+ case "$pkg_mgr" in
450
+ apt) missing_packages+=("sqlite3") ;;
451
+ *) missing_packages+=("sqlite") ;;
452
+ esac
453
+ fi
444
454
 
445
455
  if [[ ${#missing_deps[@]} -gt 0 ]]; then
446
456
  print_warning "Missing required dependencies: ${missing_deps[*]}"
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: 3.0.0
13
+ # Version: 3.0.1
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)