aidevops 3.32.219 → 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 +3 -1
- package/VERSION +1 -1
- package/aidevops.sh +4 -1
- package/package.json +1 -1
- package/setup.sh +1 -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,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
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.32.
|
|
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.
|
|
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
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.220
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|