aidevops 2.68.0 → 2.70.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
@@ -42,7 +42,7 @@ The result: AI agents that work *with* your development process, not around it.
42
42
 
43
43
  <!-- License & Legal -->
44
44
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
45
- [![Copyright](https://img.shields.io/badge/Copyright-Marcus%20Quinn%202025-blue.svg)](https://github.com/marcusquinn)
45
+ [![Copyright](https://img.shields.io/badge/Copyright-Marcus%20Quinn%202025--2026-blue.svg)](https://github.com/marcusquinn)
46
46
 
47
47
  <!-- GitHub Stats -->
48
48
  [![GitHub stars](https://img.shields.io/github/stars/marcusquinn/aidevops.svg?style=social)](https://github.com/marcusquinn/aidevops/stargazers)
@@ -92,8 +92,8 @@ The result: AI agents that work *with* your development process, not around it.
92
92
  ### Agent Structure
93
93
 
94
94
  - ~15 main agents (Plan+, Build+, SEO, WordPress, etc.)
95
- - 200+ subagent markdown files organized by domain
96
- - 100+ helper scripts in `.agent/scripts/`
95
+ - 230+ subagent markdown files organized by domain
96
+ - 130+ helper scripts in `.agent/scripts/`
97
97
 
98
98
  <!-- AI-CONTEXT-END -->
99
99
 
@@ -443,13 +443,34 @@ See `.agent/tools/terminal/terminal-title.md` for customization options.
443
443
  - **Performance Auditing**: PageSpeed Insights and Lighthouse integration
444
444
  - **Uptime Monitoring**: Updown.io integration for website and SSL monitoring
445
445
 
446
+ ## **Imported Skills**
447
+
448
+ aidevops includes curated skills imported from external repositories, with automatic update tracking:
449
+
450
+ | Skill | Source | Description |
451
+ |-------|--------|-------------|
452
+ | **cloudflare-platform** | [dmmulroy/cloudflare-skill](https://github.com/dmmulroy/cloudflare-skill) | 60 Cloudflare products: Workers, Pages, D1, R2, KV, Durable Objects, AI, networking, security |
453
+ | **remotion** | [remotion-dev/skills](https://github.com/remotion-dev/skills) | Programmatic video creation with React, animations, rendering |
454
+ | **animejs** | [Context7 docs](https://animejs.com) | JavaScript animation library patterns and API |
455
+
456
+ **Skill Commands:**
457
+
458
+ ```bash
459
+ /add-skill <owner/repo> # Import a skill from GitHub
460
+ /add-skill list # List imported skills
461
+ /add-skill check-updates # Check for upstream updates
462
+ /add-skill <repo> --force # Update an existing skill
463
+ ```
464
+
465
+ Skills are registered in `.agent/configs/skill-sources.json` and checked for updates during `./setup.sh`.
466
+
446
467
  ## **Agent Design Patterns**
447
468
 
448
469
  aidevops implements proven agent design patterns identified by [Lance Martin (LangChain)](https://x.com/RLanceMartin/status/2009683038272401719) and validated across successful agents like Claude Code, Manus, and Cursor.
449
470
 
450
471
  | Pattern | Description | aidevops Implementation |
451
472
  |---------|-------------|------------------------|
452
- | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 100+ helper scripts |
473
+ | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 130+ helper scripts |
453
474
  | **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
454
475
  | **Progressive Disclosure** | Load context on-demand | Subagent tables, YAML frontmatter, read-on-demand |
455
476
  | **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
@@ -528,6 +549,10 @@ The setup script offers to install these tools automatically.
528
549
  - **[CrewAI](https://crewai.com/)**: Multi-agent teams with role-based orchestration (MIT, localhost:8501)
529
550
  - **[AutoGen](https://microsoft.github.io/autogen/)**: Microsoft's agentic AI framework with MCP support (MIT, localhost:8081)
530
551
 
552
+ ### **Video Creation**
553
+
554
+ - **[Remotion](https://remotion.dev/)**: Programmatic video creation with React - animations, compositions, media handling, captions
555
+
531
556
  ### **WordPress Development**
532
557
 
533
558
  - **[LocalWP](https://localwp.com)**: WordPress development environment with MCP database access
@@ -563,6 +588,11 @@ The setup script offers to install these tools automatically.
563
588
  - **[Twilio](https://www.twilio.com/)**: SMS, voice calls, WhatsApp, phone verification (Verify API), call recording & transcription
564
589
  - **[Telfon](https://mytelfon.com/)**: Twilio-powered cloud phone system with iOS/Android/Chrome apps for end-user calling interface
565
590
 
591
+ ### **Animation & Video**
592
+
593
+ - **[Anime.js](https://animejs.com/)**: Lightweight JavaScript animation library for CSS, SVG, DOM attributes, and JS objects
594
+ - **[Remotion](https://remotion.dev/)**: Programmatic video creation with React - create videos using code with 29 specialized rule files
595
+
566
596
  ### **Performance & Monitoring**
567
597
 
568
598
  - **[PageSpeed Insights](https://pagespeed.web.dev/)**: Website performance auditing
@@ -889,7 +919,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
889
919
  /plugin install aidevops@aidevops
890
920
  ```
891
921
 
892
- This installs the complete framework: ~15 domain agents, 80+ subagents, and 100+ helper scripts.
922
+ This installs the complete framework: 13 domain agents, 225+ subagents, and 130+ helper scripts.
893
923
 
894
924
  ### Importing External Skills
895
925
 
@@ -955,7 +985,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (14 tota
955
985
 
956
986
  ### **Example Subagents with MCP Integration**
957
987
 
958
- These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 80+ subagents organized by domain.
988
+ These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 225+ subagents organized by domain.
959
989
 
960
990
  | Agent | Purpose | MCPs Enabled |
961
991
  |-------|---------|--------------|
@@ -1122,6 +1152,12 @@ Plans are tracked in `TODO.md` (all tasks) and `todo/PLANS.md` (complex executio
1122
1152
  | `/release` | Full release workflow (bump, tag, GitHub release, auto-changelog) |
1123
1153
  | `/postflight` | Verify release health after deployment |
1124
1154
 
1155
+ **Documentation**:
1156
+
1157
+ | Command | Purpose |
1158
+ |---------|---------|
1159
+ | `/readme` | Create or update README.md (supports `--sections` for partial updates) |
1160
+
1125
1161
  **Meta/Improvement**:
1126
1162
 
1127
1163
  | Command | Purpose |
@@ -1490,9 +1526,9 @@ aidevops/
1490
1526
  ├── AGENTS.md # AI agent guidance (dev)
1491
1527
  ├── .agent/ # Agents and documentation
1492
1528
  │ ├── AGENTS.md # User guide (deployed to ~/.aidevops/agents/)
1493
- │ ├── *.md # ~15 main agents
1494
- │ ├── scripts/ # 100+ helper scripts
1495
- │ ├── tools/ # Cross-domain utilities
1529
+ │ ├── *.md # 13 main agents
1530
+ │ ├── scripts/ # 130+ helper scripts
1531
+ │ ├── tools/ # Cross-domain utilities (video, browser, git, etc.)
1496
1532
  │ ├── services/ # External service integrations
1497
1533
  │ └── workflows/ # Development process guides
1498
1534
  ├── configs/ # Configuration templates
@@ -1540,7 +1576,7 @@ bash .agent/scripts/setup-mcp-integrations.sh all
1540
1576
  5. Submit pull request
1541
1577
 
1542
1578
  **License:** MIT License - see [LICENSE](LICENSE) file for details
1543
- **Created by Marcus Quinn** - Copyright © 2025
1579
+ **Created by Marcus Quinn** - Copyright © 2025-2026
1544
1580
 
1545
1581
  ---
1546
1582
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.68.0
1
+ 2.70.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.68.0
6
+ # Version: 2.70.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.68.0",
3
+ "version": "2.70.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.68.0
6
+ # Version: 2.70.0
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)
@@ -1556,6 +1556,83 @@ create_skill_symlinks() {
1556
1556
  return 0
1557
1557
  }
1558
1558
 
1559
+ # Check for updates to imported skills from upstream repositories
1560
+ check_skill_updates() {
1561
+ print_info "Checking for skill updates..."
1562
+
1563
+ local skill_sources="$HOME/.aidevops/agents/configs/skill-sources.json"
1564
+
1565
+ # Skip if no skill-sources.json or required tools not available
1566
+ if [[ ! -f "$skill_sources" ]]; then
1567
+ print_info "No imported skills to check"
1568
+ return 0
1569
+ fi
1570
+
1571
+ if ! command -v jq &>/dev/null; then
1572
+ print_warning "jq not found - cannot check skill updates"
1573
+ return 0
1574
+ fi
1575
+
1576
+ if ! command -v curl &>/dev/null; then
1577
+ print_warning "curl not found - cannot check skill updates"
1578
+ return 0
1579
+ fi
1580
+
1581
+ local skill_count
1582
+ skill_count=$(jq '.skills | length' "$skill_sources" 2>/dev/null || echo "0")
1583
+
1584
+ if [[ "$skill_count" -eq 0 ]]; then
1585
+ print_info "No imported skills to check"
1586
+ return 0
1587
+ fi
1588
+
1589
+ local updates_available=0
1590
+ local update_list=""
1591
+
1592
+ # Check each skill for updates
1593
+ while IFS= read -r skill_json; do
1594
+ local name upstream_url upstream_commit
1595
+ name=$(echo "$skill_json" | jq -r '.name')
1596
+ upstream_url=$(echo "$skill_json" | jq -r '.upstream_url')
1597
+ upstream_commit=$(echo "$skill_json" | jq -r '.upstream_commit // empty')
1598
+
1599
+ # Skip skills without upstream URL or commit (e.g., context7 imports)
1600
+ if [[ -z "$upstream_url" || "$upstream_url" == "null" ]]; then
1601
+ continue
1602
+ fi
1603
+ if [[ -z "$upstream_commit" ]]; then
1604
+ continue
1605
+ fi
1606
+
1607
+ # Extract owner/repo from GitHub URL
1608
+ local owner_repo
1609
+ owner_repo=$(echo "$upstream_url" | sed -E 's|https://github.com/||; s|\.git$||; s|/tree/.*||')
1610
+
1611
+ if [[ -z "$owner_repo" || ! "$owner_repo" =~ / ]]; then
1612
+ continue
1613
+ fi
1614
+
1615
+ # Get latest commit from GitHub API (silent, with timeout)
1616
+ local latest_commit
1617
+ latest_commit=$(curl -s --max-time 5 "https://api.github.com/repos/$owner_repo/commits?per_page=1" 2>/dev/null | jq -r '.[0].sha // empty')
1618
+
1619
+ if [[ -n "$latest_commit" && "$latest_commit" != "$upstream_commit" ]]; then
1620
+ ((updates_available++))
1621
+ update_list="${update_list}\n - $name (${upstream_commit:0:7} → ${latest_commit:0:7})"
1622
+ fi
1623
+ done < <(jq -c '.skills[]' "$skill_sources" 2>/dev/null)
1624
+
1625
+ if [[ $updates_available -gt 0 ]]; then
1626
+ print_warning "Skill updates available:$update_list"
1627
+ print_info "Run: ~/.aidevops/agents/scripts/add-skill-helper.sh check-updates"
1628
+ print_info "To update a skill: ~/.aidevops/agents/scripts/add-skill-helper.sh add <url> --force"
1629
+ else
1630
+ print_success "All imported skills are up to date"
1631
+ fi
1632
+
1633
+ return 0
1634
+ }
1635
+
1559
1636
  # Inject aidevops reference into AI assistant AGENTS.md files
1560
1637
  inject_agents_reference() {
1561
1638
  print_info "Adding aidevops reference to AI assistant configurations..."
@@ -2663,6 +2740,7 @@ main() {
2663
2740
  confirm_step "Deploy aidevops agents to ~/.aidevops/agents/" && deploy_aidevops_agents
2664
2741
  confirm_step "Generate agent skills (SKILL.md files)" && generate_agent_skills
2665
2742
  confirm_step "Create symlinks for imported skills" && create_skill_symlinks
2743
+ confirm_step "Check for skill updates from upstream" && check_skill_updates
2666
2744
  confirm_step "Inject agents reference into AI configs" && inject_agents_reference
2667
2745
  confirm_step "Update OpenCode configuration" && update_opencode_config
2668
2746
  confirm_step "Setup Python environment (DSPy, crawl4ai)" && setup_python_env