aidevops 2.77.2 → 2.78.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/README.md CHANGED
@@ -453,6 +453,7 @@ aidevops includes curated skills imported from external repositories. Skills fro
453
453
  | Skill | Source | Description |
454
454
  |-------|--------|-------------|
455
455
  | **cloudflare-platform** | [dmmulroy/cloudflare-skill](https://github.com/dmmulroy/cloudflare-skill) | 60 Cloudflare products: Workers, Pages, D1, R2, KV, Durable Objects, AI, networking, security |
456
+ | **heygen** | [heygen-com/skills](https://github.com/heygen-com/skills) | AI avatar video creation API: avatars, voices, video generation, streaming, webhooks |
456
457
  | **remotion** | [remotion-dev/skills](https://github.com/remotion-dev/skills) | Programmatic video creation with React, animations, rendering |
457
458
  | **video-prompt-design** | [snubroot/Veo-3-Meta-Framework](https://github.com/snubroot/Veo-3-Meta-Framework) | AI video prompt engineering - 7-component meta prompt framework for Veo 3 |
458
459
  | **animejs** | [animejs.com](https://animejs.com) | JavaScript animation library patterns and API (via Context7) |
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.77.2
1
+ 2.78.0
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 2.77.2
6
+ # Version: 2.78.0
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": "2.77.2",
3
+ "version": "2.78.0",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/setup.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI Assistant Server Access Framework Setup Script
4
4
  # Helps developers set up the framework for their infrastructure
5
5
  #
6
- # Version: 2.77.2
6
+ # Version: 2.78.0
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)
@@ -638,7 +638,10 @@ setup_file_discovery_tools() {
638
638
  pkg_manager=$(detect_package_manager)
639
639
 
640
640
  if [[ "$pkg_manager" != "unknown" ]]; then
641
- read -r -p "Install file discovery tools (${missing_packages[*]}) using $pkg_manager? (y/n): " install_fd_tools
641
+ local install_fd_tools="y"
642
+ if [[ "$INTERACTIVE_MODE" == "true" ]]; then
643
+ read -r -p "Install file discovery tools (${missing_packages[*]}) using $pkg_manager? (y/n): " install_fd_tools
644
+ fi
642
645
 
643
646
  if [[ "$install_fd_tools" == "y" ]]; then
644
647
  print_info "Installing ${missing_packages[*]}..."