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 +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup-modules/tool-install.sh +3 -2
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.43
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -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:
|
|
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:
|
|
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.
|
|
13
|
+
# Version: 3.1.43
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|