Portfolio rollup
Show a status rollup for our dairy operations transformation projects.
Try in PlaygroundExample brief
Produce a high-level executive dashboard for the dairy cooperative's operations board. The slide should categorize our transformation efforts into four main programs: Smart Farm Yields, Supply Chain, Processing Agility, and Quality. Each program needs an aggregate RAG status and percentage progress, with specific sub-initiatives listed underneath including their individual health, completion level, and upcoming milestones. Highlight that environmental and waste-related projects are currently at risk while logistics and certification are progressing well.
Render it
Structured intent — create_slide payload
Copy-paste-ready. Renders deterministically (verbatim, no LLM). Add a theme_id for any of the built-in themes — the layout stays identical.
{
"form": "status_dashboard",
"variant": "portfolio_rollup",
"headline": "Logistics and yield optimization lags threaten the mid-year sustainability targets",
"context": "Operations Modernization Portfolio - Executive Board Review",
"takeaway": "Permitting delays and equipment procurement in the sustainability and waste streams require immediate capital reallocation.",
"data": {
"groups": [
{
"program": "Smart Farm Yields",
"status": "amber",
"progress": 58,
"owner": "Soren",
"children": [
{
"item": "IoT Silo Monitoring",
"status": "green",
"progress": 70,
"next_milestone": "Sensor rollout 24 Jul"
},
{
"item": "Feed Nutrient Analysis",
"status": "amber",
"progress": 55,
"next_milestone": "Lab calibration 21 Jul"
},
{
"item": "Methane Capture Pilot",
"status": "red",
"progress": 32,
"next_milestone": "EPA permit delay 18 Jul"
}
]
},
{
"program": "Supply Chain 2.0",
"status": "green",
"progress": 64,
"owner": "Helga",
"children": [
{
"item": "Cold-Chain Telematics",
"status": "green",
"progress": 72,
"next_milestone": "Fleet retrofit done"
},
{
"item": "Route Optimization",
"status": "amber",
"progress": 48,
"next_milestone": "GIS data integration"
}
]
},
{
"program": "Processing Agility",
"status": "amber",
"progress": 52,
"owner": "Lukas",
"children": [
{
"item": "UHT Line Automation",
"status": "amber",
"progress": 50,
"next_milestone": "PLC logic validation"
},
{
"item": "Waste Water Recovery",
"status": "red",
"progress": 36,
"next_milestone": "Finalize pump specs"
}
]
},
{
"program": "Quality & Compliance",
"status": "amber",
"progress": 45,
"owner": "Elena",
"children": [
{
"item": "Pathogen Traceability",
"status": "amber",
"progress": 42,
"next_milestone": "Batch-ID audit series"
},
{
"item": "Export Certification",
"status": "green",
"progress": 56,
"next_milestone": "EU standards alignment"
}
]
}
],
"summary": {
"green": 3,
"amber": 4,
"red": 2
}
}
}cURL (REST)
curl -X POST https://api.slideforge.dev/v1/render/intent \
-H "Authorization: Bearer sf_live_..." \
-H "Content-Type: application/json" \
-d '{"form":"status_dashboard","variant":"portfolio_rollup","headline":"Logistics and yield optimization lags threaten the mid-year sustainability targets","context":"Operations Modernization Portfolio - Executive Board Review","takeaway":"Permitting delays and equipment procurement in the sustainability and waste streams require immediate capital reallocation.","data":{"groups":[{"program":"Smart Farm Yields","status":"amber","progress":58,"owner":"Soren","children":[{"item":"IoT Silo Monitoring","status":"green","progress":70,"next_milestone":"Sensor rollout 24 Jul"},{"item":"Feed Nutrient Analysis","status":"amber","progress":55,"next_milestone":"Lab calibration 21 Jul"},{"item":"Methane Capture Pilot","status":"red","progress":32,"next_milestone":"EPA permit delay 18 Jul"}]},{"program":"Supply Chain 2.0","status":"green","progress":64,"owner":"Helga","children":[{"item":"Cold-Chain Telematics","status":"green","progress":72,"next_milestone":"Fleet retrofit done"},{"item":"Route Optimization","status":"amber","progress":48,"next_milestone":"GIS data integration"}]},{"program":"Processing Agility","status":"amber","progress":52,"owner":"Lukas","children":[{"item":"UHT Line Automation","status":"amber","progress":50,"next_milestone":"PLC logic validation"},{"item":"Waste Water Recovery","status":"red","progress":36,"next_milestone":"Finalize pump specs"}]},{"program":"Quality & Compliance","status":"amber","progress":45,"owner":"Elena","children":[{"item":"Pathogen Traceability","status":"amber","progress":42,"next_milestone":"Batch-ID audit series"},{"item":"Export Certification","status":"green","progress":56,"next_milestone":"EU standards alignment"}]}],"summary":{"green":3,"amber":4,"red":2}}}'Frequently asked questions
How do I render the Portfolio rollup template?
Send a POST to /v1/render/auto with a brief, or call create_slide via MCP with the structured intent shown below. The response includes an editable .pptx, a PDF, and a PNG. $0.05 per slide.
Does an AI write the slide?
No. SlideForge renders deterministically from a structured intent — no LLM draws the slide, so text is never mangled or fabricated. The optional brief path uses a router to pick the pattern, then renders deterministically.
Can I customize the colors and fonts?
Yes. Pass a theme_id to apply a built-in or custom brand theme; the layout stays the same.
Try this template
Render Portfolio rollup deterministically — editable PowerPoint in under a second.