aidevops 3.11.5 → 3.11.7
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 +9 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.11.
|
|
1
|
+
3.11.7
|
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.7
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -95,6 +95,8 @@ if [[ -d "$SETUP_MODULES_DIR" ]]; then
|
|
|
95
95
|
source "$SETUP_MODULES_DIR/_task_id_guard.sh"
|
|
96
96
|
# shellcheck disable=SC1091
|
|
97
97
|
source "$SETUP_MODULES_DIR/_canonical_guard.sh"
|
|
98
|
+
# shellcheck disable=SC1091
|
|
99
|
+
source "$SETUP_MODULES_DIR/_worktree_exclusions.sh"
|
|
98
100
|
fi
|
|
99
101
|
|
|
100
102
|
print_info() { local _m="$1"; echo -e "${BLUE}[INFO]${NC} $_m"; return 0; }
|
|
@@ -1024,8 +1026,13 @@ _setup_run_non_interactive() {
|
|
|
1024
1026
|
# Install/refresh the task-id collision guard commit-msg hook in every
|
|
1025
1027
|
# initialized repo so invented t-IDs in commit subjects are rejected
|
|
1026
1028
|
# at commit time (t2047). Belt-and-braces with the CI check in
|
|
1027
|
-
# .github/workflows/
|
|
1029
|
+
# .github/workflows/ta[redacted-credential].yml.
|
|
1028
1030
|
setup_task_id_guard
|
|
1031
|
+
# Apply Spotlight + Time Machine exclusions to every worktree across
|
|
1032
|
+
# registered repos so the backup/index cascade triggered by node_modules
|
|
1033
|
+
# copies doesn't burn CPU (t2885). Idempotent. macOS only — Linux
|
|
1034
|
+
# indexers tracked separately.
|
|
1035
|
+
setup_worktree_exclusions
|
|
1029
1036
|
return 0
|
|
1030
1037
|
}
|
|
1031
1038
|
|