aidevops 3.17.28 → 3.17.30

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
@@ -110,6 +110,7 @@ The result: an AI operations platform that manages projects across every busines
110
110
  - `/design-artifact` - Route artifact-first UI, deck, email, poster, and mobile mockup work
111
111
  - `/open-design` - Manage the optional Open Design companion studio
112
112
  - `/auto-browse` - Learn, optimize, and graduate repeatable browser operations and web data-mining workflows
113
+ - `/report-render` - Render report-ready Markdown or JSON to HTML with sticky TOC, print CSS, evidence badges, and source cards for PDF export
113
114
 
114
115
  ### Agent Structure
115
116
 
@@ -132,6 +133,17 @@ The result: an AI operations platform that manages projects across every busines
132
133
 
133
134
  **Comprehensive DevOps framework with tried & tested services integrations, popular and trusted MCP servers, and enterprise-grade infrastructure quality assurance code monitoring and recommendations.**
134
135
 
136
+ ### Report-ready AI search workflow
137
+
138
+ Use aidevops to turn AI search readiness work into a client-ready report without making HTML the source of truth:
139
+
140
+ 1. Run `/seo-ai-readiness example.com` for the domain or priority URLs.
141
+ 2. Request report-ready output with executive summary, method, scorecard, page-type findings, evidence ledger, roadmap, verification, and source IDs.
142
+ 3. Save the Markdown or JSON report, then render it with `/report-render report.md` or `report-render-helper.sh render report.md --output report.html`.
143
+ 4. Review the generated HTML for sticky table of contents, source cards, print CSS, and `verified`, `partial`, `inferred`, or `missing` evidence badges.
144
+ 5. Export or print the HTML to PDF from the browser print dialog.
145
+ 6. After remediation, rerun `/seo-ai-readiness` and render the updated report for before/after comparison.
146
+
135
147
  ## **Security Notice**
136
148
 
137
149
  **This framework provides agentic AI assistants with powerful infrastructure access. Use responsibly.**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.17.28
1
+ 3.17.30
package/aidevops.sh CHANGED
@@ -5,7 +5,7 @@
5
5
  # AI DevOps Framework CLI
6
6
  # Usage: aidevops <command> [options]
7
7
  #
8
- # Version: 3.17.28
8
+ # Version: 3.17.30
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.17.28",
3
+ "version": "3.17.30",
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
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
12
12
  # AI Assistant Server Access Framework Setup Script
13
13
  # Helps developers set up the framework for their infrastructure
14
14
  #
15
- # Version: 3.17.28
15
+ # Version: 3.17.30
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)