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 +24 -8
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
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
|
|
136
|
+
### Report creation, previews, and PDF exports
|
|
137
137
|
|
|
138
|
-
Use aidevops to turn
|
|
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
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
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.
|
|
1
|
+
3.18.1
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
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.
|
|
15
|
+
# Version: 3.18.1
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|