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 +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +7 -7
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.60
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
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.
|
|
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
|
|
1611
|
-
# contributions (t1555).
|
|
1612
|
-
#
|
|
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
|
-
|
|
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
|
|
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
|
|