aidevops 2.66.0 → 2.67.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
@@ -56,10 +56,8 @@ The result: AI agents that work *with* your development process, not around it.
56
56
  [![GitHub Release Date](https://img.shields.io/github/release-date/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops/releases)
57
57
  [![GitHub commits since latest release](https://img.shields.io/github/commits-since/marcusquinn/aidevops/latest)](https://github.com/marcusquinn/aidevops/commits/main)
58
58
 
59
- <!-- Repository Stats -->
60
- [![Version](https://img.shields.io/badge/Version-2.66.0-blue)](https://github.com/marcusquinn/aidevops/releases)
59
+ <!-- Repository Stats (dynamic badges only - no hardcoded versions/counts) -->
61
60
  [![GitHub repo size](https://img.shields.io/github/repo-size/marcusquinn/aidevops?style=flat&color=blue)](https://github.com/marcusquinn/aidevops)
62
- [![Lines of code](https://img.shields.io/badge/Lines%20of%20Code-18%2C000%2B-brightgreen)](https://github.com/marcusquinn/aidevops)
63
61
  [![GitHub language count](https://img.shields.io/github/languages/count/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops)
64
62
  [![GitHub top language](https://img.shields.io/github/languages/top/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops)
65
63
 
@@ -73,9 +71,32 @@ The result: AI agents that work *with* your development process, not around it.
73
71
  [![Services Supported](https://img.shields.io/badge/Services%20Supported-30+-brightgreen.svg)](#comprehensive-service-coverage)
74
72
  [![AGENTS.md](https://img.shields.io/badge/AGENTS.md-Compliant-blue.svg)](https://agents.md/)
75
73
  [![AI Optimized](https://img.shields.io/badge/AI%20Optimized-Yes-brightgreen.svg)](https://github.com/marcusquinn/aidevops/blob/main/AGENTS.md)
76
- [![MCP Servers](https://img.shields.io/badge/MCP%20Servers-20-orange.svg)](#mcp-integrations)
74
+ [![MCP Servers](https://img.shields.io/badge/MCP%20Servers-20+-orange.svg)](#mcp-integrations)
77
75
  [![API Integrations](https://img.shields.io/badge/API%20Integrations-30+-blue.svg)](#comprehensive-service-coverage)
78
76
 
77
+ <!-- AI-CONTEXT-START -->
78
+
79
+ ## Quick Reference
80
+
81
+ - **Purpose**: AI-assisted DevOps automation framework
82
+ - **Install**: `npm install -g aidevops && aidevops update`
83
+ - **Entry**: `aidevops` CLI, `~/.aidevops/agents/AGENTS.md`
84
+ - **Stack**: Bash scripts, TypeScript (Bun), MCP servers
85
+
86
+ ### Key Commands
87
+
88
+ - `aidevops init` - Initialize in any project
89
+ - `aidevops update` - Update framework
90
+ - `/onboarding` - Interactive setup wizard (in AI assistant)
91
+
92
+ ### Agent Structure
93
+
94
+ - ~15 main agents (Plan+, Build+, SEO, WordPress, etc.)
95
+ - 200+ subagent markdown files organized by domain
96
+ - 100+ helper scripts in `.agent/scripts/`
97
+
98
+ <!-- AI-CONTEXT-END -->
99
+
79
100
  ## **Enterprise-Grade Quality & Security**
80
101
 
81
102
  **Comprehensive DevOps framework with tried & tested services integrations, popular and trusted MCP servers, and enterprise-grade infrastructure quality assurance code monitoring and recommendations.**
@@ -868,7 +889,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
868
889
  /plugin install aidevops@aidevops
869
890
  ```
870
891
 
871
- This installs the complete framework: 14 domain agents, 80+ subagents, and 100+ helper scripts.
892
+ This installs the complete framework: ~15 domain agents, 80+ subagents, and 100+ helper scripts.
872
893
 
873
894
  ## **AI Agents & Subagents**
874
895
 
@@ -1438,14 +1459,17 @@ bash .agent/scripts/continue-cli.sh review
1438
1459
  ```text
1439
1460
  aidevops/
1440
1461
  ├── setup.sh # Main setup script
1441
- ├── AGENTS.md # AI agent guidance
1442
- ├── .agent/scripts/ # Automation & setup scripts
1443
- ├── .agent/scripts/ # Service helper scripts
1462
+ ├── AGENTS.md # AI agent guidance (dev)
1463
+ ├── .agent/ # Agents and documentation
1464
+ ├── AGENTS.md # User guide (deployed to ~/.aidevops/agents/)
1465
+ │ ├── *.md # ~15 main agents
1466
+ │ ├── scripts/ # 100+ helper scripts
1467
+ │ ├── tools/ # Cross-domain utilities
1468
+ │ ├── services/ # External service integrations
1469
+ │ └── workflows/ # Development process guides
1444
1470
  ├── configs/ # Configuration templates
1445
- ├── .agent/ # Comprehensive documentation
1446
- ├── .agent/ # AI agent development tools
1447
1471
  ├── ssh/ # SSH key management
1448
- └── templates/ # Reusable templates and examples
1472
+ └── templates/ # Reusable templates
1449
1473
  ```
1450
1474
 
1451
1475
  ## **Configuration & Setup**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.66.0
1
+ 2.67.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.66.0
6
+ # Version: 2.67.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.66.0",
3
+ "version": "2.67.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.66.0
6
+ # Version: 2.67.0
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)