aidevops 3.32.263 → 3.32.265

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.263-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
63
+ [![Version](https://img.shields.io/badge/Version-3.32.265-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.263
1
+ 3.32.265
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.263
8
+ # Version: 3.32.265
9
9
 
10
10
  set -euo pipefail
11
11
 
@@ -1068,7 +1068,7 @@ _help_commands() {
1068
1068
  echo " vault <cmd> Local encrypted Vault broker (init/unlock/lock/status/read/update)"
1069
1069
  echo " config <cmd> Feature toggles (list/get/set/reset/path/help)"
1070
1070
  echo " knowledge <cmd> Knowledge plane management (init/status/provision)"
1071
- echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + asset (P4) + new/list/status/archive (P2) + draft (P5) + launch/promote (P6)"
1071
+ echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + asset (P4) + new/list/status/archive (P2) + draft (P5) + launch/promote (P6) + grow (orchestration)"
1072
1072
  echo " stats <cmd> LLM usage analytics (summary/models/projects/costs/trend)"
1073
1073
  echo " tabby <cmd> Manage Tabby terminal profiles (sync/status/zshrc/help)"
1074
1074
  echo " buzz <cmd> Manage Buzz Desktop OpenCode ACP compatibility"
@@ -1204,6 +1204,8 @@ _help_detailed_sections() {
1204
1204
  echo " aidevops campaign launch <id> # Move active/<id> → launched/, create templates (P6)"
1205
1205
  echo " aidevops campaign promote <id> [--results|--learnings] # Cross-plane promotion (P6)"
1206
1206
  echo " aidevops campaign feedback [<id>] # Surface _feedback/ insights for research (P6)"
1207
+ echo " aidevops campaign grow plan --intake <file> # Non-mutating growth orchestration plan"
1208
+ echo " aidevops campaign grow <start|status|resume> <id> # Evidence-backed growth checkpoint"
1207
1209
  echo ""
1208
1210
  echo "Performance Plane:"
1209
1211
  echo " aidevops performance init # Provision _performance/marketing/"
@@ -1968,6 +1970,17 @@ main() {
1968
1970
  shift
1969
1971
  _dispatch_helper "campaign-asset-helper.sh" "campaign-asset-helper.sh" "$@"
1970
1972
  ;;
1973
+ grow | growth)
1974
+ shift
1975
+ local _growth_helper="${AIDEVOPS_CLI_MODULES_DIR%/aidevops-cli}/campaign-growth-helper.py"
1976
+ [[ ! -f "$_growth_helper" ]] && _growth_helper="$AGENTS_DIR/scripts/campaign-growth-helper.py"
1977
+ if [[ -f "$_growth_helper" ]]; then
1978
+ python3 "$_growth_helper" "$@"
1979
+ else
1980
+ print_error "campaign-growth-helper.py not found. Run: aidevops update"
1981
+ return 1
1982
+ fi
1983
+ ;;
1971
1984
  *)
1972
1985
  _dispatch_helper "$_camp_helper" "$_camp_helper" "$@"
1973
1986
  ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.32.263",
3
+ "version": "3.32.265",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.11",
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.263
20
+ # Version: 3.32.265
21
21
  #
22
22
  # Quick Install:
23
23
  # npm install -g aidevops && aidevops update (recommended)