aidevops 3.1.58 → 3.1.60

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.58
1
+ 3.1.60
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.58
6
+ # Version: 3.1.60
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.58",
3
+ "version": "3.1.60",
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.58
13
+ # Version: 3.1.60
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)
@@ -1607,17 +1607,17 @@ CW_PLIST
1607
1607
  fi
1608
1608
  fi
1609
1609
 
1610
- # Draft responses — private repo for reviewing AI-drafted replies to external
1611
- # contributions (t1555). Auto-creates the repo on first setup. Requires both
1612
- # contribution_watch and draft_responses to be enabled, plus gh CLI authenticated.
1610
+ # Draft responses — private repo + local draft storage for reviewing AI-drafted
1611
+ # replies to external contributions (t1555). Creates private draft-responses
1612
+ # repo for GitHub notification-driven approval flow.
1613
1613
  # Respects config: aidevops config set orchestration.draft_responses false
1614
1614
  local dr_script="$HOME/.aidevops/agents/scripts/draft-response-helper.sh"
1615
1615
  if [[ -x "$dr_script" ]] && is_feature_enabled draft_responses 2>/dev/null && is_feature_enabled contribution_watch 2>/dev/null && command -v gh &>/dev/null && gh auth status &>/dev/null 2>&1; then
1616
- # Init is idempotent — skips if repo already exists
1616
+ mkdir -p "$HOME/.aidevops/.agent-workspace/draft-responses"
1617
1617
  if bash "$dr_script" init >/dev/null 2>&1; then
1618
- print_info "Draft responses repo ready (private, for contribution reply approval)"
1618
+ print_info "Draft responses ready (private repo + local drafts)"
1619
1619
  else
1620
- print_warning "Draft responses repo setup failed (non-fatal)"
1620
+ print_warning "Draft responses repo setup failed (non-fatal, local drafts still work)"
1621
1621
  fi
1622
1622
  fi
1623
1623