Marp Presentations
Coming Soon
Marp integration is planned for a future release.
Overview
Generate executive presentations from PRISM documents using Marp.
Planned Features
Slide Templates
| Template | Description | Slides |
|---|---|---|
| Executive Summary | High-level overview | 3-5 |
| Full Report | Detailed breakdown | 10-15 |
| Domain Focus | Single domain deep-dive | 5-7 |
| Trend Report | Historical comparison | 5-8 |
Generated Slides
Executive Summary Template:
- Title Slide - PRISM report title, date, period
- Score Overview - Overall score, interpretation, health status
- Domain Summary - Security vs Operations scores
- Key Metrics - Top performing and at-risk metrics
- Recommendations - Action items based on scores
Example Output
---
marp: true
theme: corporate
---
# PRISM Report
## Acme Corporation
### Q1 2024
---
# Overall Score
## 78.2% - Strong
- Reliability: 82.5%
- Efficiency: 84.0%

---
# Domain × Stage Heatmap
| | Design | Build | Test | Runtime | Response |
|------------|--------|-------|------|---------|----------|
| Reliability| 🟡 68 | 🟢 85 | 🟡 75| 🟢 95 | 🟢 82 |
| Efficiency | 🟡 65 | 🟢 92 | 🟡 70| 🟢 88 | 🟡 72 |
---
# Top Performing Metrics
1. **Service Availability** - 99.95% (Target: 99.99%)
2. **Deployment Frequency** - 5/day (Target: 10/day)
3. **P99 Latency** - 150ms (Target: 200ms)
---
# Areas Needing Attention
1. **Lead Time** - 24 hours (Target: 1 hour)
2. **Change Failure Rate** - 10% (Target: 5%)
3. **Error Rate** - 0.15% (Target: 0.1%)
Configuration
Document Configuration
{
"integrations": {
"marp": {
"enabled": true,
"template": "executive",
"theme": "corporate",
"includeCharts": true
}
}
}
Template Options
| Option | Values | Description |
|---|---|---|
template |
executive, full, domain, trend | Slide template |
theme |
default, corporate, dark | Marp theme |
includeCharts |
true/false | Include generated charts |
format |
pdf, pptx, html | Output format |
Planned CLI Commands
# Generate Marp markdown
prism slides prism.json -o slides.md
# Generate PDF directly
prism slides prism.json --format pdf -o report.pdf
# Generate with custom template
prism slides prism.json --template executive -o slides.md
# Generate PowerPoint
prism slides prism.json --format pptx -o report.pptx
Chart Generation
Charts will be generated as SVG for embedding:
- Score Gauge - Circular gauge with score
- Trend Line - Historical score trend
- Heatmap - Domain × Stage matrix
- Bar Charts - Metric comparisons
Use Cases
Monthly Executive Report
prism slides prism.json \
--template executive \
--title "Monthly PRISM Report" \
--period "January 2024" \
--format pdf \
-o monthly-report.pdf
Quarterly Review
prism slides prism.json \
--template trend \
--compare prism-q3.json prism-q4.json \
--format pptx \
-o quarterly-review.pptx
Roadmap
- Phase 1: Basic Marp markdown generation
- Phase 2: PDF/PPTX export
- Phase 3: Chart embedding
- Phase 4: Trend comparison slides