--- name: pptx-creator label: PPT deck creator description: Create consulting-style PowerPoint decks with AX native PPT generation. icon: \uE7BE when_to_use: Use for executive decks, board updates, PMO steering materials, operating model proposals, KPI review decks, or any request that needs a polished PPTX deliverable. argument-hint: allowed-tools: - folder_map - document_plan - document_read - file_read - pptx_create tabs: cowork --- Use `document_plan` plus `pptx_create` as the default path for business decks. Do not start with ad-hoc slide arrays unless the user already gave a very detailed deck structure. ## Default workflow 1. Review the workspace for existing presentation files, reports, or templates. 2. Use `document_plan` with `document_type: presentation` to define the storyline first. 3. Build a deck brief with `audience`, `objective`, `decision_ask`, and optional `storyline`. 4. Generate the deck with `pptx_create`. 5. Prefer `template_pack` or a bundled template (`basic100`, `core100`, etc.) when the deck needs branded polish. 6. If the returned quality summary is weak, revise the storyline and regenerate the same file instead of stopping. 7. Return the file path together with the storyline and quality summary. ## Quality rules - Keep one message per slide. - Prefer 3-5 concise bullets, not long paragraphs. - Use a message headline, not a vague topic label. - Include `Executive Summary`, `Recommendation`, and `Roadmap` in most business decks. - Add `Appendix` or `Evidence` when the deck is 6 slides or longer. - Use comparison, chart, KPI, or evidence slides when data exists. ## Useful layouts - `title` - `executive_summary` - `comparison` - `recommendation` - `roadmap` - `kpi_dashboard` - `chart` - `table` - `issue_tree` - `before_after` - `decision_matrix` - `risk_heatmap` - `benefit_waterfall` - `operating_model` - `appendix_evidence` ## Example ```json { "path": "strategy-deck.pptx", "template": "basic100", "audience": "executive committee", "objective": "customer growth strategy recommendation", "decision_ask": "approve phase-1 CRM and retention program funding", "storyline": [ "Executive Summary", "Current State", "Options", "Recommendation", "Roadmap", "Impact & Ask" ], "slides": [ { "layout": "executive_summary", "title": "Executive Summary", "headline": "Focus on retention and CRM automation to restore growth within two quarters.", "summary_points": [ "Three priority cohorts explain most of the growth gap.", "Workflow automation reduces manual operating cost.", "Phase-1 actions and medium-term changes are clearly separated." ], "recommendation": "Approve phase-1 CRM upgrade and retention program launch." } ] } ```