aidevops 3.8.92 → 3.8.94
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/VERSION +1 -1
- package/aidevops.sh +8 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.8.
|
|
1
|
+
3.8.94
|
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.8.
|
|
8
|
+
# Version: 3.8.94
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1382,6 +1382,7 @@ _help_commands() {
|
|
|
1382
1382
|
echo " opencode-sandbox Test OpenCode versions in isolation (install/run/check/clean)"
|
|
1383
1383
|
echo " approve <cmd> Cryptographic issue/PR approval (setup/issue/pr/verify/status)"
|
|
1384
1384
|
echo " security [cmd] Full security assessment (posture + hygiene + supply chain)"
|
|
1385
|
+
echo " contributions External contributions inbox (bare: status | seed/scan/stop/restart/install/uninstall)"
|
|
1385
1386
|
echo " ip-check <cmd> IP reputation checks (check/batch/report/providers)"
|
|
1386
1387
|
echo " secret <cmd> Manage secrets (set/list/run/init/import/status)"
|
|
1387
1388
|
echo " config <cmd> Feature toggles (list/get/set/reset/path/help)"
|
|
@@ -1750,6 +1751,12 @@ main() {
|
|
|
1750
1751
|
secret | secrets) _dispatch_helper "secret-helper.sh" "secret-helper.sh" "$@" ;;
|
|
1751
1752
|
approve) _dispatch_helper "approval-helper.sh" "approval-helper.sh" "$@" ;;
|
|
1752
1753
|
signing) _dispatch_helper "signing-setup.sh" "signing-setup.sh" "$@" ;;
|
|
1754
|
+
contributions | contrib)
|
|
1755
|
+
# Bare `aidevops contributions` defaults to status (most common use).
|
|
1756
|
+
# Other subcommands (seed, scan, stop, restart, install, uninstall) forward verbatim.
|
|
1757
|
+
[[ $# -eq 0 ]] && set -- status
|
|
1758
|
+
_dispatch_helper "contribution-watch-helper.sh" "contribution-watch-helper.sh" "$@"
|
|
1759
|
+
;;
|
|
1753
1760
|
stats | observability) _dispatch_helper "observability-helper.sh" "observability-helper.sh" "$@" ;;
|
|
1754
1761
|
tabby) _dispatch_helper "tabby-helper.sh" "tabby-helper.sh" "$@" ;;
|
|
1755
1762
|
init-routines) _dispatch_helper "init-routines-helper.sh" "init-routines-helper.sh" "$@" ;;
|
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
12
12
|
# AI Assistant Server Access Framework Setup Script
|
|
13
13
|
# Helps developers set up the framework for their infrastructure
|
|
14
14
|
#
|
|
15
|
-
# Version: 3.8.
|
|
15
|
+
# Version: 3.8.94
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|