aidevops 3.32.29 → 3.32.31
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 +1 -1
- package/package.json +1 -1
- package/setup.sh +9 -2
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.31
|
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.32.
|
|
15
|
+
# Version: 3.32.31
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -1620,7 +1620,6 @@ _setup_run_interactive() {
|
|
|
1620
1620
|
confirm_step "Setup SSH key" && setup_ssh_key
|
|
1621
1621
|
confirm_step "Setup configuration files" && setup_configs
|
|
1622
1622
|
confirm_step "Set secure permissions on config files" && set_permissions
|
|
1623
|
-
confirm_step "Install aidevops CLI command" && install_aidevops_cli
|
|
1624
1623
|
confirm_step "Setup shell aliases" && setup_aliases
|
|
1625
1624
|
confirm_step "Setup terminal title integration" && setup_terminal_title
|
|
1626
1625
|
confirm_step "Deploy AI templates to home directories" && deploy_ai_templates
|
|
@@ -1640,6 +1639,9 @@ _setup_run_interactive() {
|
|
|
1640
1639
|
confirm_step "Extract OpenCode prompts" && extract_opencode_prompts
|
|
1641
1640
|
confirm_step "Check OpenCode prompt drift" && check_opencode_prompt_drift
|
|
1642
1641
|
confirm_step "Deploy aidevops agents to ~/.aidevops/agents/" && { deploy_aidevops_agents; _deploy_hotfix_config; }
|
|
1642
|
+
# Launcher verification reads the deployed VERSION, so it must follow agent
|
|
1643
|
+
# deployment on first-run interactive setup as it already does non-interactively.
|
|
1644
|
+
confirm_step "Install and verify aidevops CLI command" && install_aidevops_cli
|
|
1643
1645
|
confirm_step "Sync agents from private repositories" && sync_agent_sources
|
|
1644
1646
|
confirm_step "Set up routines repo (private repo for recurring operational jobs)" && setup_routines
|
|
1645
1647
|
is_feature_enabled safety_hooks 2>/dev/null && confirm_step "Install Claude Code safety hooks (block destructive commands)" && setup_safety_hooks
|
|
@@ -1902,6 +1904,11 @@ main() {
|
|
|
1902
1904
|
fi
|
|
1903
1905
|
|
|
1904
1906
|
if [[ "$NON_INTERACTIVE" == "true" ]]; then
|
|
1907
|
+
# Full-loop release deployment uses this mutex. It remains held through
|
|
1908
|
+
# deploy_aidevops_agents and install_aidevops_cli, so agent and CLI
|
|
1909
|
+
# convergence are one serialized non-interactive deployment interval.
|
|
1910
|
+
# Direct interactive setup is intentionally outside this guarantee: holding
|
|
1911
|
+
# the mutex across prompts can block unattended full-loop deployments.
|
|
1905
1912
|
_setup_acquire_noninteractive_setup_lock "$@" || exit $?
|
|
1906
1913
|
fi
|
|
1907
1914
|
|