aidevops 2.70.0 → 2.70.2

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
@@ -445,24 +445,24 @@ See `.agent/tools/terminal/terminal-title.md` for customization options.
445
445
 
446
446
  ## **Imported Skills**
447
447
 
448
- aidevops includes curated skills imported from external repositories, with automatic update tracking:
448
+ aidevops includes curated skills imported from external repositories. Skills from GitHub repos support automatic update tracking:
449
449
 
450
450
  | Skill | Source | Description |
451
451
  |-------|--------|-------------|
452
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
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 |
454
+ | **animejs** | [animejs.com](https://animejs.com) | JavaScript animation library patterns and API (via Context7) |
455
455
 
456
456
  **Skill Commands:**
457
457
 
458
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
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 <owner/repo> --force # Update an existing skill
463
463
  ```
464
464
 
465
- Skills are registered in `.agent/configs/skill-sources.json` and checked for updates during `./setup.sh`.
465
+ Skills are registered in `~/.aidevops/agents/configs/skill-sources.json` and checked for updates during `./setup.sh`.
466
466
 
467
467
  ## **Agent Design Patterns**
468
468
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.70.0
1
+ 2.70.2
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.70.0
6
+ # Version: 2.70.2
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.70.0",
3
+ "version": "2.70.2",
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.70.0
6
+ # Version: 2.70.2
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)