aidevops 2.110.2 → 2.110.3

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
@@ -95,7 +95,7 @@ The result: AI agents that work *with* your development process, not around it.
95
95
 
96
96
  - 11 primary agents (Build+, SEO, Marketing, etc.) with specialist @subagents on demand
97
97
  - 735+ subagent markdown files organized by domain
98
- - 194 helper scripts in `.agents/scripts/`
98
+ - 201 helper scripts in `.agents/scripts/`
99
99
  - 53 slash commands for common workflows
100
100
 
101
101
  <!-- AI-CONTEXT-END -->
@@ -435,7 +435,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
435
435
 
436
436
  | Pattern | Description | aidevops Implementation |
437
437
  |---------|-------------|------------------------|
438
- | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 194 helper scripts |
438
+ | **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 201 helper scripts |
439
439
  | **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
440
440
  | **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
441
441
  | **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
@@ -1390,7 +1390,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
1390
1390
  /plugin install aidevops@aidevops
1391
1391
  ```
1392
1392
 
1393
- This installs the complete framework: 11 primary agents, 735+ subagents, and 194 helper scripts.
1393
+ This installs the complete framework: 11 primary agents, 735+ subagents, and 201 helper scripts.
1394
1394
 
1395
1395
  ### Importing External Skills
1396
1396
 
@@ -2120,7 +2120,7 @@ aidevops/
2120
2120
  ├── .agents/ # Agents and documentation
2121
2121
  │ ├── AGENTS.md # User guide (deployed to ~/.aidevops/agents/)
2122
2122
  │ ├── *.md # 11 primary agents
2123
- │ ├── scripts/ # 194 helper scripts
2123
+ │ ├── scripts/ # 201 helper scripts
2124
2124
  │ ├── tools/ # Cross-domain utilities (video, browser, git, etc.)
2125
2125
  │ ├── services/ # External service integrations
2126
2126
  │ └── workflows/ # Development process guides
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.110.2
1
+ 2.110.3
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.110.2
6
+ # Version: 2.110.3
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.110.2",
3
+ "version": "2.110.3",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
package/setup.sh CHANGED
@@ -4,7 +4,7 @@ set -euo pipefail
4
4
  # AI Assistant Server Access Framework Setup Script
5
5
  # Helps developers set up the framework for their infrastructure
6
6
  #
7
- # Version: 2.110.2
7
+ # Version: 2.110.3
8
8
  #
9
9
  # Quick Install:
10
10
  # npm install -g aidevops && aidevops update (recommended)