aidevops 2.92.4 → 2.93.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
@@ -92,7 +92,7 @@ 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
- - 547+ subagent markdown files organized by domain
95
+ - 566+ subagent markdown files organized by domain
96
96
  - 155 helper scripts in `.agent/scripts/`
97
97
  - 20 slash commands for common workflows
98
98
 
@@ -747,6 +747,7 @@ These use direct API calls via curl, avoiding MCP server startup entirely:
747
747
  - [Ahrefs](https://ahrefs.com/api) - SEO analysis, backlink research, keyword data (curl subagent)
748
748
  - [DataForSEO](https://dataforseo.com/) - Comprehensive SEO data APIs (curl subagent)
749
749
  - [Serper](https://serper.dev/) - Google Search API (curl subagent)
750
+ - **SEO Audit** - Comprehensive technical SEO auditing: crawlability, indexation, Core Web Vitals, on-page optimization, E-E-A-T signals (imported skill from [marketingskills](https://github.com/coreyhaines31/marketingskills))
750
751
  - **Keyword Research** - Strategic keyword research with SERP weakness detection (via DataForSEO + Serper + Ahrefs)
751
752
  - **Site Crawler** - Screaming Frog-like SEO auditing: broken links, redirects, meta issues, structured data
752
753
  - **Domain Research** - DNS intelligence via THC (4.51B records) and Reconeer APIs: rDNS, subdomains, CNAMEs
@@ -1158,7 +1159,7 @@ aidevops is registered as a **Claude Code plugin marketplace**. Install with two
1158
1159
  /plugin install aidevops@aidevops
1159
1160
  ```
1160
1161
 
1161
- This installs the complete framework: 14 primary agents, 547+ subagents, and 155 helper scripts.
1162
+ This installs the complete framework: 14 primary agents, 566+ subagents, and 155 helper scripts.
1162
1163
 
1163
1164
  ### Importing External Skills
1164
1165
 
@@ -1246,7 +1247,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota
1246
1247
 
1247
1248
  ### **Example Subagents with MCP Integration**
1248
1249
 
1249
- These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 547+ subagents organized by domain.
1250
+ These are examples of subagents that have supporting MCPs enabled. See `.agent/` for the full list of 566+ subagents organized by domain.
1250
1251
 
1251
1252
  | Agent | Purpose | MCPs Enabled |
1252
1253
  |-------|---------|--------------|
@@ -1425,10 +1426,11 @@ Configure time tracking per-repo via `.aidevops.json`.
1425
1426
  | `/seo-analyze` | Analyze exported data for quick wins, striking distance, low CTR |
1426
1427
  | `/seo-opportunities` | Combined export + analysis workflow |
1427
1428
 
1428
- **SEO Debugging** (subagents in `seo/`):
1429
+ **SEO Debugging & Auditing** (subagents in `seo/`):
1429
1430
 
1430
1431
  | Subagent | Purpose |
1431
1432
  |----------|---------|
1433
+ | `@seo-audit` | Comprehensive SEO audit: technical, on-page, content quality, E-E-A-T |
1432
1434
  | `@debug-opengraph` | Validate Open Graph meta tags, preview social sharing |
1433
1435
  | `@debug-favicon` | Validate favicon setup across platforms (ico, apple-touch, manifest) |
1434
1436
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.92.4
1
+ 2.93.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.92.4
6
+ # Version: 2.93.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.92.4",
3
+ "version": "2.93.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.92.4
6
+ # Version: 2.93.0
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)