aidevops 3.11.4 → 3.11.6

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 CHANGED
@@ -1 +1 @@
1
- 3.11.4
1
+ 3.11.6
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.11.4
8
+ # Version: 3.11.6
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.11.4",
3
+ "version": "3.11.6",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
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.4
15
+ # Version: 3.11.6
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/task-id-collision-check.yml.
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