aidevops 3.34.11 → 3.34.13
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 +1 -1
- package/VERSION +1 -1
- package/aidevops.sh +2 -1
- package/package.json +1 -1
- package/setup.sh +3 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ token efficiency, and quality control built in.**
|
|
|
25
25
|
[](https://qlty.sh/gh/marcusquinn/projects/aidevops)
|
|
26
26
|
[](https://app.codacy.com/gh/marcusquinn/aidevops/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
27
27
|
[](https://opensource.org/licenses/MIT)
|
|
28
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
29
29
|
[](https://www.npmjs.com/package/aidevops)
|
|
30
30
|
[](https://github.com/marcusquinn/homebrew-tap)
|
|
31
31
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.34.
|
|
1
|
+
3.34.13
|
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.34.
|
|
8
|
+
# Version: 3.34.13
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -503,6 +503,7 @@ _update_finish() {
|
|
|
503
503
|
_update_check_homebrew
|
|
504
504
|
_update_check_planning
|
|
505
505
|
_update_check_tools
|
|
506
|
+
_update_reconcile_tabby_config
|
|
506
507
|
_update_sweep_opencode_symlinks
|
|
507
508
|
# t2926: Re-check setsid on every update (runs even when setup.sh is skipped).
|
|
508
509
|
_update_check_setsid
|
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.34.
|
|
20
|
+
# Version: 3.34.13
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -1416,6 +1416,7 @@ _setup_run_ai_session_incremental() {
|
|
|
1416
1416
|
|
|
1417
1417
|
if [[ "$deployed_sha" == "$current_sha" ]]; then
|
|
1418
1418
|
print_success "AI-session setup: deployed SHA already matches current checkout"
|
|
1419
|
+
_time_step "$SETUP_STAGE_TABBY" setup_tabby
|
|
1419
1420
|
_setup_ai_session_verify_deploy "$current_sha" || return $?
|
|
1420
1421
|
return 0
|
|
1421
1422
|
fi
|
|
@@ -1453,6 +1454,7 @@ _setup_run_ai_session_incremental() {
|
|
|
1453
1454
|
_time_step "setup_gui_desktop_app_opt_in" _setup_offer_gui_desktop_app || return $?
|
|
1454
1455
|
fi
|
|
1455
1456
|
|
|
1457
|
+
_time_step "$SETUP_STAGE_TABBY" setup_tabby
|
|
1456
1458
|
_setup_ai_session_verify_deploy "$current_sha" || return $?
|
|
1457
1459
|
print_success "AI-session incremental setup complete (${deployed_sha:0:7}→${current_sha:0:7})"
|
|
1458
1460
|
return 0
|