aidevops 3.32.219 → 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 +23 -1
- package/VERSION +1 -1
- package/aidevops.sh +6 -1
- package/package.json +1 -1
- package/setup.sh +21 -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)
|
|
@@ -102,7 +102,9 @@ the required notices and preferred credit text.
|
|
|
102
102
|
- `aidevops init` - Initialize in any project
|
|
103
103
|
- `aidevops update` - Update framework
|
|
104
104
|
- `aidevops auto-update` - Automatic update polling (enable/disable/status)
|
|
105
|
+
- `aidevops runtime-bundle list` - List retained validated runtime bundles; use `rollback --bundle-id <id> --reason <text>` for an explicit audited rollback
|
|
105
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
|
|
106
108
|
- `aidevops secret` - Manage secrets (gopass encrypted, AI-safe)
|
|
107
109
|
- `aidevops security` - Full security assessment (posture, secrets, supply chain)
|
|
108
110
|
- `aidevops lint audit` - Audit native lint/format/typecheck commands and repo-verify hooks
|
|
@@ -283,6 +285,7 @@ aidevops status # Check what's installed
|
|
|
283
285
|
aidevops doctor # Detect duplicate installs and PATH conflicts
|
|
284
286
|
aidevops update # Update framework + check registered projects
|
|
285
287
|
aidevops auto-update # Manage automatic update polling (every 10 min)
|
|
288
|
+
aidevops runtime-bundle list # Inspect retained validated runtime bundles
|
|
286
289
|
aidevops init # Initialize aidevops in any project
|
|
287
290
|
aidevops features # List available features
|
|
288
291
|
aidevops repos # List/add/remove registered projects
|
|
@@ -571,6 +574,25 @@ The native `ai_research` tool uses OpenCode's configured providers and canonical
|
|
|
571
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 🟢.**
|
|
572
575
|
- **[Zed](https://zed.dev/)** - Recommended editor. High-performance with AI integration (use with the OpenCode Agent Extension).
|
|
573
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
|
+
|
|
574
596
|
### Troubleshooting Auth
|
|
575
597
|
|
|
576
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.
|
|
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.
|
|
8
|
+
# Version: 3.32.222
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1006,6 +1006,7 @@ _help_commands() {
|
|
|
1006
1006
|
echo " doctor Detect duplicate installs and PATH conflicts (--fix to resolve)"
|
|
1007
1007
|
echo " update Update aidevops to the latest version (alias: upgrade)"
|
|
1008
1008
|
echo " upgrade Alias for update"
|
|
1009
|
+
echo " runtime-bundle Inspect retained bundles or run an explicit audited rollback"
|
|
1009
1010
|
echo " release <cmd> Publish/status/reconcile a provenance-bound aidevops release"
|
|
1010
1011
|
echo " pulse <cmd> Session-based pulse control (start/stop/status)"
|
|
1011
1012
|
echo " schedule <cmd> Durable one-shot jobs (once/status/cancel)"
|
|
@@ -1042,6 +1043,7 @@ _help_commands() {
|
|
|
1042
1043
|
echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + asset (P4) + new/list/status/archive (P2) + draft (P5) + launch/promote (P6)"
|
|
1043
1044
|
echo " stats <cmd> LLM usage analytics (summary/models/projects/costs/trend)"
|
|
1044
1045
|
echo " tabby <cmd> Manage Tabby terminal profiles (sync/status/zshrc/help)"
|
|
1046
|
+
echo " buzz <cmd> Manage Buzz Desktop OpenCode ACP compatibility"
|
|
1045
1047
|
echo " parent-status <N> Show decomposition state of parent-task issue #N (alias: ps)"
|
|
1046
1048
|
echo " detect Find and register aidevops projects"
|
|
1047
1049
|
echo " uninstall Remove aidevops from your system"
|
|
@@ -1265,6 +1267,7 @@ cmd_help() {
|
|
|
1265
1267
|
echo " aidevops doctor # Find duplicate/conflicting installs"
|
|
1266
1268
|
echo " aidevops doctor --fix # Interactively remove duplicates"
|
|
1267
1269
|
echo " aidevops update # Update framework + check projects"
|
|
1270
|
+
echo " aidevops runtime-bundle list # List retained validated runtime bundle IDs"
|
|
1268
1271
|
echo " aidevops gpt56-context # Manage the 300K GPT-5.6 OpenCode context cap"
|
|
1269
1272
|
echo " aidevops repos # List registered projects"
|
|
1270
1273
|
echo " aidevops launch-worker 22259 marcusquinn/aidevops --dry-run"
|
|
@@ -1712,6 +1715,7 @@ main() {
|
|
|
1712
1715
|
features | f) cmd_features ;;
|
|
1713
1716
|
status | s) cmd_status ;;
|
|
1714
1717
|
update | upgrade | u) cmd_update "$@" ;;
|
|
1718
|
+
runtime-bundle | runtime_bundle) AIDEVOPS_INSTALL_DIR="$INSTALL_DIR" _dispatch_helper "runtime-bundle-rollback-helper.sh" "runtime-bundle-rollback-helper.sh" "$@" ;;
|
|
1715
1719
|
release) _dispatch_helper "full-loop-release-helper.sh" "full-loop-release-helper.sh" "$@" ;;
|
|
1716
1720
|
auto-update | autoupdate) _dispatch_helper "auto-update-helper.sh" "auto-update-helper.sh" "$@" ;;
|
|
1717
1721
|
repo-sync | reposync) _dispatch_helper "repo-sync-helper.sh" "repo-sync-helper.sh" "$@" ;;
|
|
@@ -1876,6 +1880,7 @@ main() {
|
|
|
1876
1880
|
email) _cmd_email "$@" ;;
|
|
1877
1881
|
stats | observability) _dispatch_helper "observability-helper.sh" "observability-helper.sh" "$@" ;;
|
|
1878
1882
|
tabby) _dispatch_helper "tabby-helper.sh" "tabby-helper.sh" "$@" ;;
|
|
1883
|
+
buzz) _dispatch_helper "buzz-desktop-helper.sh" "buzz-desktop-helper.sh" "$@" ;;
|
|
1879
1884
|
init-routines) _dispatch_helper "init-routines-helper.sh" "init-routines-helper.sh" "$@" ;;
|
|
1880
1885
|
parent-status | ps) _dispatch_helper "parent-status-helper.sh" "parent-status-helper.sh" "$@" ;;
|
|
1881
1886
|
knowledge) _dispatch_helper "knowledge-helper.sh" "knowledge-helper.sh" "$@" ;;
|
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.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
|