aidevops 3.32.188 → 3.32.190

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 CHANGED
@@ -60,7 +60,7 @@ The result: an AI operations platform that manages projects across every busines
60
60
  [![Copyright](https://img.shields.io/badge/Copyright-Marcus%20Quinn%202025--2026-blue.svg)](https://github.com/marcusquinn)
61
61
 
62
62
  <!-- Release & Version Info -->
63
- [![Version](https://img.shields.io/badge/Version-3.32.188-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
63
+ [![Version](https://img.shields.io/badge/Version-3.32.190-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
64
64
  [![npm version](https://img.shields.io/npm/v/aidevops)](https://www.npmjs.com/package/aidevops)
65
65
  [![Homebrew](https://img.shields.io/badge/homebrew-marcusquinn%2Ftap-orange)](https://github.com/marcusquinn/homebrew-tap)
66
66
  [![GitHub repository](https://img.shields.io/badge/github-repository-181717.svg?logo=github)](https://github.com/marcusquinn/aidevops)
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.32.188
1
+ 3.32.190
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.188
8
+ # Version: 3.32.190
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 source_hp="$INSTALL_DIR/.agents/scripts/$script_name"
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="$deployed_hp"
1256
- if [[ -f "$source_hp" && -f "$INSTALL_DIR/.agents/scripts/aidevops-cli/aidevops-repos-lib.sh" ]]; then
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
- else
1263
- print_error "$error_name not found. Run: aidevops update"
1264
- exit 1
1260
+ return $?
1265
1261
  fi
1266
- return 0
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.32.188",
3
+ "version": "3.32.190",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "workspaces": [
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.188
20
+ # Version: 3.32.190
21
21
  #
22
22
  # Quick Install:
23
23
  # npm install -g aidevops && aidevops update (recommended)