aidevops 2.77.0 → 2.77.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
@@ -91,9 +91,10 @@ The result: AI agents that work *with* your development process, not around it.
91
91
 
92
92
  ### Agent Structure
93
93
 
94
- - ~15 main agents (Plan+, Build+, SEO, WordPress, etc.)
95
- - 230+ subagent markdown files organized by domain
96
- - 130+ helper scripts in `.agent/scripts/`
94
+ - 18 primary agents (Plan+, Build+, SEO, WordPress, etc.)
95
+ - 530+ subagent markdown files organized by domain
96
+ - 139+ helper scripts in `.agent/scripts/`
97
+ - 41 slash commands for common workflows
97
98
 
98
99
  <!-- AI-CONTEXT-END -->
99
100
 
@@ -483,7 +484,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
483
484
 
484
485
  | Pattern | Description | aidevops Implementation |
485
486
  |---------|-------------|------------------------|
486
- | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 130+ helper scripts |
487
+ | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 139+ helper scripts |
487
488
  | **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
488
489
  | **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
489
490
  | **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
@@ -1031,7 +1032,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
1031
1032
  /plugin install aidevops@aidevops
1032
1033
  ```
1033
1034
 
1034
- This installs the complete framework: 13 domain agents, 225+ subagents, and 130+ helper scripts.
1035
+ This installs the complete framework: 18 primary agents, 530+ subagents, and 139+ helper scripts.
1035
1036
 
1036
1037
  ### Importing External Skills
1037
1038
 
@@ -1111,7 +1112,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota
1111
1112
 
1112
1113
  ### **Example Subagents with MCP Integration**
1113
1114
 
1114
- These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 225+ subagents organized by domain.
1115
+ These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 530+ subagents organized by domain.
1115
1116
 
1116
1117
  | Agent | Purpose | MCPs Enabled |
1117
1118
  |-------|---------|--------------|
@@ -1662,8 +1663,8 @@ aidevops/
1662
1663
  ├── AGENTS.md # AI agent guidance (dev)
1663
1664
  ├── .agent/ # Agents and documentation
1664
1665
  │ ├── AGENTS.md # User guide (deployed to ~/.aidevops/agents/)
1665
- │ ├── *.md # 13 main agents
1666
- │ ├── scripts/ # 130+ helper scripts
1666
+ │ ├── *.md # 18 primary agents
1667
+ │ ├── scripts/ # 139+ helper scripts
1667
1668
  │ ├── tools/ # Cross-domain utilities (video, browser, git, etc.)
1668
1669
  │ ├── services/ # External service integrations
1669
1670
  │ └── workflows/ # Development process guides
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.77.0
1
+ 2.77.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.77.0
6
+ # Version: 2.77.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.77.0",
3
+ "version": "2.77.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.77.0
6
+ # Version: 2.77.1
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)