aidevops 3.11.7 → 3.11.8
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 +1 -1
- package/package.json +1 -1
- package/setup.sh +8 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.11.
|
|
1
|
+
3.11.8
|
package/aidevops.sh
CHANGED
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.11.
|
|
15
|
+
# Version: 3.11.8
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -969,6 +969,13 @@ _setup_run_non_interactive() {
|
|
|
969
969
|
cleanup_stale_health_issue_caches
|
|
970
970
|
cleanup_worktree_entries_in_repos_json
|
|
971
971
|
_cleanup_legacy_model_config
|
|
972
|
+
# t2888: install/heal opencode-ai. Companion to t2887's runtime canary
|
|
973
|
+
# fail-fast -- t2887 detects when $OPENCODE_BIN_DEFAULT is wrong, this
|
|
974
|
+
# one fixes it by reinstalling opencode-ai@latest (overwriting any bin
|
|
975
|
+
# collision with @anthropic-ai/claude-code or similar). Skipping this
|
|
976
|
+
# in non-interactive mode is the bug PR #20189 introduced and what
|
|
977
|
+
# alex-solovyev's runner spam stemmed from.
|
|
978
|
+
setup_opencode_cli
|
|
972
979
|
validate_opencode_config
|
|
973
980
|
deploy_aidevops_agents
|
|
974
981
|
_deploy_hotfix_config
|