aidevops 3.32.188 → 3.32.189
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/README.md +1 -1
- package/VERSION +1 -1
- package/aidevops.sh +9 -11
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ The result: an AI operations platform that manages projects across every busines
|
|
|
60
60
|
[](https://github.com/marcusquinn)
|
|
61
61
|
|
|
62
62
|
<!-- Release & Version Info -->
|
|
63
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
64
64
|
[](https://www.npmjs.com/package/aidevops)
|
|
65
65
|
[](https://github.com/marcusquinn/homebrew-tap)
|
|
66
66
|
[](https://github.com/marcusquinn/aidevops)
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.32.
|
|
1
|
+
3.32.189
|
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.32.
|
|
8
|
+
# Version: 3.32.189
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -961,6 +961,7 @@ _help_commands() {
|
|
|
961
961
|
echo " doctor Detect duplicate installs and PATH conflicts (--fix to resolve)"
|
|
962
962
|
echo " update Update aidevops to the latest version (alias: upgrade)"
|
|
963
963
|
echo " upgrade Alias for update"
|
|
964
|
+
echo " release <cmd> Publish/status/reconcile a provenance-bound aidevops release"
|
|
964
965
|
echo " pulse <cmd> Session-based pulse control (start/stop/status)"
|
|
965
966
|
echo " schedule <cmd> Durable one-shot jobs (once/status/cancel)"
|
|
966
967
|
echo " launch-worker Manually launch headless workers for GitHub issues"
|
|
@@ -1250,20 +1251,16 @@ cmd_version() {
|
|
|
1250
1251
|
_dispatch_helper() {
|
|
1251
1252
|
local script_name="$1" error_name="$2"
|
|
1252
1253
|
shift 2
|
|
1253
|
-
local
|
|
1254
|
+
local coherent_hp="${AIDEVOPS_CLI_MODULES_DIR%/aidevops-cli}/$script_name"
|
|
1254
1255
|
local deployed_hp="$AGENTS_DIR/scripts/$script_name"
|
|
1255
|
-
local hp="$
|
|
1256
|
-
|
|
1257
|
-
hp="$source_hp"
|
|
1258
|
-
fi
|
|
1259
|
-
[[ ! -f "$hp" ]] && hp="$source_hp"
|
|
1256
|
+
local hp="$coherent_hp"
|
|
1257
|
+
[[ ! -f "$hp" ]] && hp="$deployed_hp"
|
|
1260
1258
|
if [[ -f "$hp" ]]; then
|
|
1261
1259
|
bash "$hp" "$@"
|
|
1262
|
-
|
|
1263
|
-
print_error "$error_name not found. Run: aidevops update"
|
|
1264
|
-
exit 1
|
|
1260
|
+
return $?
|
|
1265
1261
|
fi
|
|
1266
|
-
|
|
1262
|
+
print_error "$error_name not found. Run: aidevops update"
|
|
1263
|
+
return 1
|
|
1267
1264
|
}
|
|
1268
1265
|
|
|
1269
1266
|
_dispatch_config() {
|
|
@@ -1654,6 +1651,7 @@ main() {
|
|
|
1654
1651
|
features | f) cmd_features ;;
|
|
1655
1652
|
status | s) cmd_status ;;
|
|
1656
1653
|
update | upgrade | u) cmd_update "$@" ;;
|
|
1654
|
+
release) _dispatch_helper "full-loop-release-helper.sh" "full-loop-release-helper.sh" "$@" ;;
|
|
1657
1655
|
auto-update | autoupdate) _dispatch_helper "auto-update-helper.sh" "auto-update-helper.sh" "$@" ;;
|
|
1658
1656
|
repo-sync | reposync) _dispatch_helper "repo-sync-helper.sh" "repo-sync-helper.sh" "$@" ;;
|
|
1659
1657
|
update-tools | tools) cmd_update_tools "$@" ;;
|
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -17,7 +17,7 @@ fi
|
|
|
17
17
|
# AI Assistant Server Access Framework Setup Script
|
|
18
18
|
# Helps developers set up the framework for their infrastructure
|
|
19
19
|
#
|
|
20
|
-
# Version: 3.32.
|
|
20
|
+
# Version: 3.32.189
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|