aidevops 3.13.51 → 3.13.52
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-modules/plugins.sh +22 -5
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.13.
|
|
1
|
+
3.13.52
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup-modules/plugins.sh
CHANGED
|
@@ -220,15 +220,31 @@ generate_agent_skills() {
|
|
|
220
220
|
print_info "Generating Agent Skills SKILL.md files..."
|
|
221
221
|
|
|
222
222
|
local skills_script="$HOME/.aidevops/agents/scripts/generate-skills.sh"
|
|
223
|
+
local timeout_seconds="${AIDEVOPS_SKILLS_GENERATE_TIMEOUT:-90}"
|
|
224
|
+
local success_msg="Agent Skills SKILL.md files generated"
|
|
225
|
+
local generate_rc=0
|
|
223
226
|
|
|
224
227
|
if [[ -f "$skills_script" ]]; then
|
|
225
|
-
if
|
|
226
|
-
|
|
227
|
-
|
|
228
|
+
if command -v timeout >/dev/null 2>&1; then
|
|
229
|
+
if timeout "$timeout_seconds" bash "$skills_script" 2>/dev/null; then
|
|
230
|
+
print_success "$success_msg"
|
|
231
|
+
return 0
|
|
232
|
+
fi
|
|
233
|
+
generate_rc=$?
|
|
234
|
+
if [[ "$generate_rc" -eq 124 ]]; then
|
|
235
|
+
print_warning "Agent Skills generation exceeded ${timeout_seconds}s — continuing without skill symlink refresh"
|
|
236
|
+
return 1
|
|
237
|
+
fi
|
|
228
238
|
else
|
|
229
|
-
|
|
230
|
-
|
|
239
|
+
if bash "$skills_script" 2>/dev/null; then
|
|
240
|
+
print_success "$success_msg"
|
|
241
|
+
return 0
|
|
242
|
+
fi
|
|
243
|
+
generate_rc=$?
|
|
231
244
|
fi
|
|
245
|
+
|
|
246
|
+
print_warning "Agent Skills generation encountered issues (non-critical)"
|
|
247
|
+
return 1
|
|
232
248
|
else
|
|
233
249
|
print_warning "Agent Skills generator not found at $skills_script"
|
|
234
250
|
return 1
|
|
@@ -683,6 +699,7 @@ check_tool_updates() {
|
|
|
683
699
|
bash "$tool_check_script" --quiet
|
|
684
700
|
echo ""
|
|
685
701
|
|
|
702
|
+
local do_update=""
|
|
686
703
|
setup_prompt do_update "Update all outdated tools now? [Y/n]: " "Y"
|
|
687
704
|
|
|
688
705
|
if [[ "$do_update" =~ ^[Yy]?$ || "$do_update" == "Y" ]]; then
|
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.13.
|
|
15
|
+
# Version: 3.13.52
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|