aidevops 3.32.132 → 3.32.134
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 +16 -3
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)
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.32.
|
|
1
|
+
3.32.134
|
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.134
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -831,6 +831,7 @@ _cmd_setup_help() {
|
|
|
831
831
|
printf '%s\n' "Scopes:"
|
|
832
832
|
printf '%s\n' " opencode Repair/install the OpenCode CLI only"
|
|
833
833
|
printf '%s\n' " agents Deploy aidevops agents/scripts only"
|
|
834
|
+
printf '%s\n' " runtime-config Reconcile generated runtime commands/configuration"
|
|
834
835
|
printf '%s\n' " hooks Install safety hooks only"
|
|
835
836
|
printf '%s\n' " tabby Sync Tabby terminal profiles only"
|
|
836
837
|
printf '%s\n' " pulse Install/refresh the pulse scheduler only"
|
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.134
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -44,6 +44,7 @@ SETUP_STAGE_TABBY="setup_tabby"
|
|
|
44
44
|
SETUP_STAGE_PULSE="setup_supervisor_pulse"
|
|
45
45
|
SETUP_STAGE_GUI_DESKTOP="setup_gui_desktop_app"
|
|
46
46
|
SETUP_STAGE_AI_SESSION="setup_ai_session_incremental"
|
|
47
|
+
SETUP_STAGE_RUNTIME_CONFIG="reconcile_runtime_config"
|
|
47
48
|
SETUP_STAGE_OPENCODE_PLUGINS="setup_opencode_plugins"
|
|
48
49
|
SETUP_STAGE_HOTFIX_CONFIG="_deploy_hotfix_config"
|
|
49
50
|
SETUP_GUI_APP_NAME="aidevops.app"
|
|
@@ -414,8 +415,8 @@ parse_args() {
|
|
|
414
415
|
echo "Use --clean after removing or renaming agents to sync deletions."
|
|
415
416
|
echo "Use --interactive to control each step individually."
|
|
416
417
|
echo "Use --non-interactive for CI/CD or AI agent shells (no stdin required)."
|
|
417
|
-
echo "Use --stage for targeted updates: opencode, agents, hooks, tabby, pulse, gui-desktop, ai-session, full."
|
|
418
|
-
echo "Stage aliases: ${SETUP_STAGE_OPENCODE}, ${SETUP_STAGE_AGENTS}, ${SETUP_STAGE_HOOKS}, ${SETUP_STAGE_TABBY}, ${SETUP_STAGE_PULSE}, ${SETUP_STAGE_GUI_DESKTOP}, ${SETUP_STAGE_AI_SESSION}."
|
|
418
|
+
echo "Use --stage for targeted updates: opencode, agents, runtime-config, hooks, tabby, pulse, gui-desktop, ai-session, full."
|
|
419
|
+
echo "Stage aliases: ${SETUP_STAGE_OPENCODE}, ${SETUP_STAGE_AGENTS}, ${SETUP_STAGE_RUNTIME_CONFIG}, ${SETUP_STAGE_HOOKS}, ${SETUP_STAGE_TABBY}, ${SETUP_STAGE_PULSE}, ${SETUP_STAGE_GUI_DESKTOP}, ${SETUP_STAGE_AI_SESSION}."
|
|
419
420
|
echo "Install ${SETUP_GUI_APP_NAME} explicitly with --stage gui-desktop or AIDEVOPS_GUI_DESKTOP_INSTALL=true."
|
|
420
421
|
echo "Use --update to check for tool updates after setup completes."
|
|
421
422
|
exit 0
|
|
@@ -437,6 +438,7 @@ _setup_print_stage_help() {
|
|
|
437
438
|
printf '%s\n' "Supported setup stages/scopes:"
|
|
438
439
|
printf ' opencode | %s Repair/install OpenCode CLI only\n' "$SETUP_STAGE_OPENCODE"
|
|
439
440
|
printf ' agents | %s Deploy .agents scripts/prompts only\n' "$SETUP_STAGE_AGENTS"
|
|
441
|
+
printf ' runtime-config | %s Reconcile generated runtime commands/configuration\n' "$SETUP_STAGE_RUNTIME_CONFIG"
|
|
440
442
|
printf ' hooks | %s Install safety hooks only\n' "$SETUP_STAGE_HOOKS"
|
|
441
443
|
printf ' tabby | %s Sync Tabby profiles only\n' "$SETUP_STAGE_TABBY"
|
|
442
444
|
printf ' pulse | %s Install/refresh pulse scheduler only\n' "$SETUP_STAGE_PULSE"
|
|
@@ -451,6 +453,7 @@ _setup_canonical_stage() {
|
|
|
451
453
|
case "$stage" in
|
|
452
454
|
opencode | "$SETUP_STAGE_OPENCODE") printf '%s' "$SETUP_STAGE_OPENCODE" ;;
|
|
453
455
|
agents | "$SETUP_STAGE_AGENTS") printf '%s' "$SETUP_STAGE_AGENTS" ;;
|
|
456
|
+
runtime-config | runtime | "$SETUP_STAGE_RUNTIME_CONFIG") printf '%s' "$SETUP_STAGE_RUNTIME_CONFIG" ;;
|
|
454
457
|
hooks | "$SETUP_STAGE_HOOKS") printf '%s' "$SETUP_STAGE_HOOKS" ;;
|
|
455
458
|
tabby | "$SETUP_STAGE_TABBY") printf '%s' "$SETUP_STAGE_TABBY" ;;
|
|
456
459
|
pulse | "$SETUP_STAGE_PULSE") printf '%s' "$SETUP_STAGE_PULSE" ;;
|
|
@@ -1309,6 +1312,12 @@ _setup_ai_session_build_plan() {
|
|
|
1309
1312
|
return 0
|
|
1310
1313
|
}
|
|
1311
1314
|
|
|
1315
|
+
_setup_reconcile_runtime_config() {
|
|
1316
|
+
update_runtime_configs || return $?
|
|
1317
|
+
deploy_commands_to_all_runtimes || return $?
|
|
1318
|
+
return 0
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1312
1321
|
_setup_ai_session_verify_deploy() {
|
|
1313
1322
|
local expected_sha="$1"
|
|
1314
1323
|
local repo_version=""
|
|
@@ -1378,6 +1387,7 @@ _setup_run_ai_session_incremental() {
|
|
|
1378
1387
|
_time_step "$SETUP_STAGE_AGENTS" deploy_aidevops_agents || return $?
|
|
1379
1388
|
_time_step "$SETUP_STAGE_OPENCODE_PLUGINS" setup_opencode_plugins || return $?
|
|
1380
1389
|
_time_step "$SETUP_STAGE_HOTFIX_CONFIG" _deploy_hotfix_config || return $?
|
|
1390
|
+
_time_step "$SETUP_STAGE_RUNTIME_CONFIG" _setup_reconcile_runtime_config || return $?
|
|
1381
1391
|
fi
|
|
1382
1392
|
if [[ "$_SETUP_AI_SESSION_NEEDS_CLI" -eq 1 ]]; then
|
|
1383
1393
|
_time_step "install_aidevops_cli" install_aidevops_cli || return $?
|
|
@@ -1423,6 +1433,9 @@ _setup_run_scoped_stage() {
|
|
|
1423
1433
|
_time_step "$SETUP_STAGE_OPENCODE_PLUGINS" setup_opencode_plugins
|
|
1424
1434
|
_time_step "$SETUP_STAGE_HOTFIX_CONFIG" _deploy_hotfix_config
|
|
1425
1435
|
;;
|
|
1436
|
+
"$SETUP_STAGE_RUNTIME_CONFIG")
|
|
1437
|
+
_time_step "$SETUP_STAGE_RUNTIME_CONFIG" _setup_reconcile_runtime_config
|
|
1438
|
+
;;
|
|
1426
1439
|
"$SETUP_STAGE_HOOKS")
|
|
1427
1440
|
_time_step "$SETUP_STAGE_HOOKS" setup_safety_hooks
|
|
1428
1441
|
;;
|