aidevops 3.1.42 → 3.1.43

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.1.42
1
+ 3.1.43
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.1.42
6
+ # Version: 3.1.43
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.1.42",
3
+ "version": "3.1.43",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1042,6 +1042,7 @@ setup_minisim() {
1042
1042
  }
1043
1043
 
1044
1044
  setup_claudebar() {
1045
+ local claudebar_release_url="https://github.com/tddworks/ClaudeBar/releases/latest"
1045
1046
  # Only available on macOS (native Swift menu bar app)
1046
1047
  if [[ "$(uname)" != "Darwin" ]]; then
1047
1048
  return 0
@@ -1058,7 +1059,7 @@ setup_claudebar() {
1058
1059
  # Check if Homebrew is available (required for cask install)
1059
1060
  if ! command -v brew >/dev/null 2>&1; then
1060
1061
  print_warning "Homebrew not found - cannot install ClaudeBar automatically"
1061
- echo " Download manually: https://github.com/tddworks/ClaudeBar/releases/latest"
1062
+ echo " Download manually: $claudebar_release_url"
1062
1063
  return 0
1063
1064
  fi
1064
1065
 
@@ -1077,7 +1078,7 @@ setup_claudebar() {
1077
1078
  print_info "Launch from Applications or Spotlight to start monitoring quotas"
1078
1079
  else
1079
1080
  print_warning "Failed to install ClaudeBar via Homebrew"
1080
- echo " Download manually: https://github.com/tddworks/ClaudeBar/releases/latest"
1081
+ echo " Download manually: $claudebar_release_url"
1081
1082
  fi
1082
1083
  else
1083
1084
  print_info "Skipped ClaudeBar installation"
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.1.42
13
+ # Version: 3.1.43
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)