aidevops 2.87.0 → 2.87.1

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
@@ -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
  - 18 primary agents (Plan+, Build+, SEO, WordPress, etc.)
95
- - 560+ subagent markdown files organized by domain
96
- - 146+ helper scripts in `.agent/scripts/`
95
+ - 500+ subagent markdown files organized by domain
96
+ - 140+ helper scripts in `.agent/scripts/`
97
97
  - 41 slash commands for common workflows
98
98
 
99
99
  <!-- AI-CONTEXT-END -->
@@ -491,7 +491,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
491
491
 
492
492
  | Pattern | Description | aidevops Implementation |
493
493
  |---------|-------------|------------------------|
494
- | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 141+ helper scripts |
494
+ | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 140+ helper scripts |
495
495
  | **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
496
496
  | **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
497
497
  | **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
@@ -1166,7 +1166,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
1166
1166
  /plugin install aidevops@aidevops
1167
1167
  ```
1168
1168
 
1169
- This installs the complete framework: 18 primary agents, 536+ subagents, and 141+ helper scripts.
1169
+ This installs the complete framework: 18 primary agents, 500+ subagents, and 140+ helper scripts.
1170
1170
 
1171
1171
  ### Importing External Skills
1172
1172
 
@@ -1254,7 +1254,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota
1254
1254
 
1255
1255
  ### **Example Subagents with MCP Integration**
1256
1256
 
1257
- These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 536+ subagents organized by domain.
1257
+ These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 500+ subagents organized by domain.
1258
1258
 
1259
1259
  | Agent | Purpose | MCPs Enabled |
1260
1260
  |-------|---------|--------------|
@@ -1807,7 +1807,7 @@ aidevops/
1807
1807
  ├── .agent/ # Agents and documentation
1808
1808
  │ ├── AGENTS.md # User guide (deployed to ~/.aidevops/agents/)
1809
1809
  │ ├── *.md # 18 primary agents
1810
- │ ├── scripts/ # 141+ helper scripts
1810
+ │ ├── scripts/ # 140+ helper scripts
1811
1811
  │ ├── tools/ # Cross-domain utilities (video, browser, git, etc.)
1812
1812
  │ ├── services/ # External service integrations
1813
1813
  │ └── workflows/ # Development process guides
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.87.0
1
+ 2.87.1
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.86.1
6
+ # Version: 2.87.1
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.87.0",
3
+ "version": "2.87.1",
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.86.1
6
+ # Version: 2.87.1
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)