@darkrei08/setup-ai 3.3.0 → 3.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darkrei08/setup-ai",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Cross-OS installer for an AI coding toolchain (pi, codex, antigravity, opencode, herdr, gentle-ai/gga, Engineering Excellence) with an interactive module menu and per-agent MCP registration.",
5
5
  "type": "module",
6
6
  "bin": {
package/setup-ai.ps1 CHANGED
@@ -2,7 +2,7 @@
2
2
  <#
3
3
  ==============================================================================
4
4
  AI Dev Suite — Engineering Excellence Edition (Windows)
5
- Version: 3.3.0
5
+ Version: 3.3.1
6
6
 
7
7
  Windows-native installer, sibling of setup-ai.sh. Uses each tool's official
8
8
  Windows method: winget for language runtimes, the vendor install.ps1 scripts
@@ -50,7 +50,7 @@ try {
50
50
  Write-Warning "Could not set UTF-8 console encoding: $($_.Exception.Message)"
51
51
  }
52
52
 
53
- $ScriptVersion = "3.3.0"
53
+ $ScriptVersion = "3.3.1"
54
54
  $ScriptPath = $PSCommandPath
55
55
  $ScriptDir = Split-Path -Parent $ScriptPath
56
56
  $LogDir = Join-Path $ScriptDir "logs"
package/setup-ai.sh CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ==============================================================================
4
4
  # AI Dev Suite — Engineering Excellence Edition
5
- # Version: 3.3.0
5
+ # Version: 3.3.1
6
6
  #
7
7
  # Cross-platform (macOS + all major Linux distros) installer for an AI coding
8
8
  # toolchain. Windows is handled by the sibling setup-ai.ps1; the Node launcher
@@ -26,7 +26,7 @@
26
26
  set -Eeuo pipefail
27
27
  IFS=$'\n\t'
28
28
 
29
- SCRIPT_VERSION="3.3.0"
29
+ SCRIPT_VERSION="3.3.1"
30
30
 
31
31
  SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
32
32
  LOG_DIR="${SCRIPT_DIR}/logs"
@@ -582,7 +582,7 @@ mod_dotenv() {
582
582
 
583
583
  # Idempotent upstream-quirk patches (no-ops once upstream merges the fixes).
584
584
  if grep_probe "dotenv" "${TMP_DIR}/monokai_hits" \
585
- -RIl --exclude-dir=.git "gthelding/monokai-pro.nvim" "${DOTENV_DIR}"; then
585
+ -rIl --exclude-dir=.git "gthelding/monokai-pro.nvim" "${DOTENV_DIR}"; then
586
586
  while IFS= read -r file; do
587
587
  run_cmd "dotenv" sed -i 's|gthelding/monokai-pro.nvim|loctvl842/monokai-pro.nvim|g' "${file}"
588
588
  log_event "INFO" "dotenv" "reference_patched" "Updated stale monokai-pro reference" 0 "file=${file}"
@@ -590,7 +590,7 @@ mod_dotenv() {
590
590
  fi
591
591
 
592
592
  if grep_probe "dotenv" "${TMP_DIR}/sudo_npm_hits" \
593
- -RIl --exclude-dir=.git 'sudo npm install -g --prefix /usr/local bun' "${DOTENV_DIR}"; then
593
+ -rIl --exclude-dir=.git 'sudo npm install -g --prefix /usr/local bun' "${DOTENV_DIR}"; then
594
594
  while IFS= read -r file; do
595
595
  run_cmd "dotenv" sed -i 's|sudo npm install -g --prefix /usr/local bun|sudo "$(command -v npm)" install -g --prefix /usr/local bun|g' "${file}"
596
596
  log_event "INFO" "dotenv" "reference_patched" "Patched sudo npm call to absolute path" 0 "file=${file}"
@@ -598,7 +598,7 @@ mod_dotenv() {
598
598
  fi
599
599
 
600
600
  if grep_probe "dotenv" "${TMP_DIR}/treesitter_hits" \
601
- -RIl --exclude-dir=.git -e 'npm install -g --prefix "\$HOME/.local" tree-sitter-cli' "${DOTENV_DIR}"; then
601
+ -rIl --exclude-dir=.git -e 'npm install -g --prefix "\$HOME/.local" tree-sitter-cli' "${DOTENV_DIR}"; then
602
602
  while IFS= read -r file; do
603
603
  local marker_rc=0
604
604
  grep -q 'AI_DEV_TS_CLI_PATCH' "${file}" 2>>"${HUMAN_LOG}" || marker_rc=$?