aidevops 2.110.7 → 2.110.9
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 +12 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.110.
|
|
1
|
+
2.110.9
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -4,7 +4,7 @@ set -euo pipefail
|
|
|
4
4
|
# AI Assistant Server Access Framework Setup Script
|
|
5
5
|
# Helps developers set up the framework for their infrastructure
|
|
6
6
|
#
|
|
7
|
-
# Version: 2.110.
|
|
7
|
+
# Version: 2.110.9
|
|
8
8
|
#
|
|
9
9
|
# Quick Install:
|
|
10
10
|
# npm install -g aidevops && aidevops update (recommended)
|
|
@@ -307,6 +307,9 @@ cleanup_deprecated_paths() {
|
|
|
307
307
|
"$agents_dir/tools/ai-assistants/status.md"
|
|
308
308
|
# Removed oh-my-opencode integration (no longer supported)
|
|
309
309
|
"$agents_dir/tools/opencode/oh-my-opencode.md"
|
|
310
|
+
# t199.8: youtube moved from root to content/distribution/youtube/
|
|
311
|
+
"$agents_dir/youtube.md"
|
|
312
|
+
"$agents_dir/youtube"
|
|
310
313
|
)
|
|
311
314
|
|
|
312
315
|
for path in "${deprecated_paths[@]}"; do
|
|
@@ -2935,6 +2938,14 @@ deploy_aidevops_agents() {
|
|
|
2935
2938
|
fi
|
|
2936
2939
|
fi
|
|
2937
2940
|
|
|
2941
|
+
# Migration: wavespeed.md moved from services/ai-generation/ to tools/video/ (v2.111+)
|
|
2942
|
+
local old_wavespeed="$target_dir/services/ai-generation/wavespeed.md"
|
|
2943
|
+
if [[ -f "$old_wavespeed" ]]; then
|
|
2944
|
+
rm -f "$old_wavespeed"
|
|
2945
|
+
rmdir "$target_dir/services/ai-generation" 2>/dev/null || true
|
|
2946
|
+
print_info "Migrated wavespeed.md from services/ai-generation/ to tools/video/"
|
|
2947
|
+
fi
|
|
2948
|
+
|
|
2938
2949
|
# Deploy enabled plugins from plugins.json
|
|
2939
2950
|
deploy_plugins "$target_dir" "$plugins_file"
|
|
2940
2951
|
else
|