aidevops 2.142.0 → 2.143.0
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 +15 -4
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.143.0
|
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: 2.
|
|
13
|
+
# Version: 2.143.0
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -552,9 +552,20 @@ main() {
|
|
|
552
552
|
deploy_aidevops_agents
|
|
553
553
|
sync_agent_sources
|
|
554
554
|
setup_safety_hooks
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
555
|
+
|
|
556
|
+
# Parallelise independent skill operations (t1356: ~84s serial -> ~18s parallel)
|
|
557
|
+
# generate_agent_skills (18s), create_skill_symlinks (<1s), and
|
|
558
|
+
# scan_imported_skills (66s serial, ~10s with parallel scanning) are independent.
|
|
559
|
+
generate_agent_skills &
|
|
560
|
+
local _pid_skills=$!
|
|
561
|
+
create_skill_symlinks &
|
|
562
|
+
local _pid_symlinks=$!
|
|
563
|
+
scan_imported_skills &
|
|
564
|
+
local _pid_scan=$!
|
|
565
|
+
wait "$_pid_skills" 2>/dev/null || print_warning "Agent skills generation encountered issues (non-critical)"
|
|
566
|
+
wait "$_pid_symlinks" 2>/dev/null || print_warning "Skill symlink creation encountered issues (non-critical)"
|
|
567
|
+
wait "$_pid_scan" 2>/dev/null || print_warning "Skill security scan encountered issues (non-critical)"
|
|
568
|
+
|
|
558
569
|
inject_agents_reference
|
|
559
570
|
update_opencode_config
|
|
560
571
|
update_claude_config
|