aidevops 2.90.0 → 2.90.2

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,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
- - 552+ subagent markdown files organized by domain
96
- - 147 helper scripts in `.agent/scripts/`
97
- - 14 slash commands for common workflows
95
+ - 539+ subagent markdown files organized by domain
96
+ - 148 helper scripts in `.agent/scripts/`
97
+ - 15 slash commands for common workflows
98
98
 
99
99
  <!-- AI-CONTEXT-END -->
100
100
 
@@ -604,6 +604,7 @@ The setup script offers to install these tools automatically.
604
604
 
605
605
  - **[Remotion](https://remotion.dev/)**: Programmatic video creation with React - animations, compositions, media handling, captions
606
606
  - **[Video Prompt Design](https://github.com/snubroot/Veo-3-Meta-Framework)**: AI video prompt engineering using the 7-component meta prompt framework for Veo 3 and similar models
607
+ - **[yt-dlp](https://github.com/yt-dlp/yt-dlp)**: YouTube video/audio/playlist/channel downloads, transcript extraction, and local file audio conversion via ffmpeg
607
608
 
608
609
  ### **WordPress Development**
609
610
 
@@ -707,6 +708,7 @@ These use direct API calls via curl, avoiding MCP server startup entirely:
707
708
  | [DataForSEO](https://dataforseo.com/) | SERP, keywords, backlinks, on-page | Yes |
708
709
  | [Serper](https://serper.dev/) | Google Search API (web, images, news) | Yes |
709
710
  | [Hostinger](https://developers.hostinger.com/) | Hosting management | Yes |
711
+ | [NeuronWriter](https://neuronwriter.com/) | Content optimization & NLP analysis | Yes |
710
712
 
711
713
  ### **By Category**
712
714
 
@@ -748,6 +750,7 @@ These use direct API calls via curl, avoiding MCP server startup entirely:
748
750
  - **Keyword Research** - Strategic keyword research with SERP weakness detection (via DataForSEO + Serper + Ahrefs)
749
751
  - **Site Crawler** - Screaming Frog-like SEO auditing: broken links, redirects, meta issues, structured data
750
752
  - **Domain Research** - DNS intelligence via THC (4.51B records) and Reconeer APIs: rDNS, subdomains, CNAMEs
753
+ - [NeuronWriter](https://neuronwriter.com/) - Content optimization with NLP analysis, competitor research, and content scoring (curl subagent)
751
754
 
752
755
  **Data Extraction:**
753
756
 
@@ -1403,6 +1406,12 @@ Configure time tracking per-repo via `.aidevops.json`.
1403
1406
  |---------|---------|
1404
1407
  | `/humanise` | Remove AI writing patterns, make text sound human |
1405
1408
 
1409
+ **Media**:
1410
+
1411
+ | Command | Purpose |
1412
+ |---------|---------|
1413
+ | `/yt-dlp` | Download YouTube videos/audio/playlists, extract transcripts, convert local files |
1414
+
1406
1415
  **SEO Workflow**:
1407
1416
 
1408
1417
  | Command | Purpose |
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.90.0
1
+ 2.90.2
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.90.0
6
+ # Version: 2.90.2
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.90.0",
3
+ "version": "2.90.2",
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.90.0
6
+ # Version: 2.90.2
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)