aidevops 2.90.7 → 2.91.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
@@ -469,7 +469,7 @@ Skills are registered in `~/.aidevops/agents/configs/skill-sources.json` with up
469
469
  **Reference:**
470
470
  - [Agent Skills Specification](https://agentskills.io/specification) - The open format for SKILL.md files
471
471
  - [skills.sh Leaderboard](https://skills.sh) - Discover popular community skills
472
- - [ClawdHub](https://clawdhub.com) - Skill registry with vector search (Clawdbot ecosystem)
472
+ - [ClawdHub](https://clawdhub.com) - Skill registry with vector search (Moltbot ecosystem)
473
473
  - [vercel-labs/add-skill](https://github.com/vercel-labs/add-skill) - The upstream CLI tool (aidevops uses its own implementation)
474
474
  - [anthropics/skills](https://github.com/anthropics/skills) - Official Anthropic example skills
475
475
  - [agentskills/agentskills](https://github.com/agentskills/agentskills) - Specification source and reference library
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.90.7
1
+ 2.91.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.90.7
6
+ # Version: 2.91.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.90.7",
3
+ "version": "2.91.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.90.7
6
+ # Version: 2.91.0
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)
@@ -152,6 +152,8 @@ cleanup_deprecated_paths() {
152
152
  "$agents_dir/build-agent"
153
153
  "$agents_dir/build-mcp.md"
154
154
  "$agents_dir/build-mcp"
155
+ # v2.91.0: clawdbot renamed to moltbot
156
+ "$agents_dir/tools/ai-assistants/clawdbot.md"
155
157
  )
156
158
 
157
159
  for path in "${deprecated_paths[@]}"; do
@@ -731,15 +733,18 @@ setup_file_discovery_tools() {
731
733
  local missing_packages=()
732
734
  local missing_names=()
733
735
 
734
- # Check for fd (fd-find)
735
- if ! command -v fd >/dev/null 2>&1; then
736
+ local fd_version
737
+ if command -v fd >/dev/null 2>&1; then
738
+ fd_version=$(fd --version 2>/dev/null | head -1 || echo "unknown")
739
+ print_success "fd found: $fd_version"
740
+ elif command -v fdfind >/dev/null 2>&1; then
741
+ fd_version=$(fdfind --version 2>/dev/null | head -1 || echo "unknown")
742
+ print_success "fd found (as fdfind): $fd_version"
743
+ print_warning "Note: 'fd' alias not active in current shell. Restart shell or run: alias fd=fdfind"
744
+ else
736
745
  missing_tools+=("fd")
737
746
  missing_packages+=("fd")
738
747
  missing_names+=("fd (fast file finder)")
739
- else
740
- local fd_version
741
- fd_version=$(fd --version 2>/dev/null | head -1 || echo "unknown")
742
- print_success "fd found: $fd_version"
743
748
  fi
744
749
 
745
750
  # Check for ripgrep