aidevops 3.17.32 → 3.18.1

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
@@ -133,16 +133,32 @@ The result: an AI operations platform that manages projects across every busines
133
133
 
134
134
  **Comprehensive DevOps framework with tried & tested services integrations, popular and trusted MCP servers, and enterprise-grade infrastructure quality assurance code monitoring and recommendations.**
135
135
 
136
- ### Report-ready AI search workflow
136
+ ### Report creation, previews, and PDF exports
137
137
 
138
- Use aidevops to turn AI search readiness work into a client-ready report without making HTML the source of truth:
138
+ Use aidevops to turn evidence bundles into decision-ready reports while keeping Markdown or JSON as the canonical source. Report agents can produce AI-search audits, SEO/GEO scorecards, delivery reviews, campaign reports, board packs, incident summaries, recurring client handoffs, and before/after remediation evidence.
139
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.
140
+ New report capabilities include:
141
+
142
+ - Markdown-first report anatomy with cover pages, executive summaries, evidence ledgers, source cards, action prompts, appendix links, charts, Mermaid/LaTeX fallbacks, and `verified`, `partial`, `inferred`, or `missing` evidence badges.
143
+ - DESIGN.md-backed visual templates plus `basic` no-CSS output for lightweight handoff.
144
+ - Browser preview HTML with sticky contents, source-card links, copy buttons, and light/dark theme variants where a style supports them.
145
+ - PDF-ready profiles for A4, US Letter, and 16:9 slides. Generated PDF links use `*-a4.pdf`, `*-usletter.pdf`, and `*-slides.pdf` names.
146
+ - Versioned examples under `_reports/examples/`; open `_reports/examples/index.html` locally to browse the example reports, rendered styles, and PDF exports.
147
+
148
+ Create a report:
149
+
150
+ 1. Load `reports/general.md` for structure, then the matching domain report doc such as `reports/seo-geo.md`, `reports/development.md`, `reports/marketing.md`, or `reports/business.md`.
151
+ 2. Gather source evidence first. Use deterministic `run:` steps or service helpers for collection, then ask the domain agent plus `agent:Reports` to interpret and prioritise.
152
+ 3. Save canonical source as `report.md` or `report.json` in `_reports/drafts/<report-name>/` while working, or in `_reports/examples/<example-name>/` only after privacy review.
153
+ 4. Render with `/report-render report.md` or `.agents/scripts/report-render-helper.sh render report.md --template <style> --theme auto --pdf-profile a4 --output report.html`.
154
+ 5. Export PDFs from Chrome/Chromium using the generated HTML and the A4, US Letter, or slides profiles. Regenerate derived HTML/PDF files instead of hand-editing them.
155
+
156
+ Create a repeatable report agent:
157
+
158
+ 1. Read `reports/routine-handoff.md` and `tools/build-agent/build-agent.md`.
159
+ 2. Define the report cadence, evidence collection commands, source IDs, privacy rules, target template/style, and verification gates.
160
+ 3. Put deterministic collection in `run:` steps and reserve `agent:Reports` for narrative, evidence interpretation, recommendations, and handoff tasks.
161
+ 4. Store reusable agent instructions in the appropriate agent tier (`custom/` for local/client-specific agents; shared `.agents/` only for broadly reusable framework agents).
146
162
 
147
163
  ## **Security Notice**
148
164
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.17.32
1
+ 3.18.1
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.32
8
+ # Version: 3.18.1
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.32",
3
+ "version": "3.18.1",
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.32
15
+ # Version: 3.18.1
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)