aidevops 3.32.220 → 3.32.222

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.220-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
63
+ [![Version](https://img.shields.io/badge/Version-3.32.222-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)
@@ -104,6 +104,7 @@ the required notices and preferred credit text.
104
104
  - `aidevops auto-update` - Automatic update polling (enable/disable/status)
105
105
  - `aidevops runtime-bundle list` - List retained validated runtime bundles; use `rollback --bundle-id <id> --reason <text>` for an explicit audited rollback
106
106
  - `aidevops gpt56-context [enable|disable|status]` - Keep GPT-5.6 at a 300K advertised context window in OpenCode (enabled by default), so 80% auto-compaction runs near 240K before long-context pricing; disable to use native provider limits
107
+ - `aidevops buzz [status|apply|rollback]` - Inspect or manage Buzz Desktop OpenCode ACP compatibility
107
108
  - `aidevops secret` - Manage secrets (gopass encrypted, AI-safe)
108
109
  - `aidevops security` - Full security assessment (posture, secrets, supply chain)
109
110
  - `aidevops lint audit` - Audit native lint/format/typecheck commands and repo-verify hooks
@@ -573,6 +574,25 @@ The native `ai_research` tool uses OpenCode's configured providers and canonical
573
574
  - **[Tabby](https://tabby.sh/)** - Recommended terminal. Colour-coded Profiles per project/repo, **auto-syncs tab titles with git/session context and marks OpenCode turns from the first submitted message as ⚪, 🔴, 🟡, or 🟢.**
574
575
  - **[Zed](https://zed.dev/)** - Recommended editor. High-performance with AI integration (use with the OpenCode Agent Extension).
575
576
 
577
+ ### Buzz Desktop OpenCode ACP compatibility
578
+
579
+ Buzz Desktop 0.5.4 can save an OpenCode managed agent without the required
580
+ `acp` runtime argument, causing ACP initialization to time out. On macOS,
581
+ `aidevops init` and `aidevops update` automatically reconcile affected records
582
+ after deploying the current helper. Close Buzz first; if it is running, setup
583
+ defers the change and reports the manual command.
584
+
585
+ ```bash
586
+ aidevops buzz status # Inspect compatibility state without changing it
587
+ aidevops buzz apply # Add "acp" only to eligible empty argument lists
588
+ aidevops buzz rollback # Restore only fields changed by aidevops
589
+ ```
590
+
591
+ The migration preserves custom runtime arguments and unknown record fields,
592
+ uses private backups and rollback state, and fails closed for unsupported Buzz
593
+ versions or unsafe store paths. It never prints the managed-agent store, which
594
+ can contain fallback credentials.
595
+
576
596
  ### Troubleshooting Auth
577
597
 
578
598
  If you see **"Anthropic Key Missing"**, **"OpenAI Key Missing"**, or the model stops responding, run these commands from any terminal — no working model session required.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.32.220
1
+ 3.32.222
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.220
8
+ # Version: 3.32.222
9
9
 
10
10
  set -euo pipefail
11
11
 
@@ -1043,6 +1043,7 @@ _help_commands() {
1043
1043
  echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + asset (P4) + new/list/status/archive (P2) + draft (P5) + launch/promote (P6)"
1044
1044
  echo " stats <cmd> LLM usage analytics (summary/models/projects/costs/trend)"
1045
1045
  echo " tabby <cmd> Manage Tabby terminal profiles (sync/status/zshrc/help)"
1046
+ echo " buzz <cmd> Manage Buzz Desktop OpenCode ACP compatibility"
1046
1047
  echo " parent-status <N> Show decomposition state of parent-task issue #N (alias: ps)"
1047
1048
  echo " detect Find and register aidevops projects"
1048
1049
  echo " uninstall Remove aidevops from your system"
@@ -1879,6 +1880,7 @@ main() {
1879
1880
  email) _cmd_email "$@" ;;
1880
1881
  stats | observability) _dispatch_helper "observability-helper.sh" "observability-helper.sh" "$@" ;;
1881
1882
  tabby) _dispatch_helper "tabby-helper.sh" "tabby-helper.sh" "$@" ;;
1883
+ buzz) _dispatch_helper "buzz-desktop-helper.sh" "buzz-desktop-helper.sh" "$@" ;;
1882
1884
  init-routines) _dispatch_helper "init-routines-helper.sh" "init-routines-helper.sh" "$@" ;;
1883
1885
  parent-status | ps) _dispatch_helper "parent-status-helper.sh" "parent-status-helper.sh" "$@" ;;
1884
1886
  knowledge) _dispatch_helper "knowledge-helper.sh" "knowledge-helper.sh" "$@" ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.32.220",
3
+ "version": "3.32.222",
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.220
20
+ # Version: 3.32.222
21
21
  #
22
22
  # Quick Install:
23
23
  # npm install -g aidevops && aidevops update (recommended)
@@ -1483,6 +1483,24 @@ _setup_run_scoped_stage() {
1483
1483
  return 0
1484
1484
  }
1485
1485
 
1486
+ reconcile_buzz_desktop_compatibility() {
1487
+ local helper="${INSTALL_DIR}/agents/scripts/buzz-desktop-helper.sh"
1488
+ [[ -x "$helper" ]] || return 0
1489
+ local rc=0
1490
+ bash "$helper" reconcile --quiet || rc=$?
1491
+ case "$rc" in
1492
+ 0) return 0 ;;
1493
+ 2)
1494
+ print_warning "Buzz Desktop compatibility reconciliation deferred until Buzz is closed; run: aidevops buzz apply"
1495
+ return 0
1496
+ ;;
1497
+ *)
1498
+ print_warning "Buzz Desktop compatibility reconciliation failed; inspect with: aidevops buzz status"
1499
+ return 0
1500
+ ;;
1501
+ esac
1502
+ }
1503
+
1486
1504
  _setup_run_non_interactive() {
1487
1505
  print_info "Non-interactive mode: deploying agents and running safe migrations only"
1488
1506
 
@@ -1525,6 +1543,7 @@ _setup_run_non_interactive() {
1525
1543
  _time_step "validate_opencode_config" validate_opencode_config
1526
1544
  _time_step "$SETUP_STAGE_AGENTS" deploy_aidevops_agents
1527
1545
  _time_step "$SETUP_STAGE_OPENCODE_PLUGINS" setup_opencode_plugins
1546
+ _time_step "reconcile_buzz_desktop_compatibility" reconcile_buzz_desktop_compatibility
1528
1547
  _time_step "_setup_install_pulse_plist_early" _setup_install_pulse_plist_early
1529
1548
  _time_step "$SETUP_STAGE_HOTFIX_CONFIG" _deploy_hotfix_config
1530
1549
  _time_step "setup_opencode_desktop_launcher" setup_opencode_desktop_launcher
@@ -1699,6 +1718,7 @@ _setup_run_interactive() {
1699
1718
  deploy_aidevops_agents
1700
1719
  _deploy_hotfix_config
1701
1720
  }
1721
+ reconcile_buzz_desktop_compatibility
1702
1722
  # Launcher verification reads the deployed VERSION, so it must follow agent
1703
1723
  # deployment on first-run interactive setup as it already does non-interactively.
1704
1724
  confirm_step "Install and verify aidevops CLI command" && install_aidevops_cli