aidevops 3.32.218 → 3.32.220

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.218-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
63
+ [![Version](https://img.shields.io/badge/Version-3.32.220-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)
@@ -102,6 +102,7 @@ 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
106
107
  - `aidevops secret` - Manage secrets (gopass encrypted, AI-safe)
107
108
  - `aidevops security` - Full security assessment (posture, secrets, supply chain)
@@ -283,6 +284,7 @@ aidevops status # Check what's installed
283
284
  aidevops doctor # Detect duplicate installs and PATH conflicts
284
285
  aidevops update # Update framework + check registered projects
285
286
  aidevops auto-update # Manage automatic update polling (every 10 min)
287
+ aidevops runtime-bundle list # Inspect retained validated runtime bundles
286
288
  aidevops init # Initialize aidevops in any project
287
289
  aidevops features # List available features
288
290
  aidevops repos # List/add/remove registered projects
@@ -2394,8 +2396,14 @@ wt merge
2394
2396
  # Creates: ~/Git/{repo}-feature-my-feature/ (cd there manually)
2395
2397
  ~/.aidevops/agents/scripts/worktree-helper.sh list
2396
2398
  ~/.aidevops/agents/scripts/worktree-helper.sh clean
2399
+ # Read-only count/byte inventory of retained recovery archives
2400
+ ~/.aidevops/agents/scripts/worktree-helper.sh recovery
2397
2401
  ```
2398
2402
 
2403
+ Recovery inventory classifies attributable archives as protected or unknown and
2404
+ never deletes them. OpenCode session history can aid reconstruction, but it does
2405
+ not replace archive integrity evidence or authorize cleanup.
2406
+
2399
2407
  **Benefits:**
2400
2408
  - Run tests on one branch while coding on another
2401
2409
  - Compare implementations side-by-side
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.32.218
1
+ 3.32.220
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.218
8
+ # Version: 3.32.220
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)"
@@ -1265,6 +1266,7 @@ cmd_help() {
1265
1266
  echo " aidevops doctor # Find duplicate/conflicting installs"
1266
1267
  echo " aidevops doctor --fix # Interactively remove duplicates"
1267
1268
  echo " aidevops update # Update framework + check projects"
1269
+ echo " aidevops runtime-bundle list # List retained validated runtime bundle IDs"
1268
1270
  echo " aidevops gpt56-context # Manage the 300K GPT-5.6 OpenCode context cap"
1269
1271
  echo " aidevops repos # List registered projects"
1270
1272
  echo " aidevops launch-worker 22259 marcusquinn/aidevops --dry-run"
@@ -1712,6 +1714,7 @@ main() {
1712
1714
  features | f) cmd_features ;;
1713
1715
  status | s) cmd_status ;;
1714
1716
  update | upgrade | u) cmd_update "$@" ;;
1717
+ runtime-bundle | runtime_bundle) AIDEVOPS_INSTALL_DIR="$INSTALL_DIR" _dispatch_helper "runtime-bundle-rollback-helper.sh" "runtime-bundle-rollback-helper.sh" "$@" ;;
1715
1718
  release) _dispatch_helper "full-loop-release-helper.sh" "full-loop-release-helper.sh" "$@" ;;
1716
1719
  auto-update | autoupdate) _dispatch_helper "auto-update-helper.sh" "auto-update-helper.sh" "$@" ;;
1717
1720
  repo-sync | reposync) _dispatch_helper "repo-sync-helper.sh" "repo-sync-helper.sh" "$@" ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.32.218",
3
+ "version": "3.32.220",
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.218
20
+ # Version: 3.32.220
21
21
  #
22
22
  # Quick Install:
23
23
  # npm install -g aidevops && aidevops update (recommended)