aidevops 3.8.81 → 3.8.83
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 +8 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.8.
|
|
1
|
+
3.8.83
|
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.8.
|
|
8
|
+
# Version: 3.8.83
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -878,6 +878,13 @@ cmd_status() {
|
|
|
878
878
|
print_warning "Commit signing not configured — run: aidevops signing setup"
|
|
879
879
|
fi
|
|
880
880
|
echo ""
|
|
881
|
+
# t2424/GH#20030: Pulse operational counters (pre-dispatch aborts, etc.)
|
|
882
|
+
local stats_helper="$AGENTS_DIR/scripts/pulse-stats-helper.sh"
|
|
883
|
+
if [[ -x "$stats_helper" ]]; then
|
|
884
|
+
print_header "Pulse Stats"
|
|
885
|
+
"$stats_helper" status 2>/dev/null || print_info " (no stats recorded yet)"
|
|
886
|
+
echo ""
|
|
887
|
+
fi
|
|
881
888
|
}
|
|
882
889
|
|
|
883
890
|
# Update helpers (extracted for complexity reduction)
|
package/package.json
CHANGED
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.8.
|
|
15
|
+
# Version: 3.8.83
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|