aidevops 3.1.40 → 3.1.41

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.1.40
1
+ 3.1.41
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 3.1.40
6
+ # Version: 3.1.41
7
7
 
8
8
  set -euo pipefail
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.1.40",
3
+ "version": "3.1.41",
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
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
10
10
  # AI Assistant Server Access Framework Setup Script
11
11
  # Helps developers set up the framework for their infrastructure
12
12
  #
13
- # Version: 3.1.40
13
+ # Version: 3.1.41
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)
@@ -1534,9 +1534,10 @@ ST_PLIST
1534
1534
  fi
1535
1535
 
1536
1536
  # Profile README auto-update scheduled job.
1537
- # Only installed if user has a profile repo (priority: "profile") in repos.json.
1537
+ # Installed whenever gh CLI is available the update script self-heals
1538
+ # (discovers/creates the profile repo on first run via _resolve_profile_repo).
1538
1539
  # macOS: launchd plist (hourly) | Linux: cron (hourly)
1539
- if [[ -x "$pr_script" ]] && [[ "$has_profile_repo" == "true" ]]; then
1540
+ if [[ -x "$pr_script" ]] && command -v gh &>/dev/null; then
1540
1541
  mkdir -p "$HOME/.aidevops/.agent-workspace/logs"
1541
1542
 
1542
1543
  if [[ "$(uname -s)" == "Darwin" ]]; then