aidevops 2.92.3 → 2.92.5
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 +10 -6
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -92,9 +92,9 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
92
92
|
### Agent Structure
|
|
93
93
|
|
|
94
94
|
- Primary agents (Build+, SEO, Marketing, etc.) with @plan-plus subagent for planning-only mode
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
95
|
+
- 547+ subagent markdown files organized by domain
|
|
96
|
+
- 155 helper scripts in `.agent/scripts/`
|
|
97
|
+
- 20 slash commands for common workflows
|
|
98
98
|
|
|
99
99
|
<!-- AI-CONTEXT-END -->
|
|
100
100
|
|
|
@@ -480,7 +480,7 @@ aidevops implements proven agent design patterns identified by [Lance Martin (La
|
|
|
480
480
|
|
|
481
481
|
| Pattern | Description | aidevops Implementation |
|
|
482
482
|
|---------|-------------|------------------------|
|
|
483
|
-
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`,
|
|
483
|
+
| **Give Agents a Computer** | Filesystem + shell for persistent context | `~/.aidevops/.agent-workspace/`, 155 helper scripts |
|
|
484
484
|
| **Multi-Layer Action Space** | Few tools, push actions to computer | Per-agent MCP filtering (~12-20 tools each) |
|
|
485
485
|
| **Progressive Disclosure** | Load context on-demand | Subagent routing with content summaries, YAML frontmatter, read-on-demand |
|
|
486
486
|
| **Offload Context** | Write results to filesystem | `.agent-workspace/work/[project]/` for persistence |
|
|
@@ -1158,7 +1158,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
|
|
|
1158
1158
|
/plugin install aidevops@aidevops
|
|
1159
1159
|
```
|
|
1160
1160
|
|
|
1161
|
-
This installs the complete framework:
|
|
1161
|
+
This installs the complete framework: 14 primary agents, 547+ subagents, and 155 helper scripts.
|
|
1162
1162
|
|
|
1163
1163
|
### Importing External Skills
|
|
1164
1164
|
|
|
@@ -1246,7 +1246,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota
|
|
|
1246
1246
|
|
|
1247
1247
|
### **Example Subagents with MCP Integration**
|
|
1248
1248
|
|
|
1249
|
-
These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of
|
|
1249
|
+
These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 547+ subagents organized by domain.
|
|
1250
1250
|
|
|
1251
1251
|
| Agent | Purpose | MCPs Enabled |
|
|
1252
1252
|
|-------|---------|--------------|
|
|
@@ -1421,6 +1421,9 @@ Configure time tracking per-repo via `.aidevops.json`.
|
|
|
1421
1421
|
| `/keyword-research-extended` | Full SERP analysis with weakness detection |
|
|
1422
1422
|
| `/webmaster-keywords` | Keywords from GSC + Bing for your verified sites |
|
|
1423
1423
|
| `/neuronwriter` | Content optimization with NLP term recommendations and scoring |
|
|
1424
|
+
| `/seo-export` | Export SEO data from GSC, Bing, Ahrefs, DataForSEO to TOON format |
|
|
1425
|
+
| `/seo-analyze` | Analyze exported data for quick wins, striking distance, low CTR |
|
|
1426
|
+
| `/seo-opportunities` | Combined export + analysis workflow |
|
|
1424
1427
|
|
|
1425
1428
|
**SEO Debugging** (subagents in `seo/`):
|
|
1426
1429
|
|
|
@@ -1462,6 +1465,7 @@ Configure time tracking per-repo via `.aidevops.json`.
|
|
|
1462
1465
|
| `/session-review` | Review session for completeness and capture learnings |
|
|
1463
1466
|
| `/full-loop` | End-to-end development loop (task → preflight → PR → postflight → deploy) |
|
|
1464
1467
|
| `/preflight-loop` | Run preflight checks iteratively until all pass |
|
|
1468
|
+
| `/log-issue-aidevops` | Report issues with aidevops (gathers diagnostics, checks duplicates, creates GitHub issue) |
|
|
1465
1469
|
|
|
1466
1470
|
### Ralph Loop - Iterative AI Development
|
|
1467
1471
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.92.
|
|
1
|
+
2.92.5
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED