Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

,\n 'chapter_intro': r'^##\\s+(.+)

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

,\n 'key_message': r'^###\\s+(.+)

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

,\n 'bullet_list': r'^\\*\\s+(.+)$|^-\\s+(.+)

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

,\n 'quote': r'^>\\s+(.+)

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

,\n 'image': r'!\\[.*?\\]\\((.+?)\\)',\n 'table': r'^\\|.+\\|.+\\|

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

,\n 'metrics': r'(\\d+\\.?\\d*[%$€£¥M-Z]*)',\n 'section_break': r'^===+

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

\n }\n\n def analyze(self, content: str) -> Dict:\n \"\"\"Analyze content and return recommendations.\"\"\"\n lines = content.split('\\n')\n\n # Extract frontmatter if present\n frontmatter = self._extract_frontmatter(content)\n\n # Analyze content for style recommendation\n style = frontmatter.get('style') or self._recommend_style(content)\n\n # Map slides\n slides = self._map_slides(lines)\n\n # Detect metrics and key data\n metrics = self._extract_metrics(content)\n\n # Count slide types\n slide_stats = self._calculate_stats(slides)\n\n return {\n 'recommended_style': style,\n 'frontmatter': frontmatter,\n 'total_slides': len(slides),\n 'slide_structure': slides,\n 'key_metrics': metrics,\n 'statistics': slide_stats,\n 'estimated_duration': len(slides) # 1 slide per minute rule\n }\n\n def _extract_frontmatter(self, content: str) -> Dict:\n \"\"\"Extract YAML frontmatter from markdown.\"\"\"\n match = re.match(r'^---\\s*\\n(.*?)\\n---\\s*\\n', content, re.DOTALL)\n if not match:\n return {}\n\n frontmatter = {}\n yaml_content = match.group(1)\n\n # Simple YAML parser (only handles key: value pairs)\n for line in yaml_content.split('\\n'):\n if ':' in line:\n key, value = line.split(':', 1)\n frontmatter[key.strip()] = value.strip().strip('\"\\'')\n\n return frontmatter\n\n def _recommend_style(self, content: str) -> str:\n \"\"\"Recommend brand style based on content analysis.\"\"\"\n content_lower = content.lower()\n\n scores = {}\n for style, keywords in self.keywords.items():\n score = sum(content_lower.count(keyword) for keyword in keywords)\n scores[style] = score\n\n # Return style with highest score\n recommended = max(scores.items(), key=lambda x: x[1])\n\n # Default to corporate-professional if no clear winner\n if recommended[1] == 0:\n return 'corporate-professional'\n\n return recommended[0]\n\n def _map_slides(self, lines: List[str]) -> List[Dict]:\n \"\"\"Map markdown lines to slide templates.\"\"\"\n slides = []\n current_slide = None\n\n for i, line in enumerate(lines):\n line = line.strip()\n\n if not line:\n continue\n\n # Title slide (# Header)\n if re.match(r'^#\\s+[^#]', line):\n if current_slide:\n slides.append(current_slide)\n current_slide = {\n 'type': 'title_slide',\n 'template': 'title_slide',\n 'content': {\n 'title': re.sub(r'^#\\s+', '', line)\n },\n 'line_number': i + 1\n }\n\n # Section/Chapter (## Header)\n elif re.match(r'^##\\s+[^#]', line):\n if current_slide:\n slides.append(current_slide)\n current_slide = {\n 'type': 'section',\n 'template': 'chapter_intro',\n 'content': {\n 'title': re.sub(r'^##\\s+', '', line)\n },\n 'line_number': i + 1\n }\n\n # Key message (### Header)\n elif re.match(r'^###\\s+', line):\n if current_slide:\n slides.append(current_slide)\n current_slide = {\n 'type': 'key_message',\n 'template': 'key_metrics_dashboard',\n 'content': {\n 'title': re.sub(r'^###\\s+', '', line),\n 'bullets': []\n },\n 'line_number': i + 1\n }\n\n # Bullets\n elif re.match(r'^[\\*\\-]\\s+', line):\n if current_slide and 'bullets' in current_slide['content']:\n bullet_text = re.sub(r'^[\\*\\-]\\s+', '', line)\n current_slide['content']['bullets'].append(bullet_text)\n else:\n if current_slide:\n slides.append(current_slide)\n current_slide = {\n 'type': 'bullets',\n 'template': 'two_column_text',\n 'content': {\n 'bullets': [re.sub(r'^[\\*\\-]\\s+', '', line)]\n },\n 'line_number': i + 1\n }\n\n # Quote\n elif re.match(r'^>\\s+', line):\n if current_slide:\n slides.append(current_slide)\n current_slide = {\n 'type': 'quote',\n 'template': 'quote_testimonial',\n 'content': {\n 'quote': re.sub(r'^>\\s+', '', line)\n },\n 'line_number': i + 1\n }\n\n # Image\n elif re.search(r'!\\[.*?\\]\\((.+?)\\)', line):\n images = re.findall(r'!\\[.*?\\]\\((.+?)\\)', line)\n if current_slide:\n slides.append(current_slide)\n current_slide = {\n 'type': 'image',\n 'template': 'full_image_slide' if len(images) == 1 else 'two_column_text',\n 'content': {\n 'images': images\n },\n 'line_number': i + 1\n }\n\n # Section break\n elif re.match(r'^===+

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…

, line):\n # Mark next slide as section intro\n if current_slide:\n slides.append(current_slide)\n current_slide = None\n\n if current_slide:\n slides.append(current_slide)\n\n return slides\n\n def _extract_metrics(self, content: str) -> List[Dict]:\n \"\"\"Extract key metrics and numbers from content.\"\"\"\n metrics = []\n\n # Find numbers with units/symbols\n pattern = r'(\\d+\\.?\\d*)\\s*([%$€£¥MKB]?)'\n matches = re.finditer(pattern, content)\n\n for match in matches:\n value = match.group(1)\n unit = match.group(2)\n\n # Only include significant numbers (> 10 or with units)\n if float(value) > 10 or unit:\n metrics.append({\n 'value': value,\n 'unit': unit,\n 'context': content[max(0, match.start()-50):min(len(content), match.end()+50)]\n })\n\n return metrics[:10] # Top 10 metrics\n\n def _calculate_stats(self, slides: List[Dict]) -> Dict:\n \"\"\"Calculate statistics about slide composition.\"\"\"\n types = {}\n for slide in slides:\n slide_type = slide['type']\n types[slide_type] = types.get(slide_type, 0) + 1\n\n return {\n 'slide_types': types,\n 'has_images': any(s['type'] == 'image' for s in slides),\n 'has_metrics': any('metrics' in str(s) for s in slides),\n 'has_quotes': any(s['type'] == 'quote' for s in slides)\n }\n\ndef main():\n if len(sys.argv) \u003c 2:\n print(\"Usage: python analyze_content.py input.md\")\n sys.exit(1)\n\n input_file = sys.argv[1]\n\n try:\n with open(input_file, 'r', encoding='utf-8') as f:\n content = f.read()\n except FileNotFoundError:\n print(f\"Error: File '{input_file}' not found\")\n sys.exit(1)\n\n analyzer = ContentAnalyzer()\n result = analyzer.analyze(content)\n\n print(json.dumps(result, indent=2))\n\nif __name__ == '__main__':\n main()\n","content_type":"text/x-python; charset=utf-8","language":"python","size":9089,"content_sha256":"1abfd682986a6d84ec5dce6105f6c318faf042ea63543bc884599c0158e537a7"},{"filename":"templates/ANIMATION_GUIDE.md","content":"# Professional Animation & Transition Guide\n\n## The Golden Rules\n\n1. **Consistency Over Variety** - Use 1-2 transition types for the entire deck\n2. **Subtlety Over Flash** - Professional animations are barely noticeable\n3. **Purpose Over Decoration** - Every animation must serve comprehension\n4. **Speed Matters** - Too fast feels rushed, too slow feels sluggish\n5. **The Boardroom Test** - If it would distract a CEO, don't use it\n\n## Transition Tier System\n\n### Tier 1: Always Professional (Use Freely)\n\n**Fade (0.6s)**\n- Universal, works everywhere\n- Best for: All content types, section changes\n- Duration: 0.6s (standard), 0.4s (fast), 0.8s (slow)\n- Brand fit: All brands\n```json\n{\n \"type\": \"Fade\",\n \"duration\": 0.6,\n \"use_case\": \"Default transition for 95% of slides\"\n}\n```\n\n**Push (0.4-0.5s)**\n- Clean, directional flow\n- Best for: Sequential content, storytelling, timeline\n- Direction: Left (forward), Right (back)\n- Brand fit: Tech Keynote, Startup Pitch\n```json\n{\n \"type\": \"Push\",\n \"duration\": 0.4,\n \"direction\": \"From Right\",\n \"use_case\": \"Moving through timeline or sequence\"\n}\n```\n\n**Morph (0.8s)** *PowerPoint only*\n- Sophisticated, content-aware\n- Best for: Design continuity, repeated elements\n- Requires: Matching object names across slides\n- Brand fit: Corporate Professional, Financial Elite\n```json\n{\n \"type\": \"Morph\",\n \"duration\": 0.8,\n \"use_case\": \"When objects appear on consecutive slides\"\n}\n```\n\n### Tier 2: Special Occasions Only\n\n**Zoom (0.5s)**\n- Dramatic reveal or emphasis\n- Best for: Product reveals, before/after comparisons\n- Direction: In (reveal), Out (context)\n- Limit: 2-3 times per deck\n- Brand fit: Tech Keynote, Creative Bold\n```json\n{\n \"type\": \"Zoom\",\n \"duration\": 0.5,\n \"direction\": \"In\",\n \"use_case\": \"THE reveal moment in your presentation\"\n}\n```\n\n**Reveal (0.6s)**\n- Professional wipe effect\n- Best for: Section breaks, new chapters\n- Direction: Left, Right, Top, Bottom\n- Limit: Once per section\n- Brand fit: Corporate Professional, Creative Bold\n```json\n{\n \"type\": \"Reveal\",\n \"duration\": 0.6,\n \"direction\": \"From Right\",\n \"use_case\": \"Major section transitions\"\n}\n```\n\n**Wipe (0.5s)**\n- Clean directional sweep\n- Best for: Image-heavy presentations\n- Direction: From Bottom (natural rise)\n- Limit: 3-5 times per deck\n- Brand fit: Tech Keynote, Creative Bold\n```json\n{\n \"type\": \"Wipe\",\n \"duration\": 0.5,\n \"direction\": \"From Bottom\",\n \"use_case\": \"Introducing new imagery\"\n}\n```\n\n### Tier 3: Never Use (Unprofessional)\n\n**Avoid at All Costs:**\n- Ferris Wheel - Gimmicky, distracting\n- Curtains - Theater metaphor, dated\n- Origami - Overly complex, slow\n- Page Curl - Skeuomorphic, 2000s\n- Dissolve - Weak, undefined\n- Flash - Jarring, aggressive\n- Honeycomb - Geometric distraction\n\n**Why avoid these?**\n- They draw attention to the transition itself\n- They feel amateurish and outdated\n- They don't exist in modern design language\n- They fail the boardroom test\n\n## Content-Specific Animation Guidelines\n\n### Text Animations\n\n**Title Entrance**\n```json\n{\n \"element\": \"Title\",\n \"effect\": \"Fade In\",\n \"duration\": 0.4,\n \"delay\": 0,\n \"trigger\": \"With Previous\"\n}\n```\n\n**Bullet Lists (Staggered)**\n```json\n{\n \"element\": \"Bullet Points\",\n \"effect\": \"Fade In\",\n \"duration\": 0.3,\n \"delay_between\": 0.3,\n \"trigger\": \"After Previous\",\n \"notes\": \"Creates rhythm, aids comprehension\"\n}\n```\n\n**Body Text (Simple)**\n```json\n{\n \"element\": \"Body Text\",\n \"effect\": \"Fade In\",\n \"duration\": 0.4,\n \"trigger\": \"With Previous\",\n \"notes\": \"All text appears together, no stagger\"\n}\n```\n\n### Image Animations\n\n**Hero Image**\n```json\n{\n \"element\": \"Full-screen Image\",\n \"effect\": \"Fade In\",\n \"duration\": 0.6,\n \"trigger\": \"With Previous\",\n \"notes\": \"Let the image speak, minimal motion\"\n}\n```\n\n**Product Shot**\n```json\n{\n \"element\": \"Product Image\",\n \"effect\": \"Wipe\",\n \"direction\": \"From Bottom\",\n \"duration\": 0.6,\n \"trigger\": \"After Previous\",\n \"notes\": \"Rising reveal feels premium\"\n}\n```\n\n**Multiple Images**\n```json\n{\n \"element\": \"Image Grid\",\n \"effect\": \"Fade In\",\n \"duration\": 0.4,\n \"delay_between\": 0.2,\n \"trigger\": \"After Previous\",\n \"notes\": \"Stagger for visual interest\"\n}\n```\n\n### Chart/Data Animations\n\n**Chart Entrance**\n```json\n{\n \"element\": \"Chart\",\n \"effect\": \"Grow & Turn\",\n \"duration\": 0.8,\n \"trigger\": \"On Click\",\n \"notes\": \"Gives audience time to process\"\n}\n```\n\n**Data Points (Sequential)**\n```json\n{\n \"element\": \"Data Series\",\n \"effect\": \"Appear\",\n \"duration\": 0.5,\n \"delay_between\": 0.4,\n \"trigger\": \"On Click\",\n \"notes\": \"Build story one data point at a time\"\n}\n```\n\n### Emphasis Animations (The \"AHA!\" Moment)\n\n**Key Metric**\n```json\n{\n \"element\": \"Important Number\",\n \"effect\": \"Pulse\",\n \"duration\": 0.8,\n \"repeat\": 1,\n \"scale\": 1.15,\n \"trigger\": \"After Previous\",\n \"notes\": \"Use once per deck for THE key metric\"\n}\n```\n\n**Call-to-Action**\n```json\n{\n \"element\": \"CTA Button/Text\",\n \"effect\": \"Grow\",\n \"duration\": 0.6,\n \"scale\": 1.1,\n \"trigger\": \"After Previous\",\n \"notes\": \"Subtle emphasis without being pushy\"\n}\n```\n\n**Important Warning/Highlight**\n```json\n{\n \"element\": \"Highlighted Text\",\n \"effect\": \"Color Pulse\",\n \"duration\": 0.5,\n \"repeat\": 1,\n \"trigger\": \"With Previous\",\n \"notes\": \"Draws eye to critical information\"\n}\n```\n\n## Brand-Specific Animation Strategies\n\n### Tech Keynote (Apple Style)\n```json\n{\n \"philosophy\": \"Less is exponentially more\",\n \"transitions\": [\"Fade\", \"Push\"],\n \"max_animations_per_slide\": 1,\n \"duration_preference\": 0.6,\n \"entrance_animations\": \"Fade In only\",\n \"emphasis_animations\": \"None (let content speak)\",\n \"notes\": \"Pure minimalism, content is the star\"\n}\n```\n\n### Corporate Professional (Microsoft Style)\n```json\n{\n \"philosophy\": \"Smooth, professional, never distracting\",\n \"transitions\": [\"Morph\", \"Fade\"],\n \"max_animations_per_slide\": 3,\n \"duration_preference\": 0.8,\n \"entrance_animations\": \"Fade In, occasionally Wipe\",\n \"emphasis_animations\": \"Subtle Pulse on key data\",\n \"notes\": \"Data-friendly, allows charts to build\"\n}\n```\n\n### Creative Bold (Google Style)\n```json\n{\n \"philosophy\": \"Playful but purposeful\",\n \"transitions\": [\"Zoom\", \"Reveal\", \"Push\"],\n \"max_animations_per_slide\": 4,\n \"duration_preference\": 0.5,\n \"entrance_animations\": \"Mix of Fade, Zoom, Wipe\",\n \"emphasis_animations\": \"Grow, Color Pulse\",\n \"notes\": \"More variety OK, but still controlled\"\n}\n```\n\n### Financial Elite (Goldman Sachs Style)\n```json\n{\n \"philosophy\": \"Understated sophistication\",\n \"transitions\": [\"Fade\"],\n \"max_animations_per_slide\": 1,\n \"duration_preference\": 0.4,\n \"entrance_animations\": \"Fade In only\",\n \"emphasis_animations\": \"None\",\n \"notes\": \"Maximum restraint, content is serious\"\n}\n```\n\n### Startup Pitch (Y Combinator Style)\n```json\n{\n \"philosophy\": \"Quick, energetic, metric-focused\",\n \"transitions\": [\"Push\", \"Fade\"],\n \"max_animations_per_slide\": 2,\n \"duration_preference\": 0.3,\n \"entrance_animations\": \"Fade In, quick\",\n \"emphasis_animations\": \"Pulse on metrics\",\n \"notes\": \"Fast pace matches startup energy\"\n}\n```\n\n## Timing Guidelines\n\n### Duration Standards\n```\nSuper Fast: 0.2-0.3s (Startup energy)\nFast: 0.4-0.5s (Modern, crisp)\nMedium: 0.6-0.7s (Standard professional)\nSlow: 0.8-1.0s (Sophisticated, data-heavy)\nToo Slow: >1.0s (Avoid - feels sluggish)\n```\n\n### Delay Between Elements\n```\nTight: 0.2s (Related items)\nStandard: 0.3s (Bullet points)\nSpacious: 0.4-0.5s (Distinct concepts)\nDramatic: 0.6s+ (Special emphasis)\n```\n\n## The Build-Up Strategy\n\nFor complex slides with multiple elements:\n\n**1. Foundation First (0s)**\n```\n- Background\n- Slide title\n- Core layout elements\n```\n\n**2. Main Content (After 0.3s)**\n```\n- Primary text/image\n- Key message\n```\n\n**3. Supporting Details (After 0.6s)**\n```\n- Bullets/sub-points\n- Secondary images\n- Captions\n```\n\n**4. Emphasis (After 1.0s)**\n```\n- Highlight key number\n- Call-to-action\n- Final emphasis\n```\n\n## Animation Checklist\n\nBefore finalizing your deck:\n\n**Consistency:**\n- [ ] Using 1-2 transition types max\n- [ ] All similar elements animate the same way\n- [ ] Duration is consistent across similar animations\n- [ ] Brand style guidelines followed\n\n**Purpose:**\n- [ ] Every animation aids comprehension\n- [ ] No animations \"just because\"\n- [ ] Emphasis animations on truly important elements only\n- [ ] Build sequences logical and clear\n\n**Technical:**\n- [ ] All animations \u003c 1.0s duration\n- [ ] No Tier 3 (avoid) transitions used\n- [ ] Text readable during animation\n- [ ] Animations don't obscure content\n\n**Audience:**\n- [ ] Passes the boardroom test\n- [ ] Appropriate for audience formality\n- [ ] Doesn't distract from message\n- [ ] Feels modern and professional\n\n## Common Mistakes to Avoid\n\n**1. Animation Soup**\n```diff\n- Different animation on every slide\n- Mixing 5+ transition types\n- Random duration changes\n+ Consistent 1-2 transitions throughout\n```\n\n**2. Speed Problems**\n```diff\n- Too fast (\u003c 0.2s) - feels jarring\n- Too slow (> 1.0s) - feels sluggish\n+ Sweet spot: 0.4-0.7s for most content\n```\n\n**3. Over-Animation**\n```diff\n- Every bullet, image, text box animated\n- Multiple emphasis animations per slide\n- Animations on decorative elements\n+ Only animate what aids understanding\n```\n\n**4. Wrong Effect Choice**\n```diff\n- Ferris Wheel for business content\n- Aggressive Zoom on every slide\n- Page Curl in professional setting\n+ Fade/Push for 90% of professional decks\n```\n\n**5. Poor Timing**\n```diff\n- No delays between bullet points\n- Everything appearing at once\n- Animations during critical speech moments\n+ Strategic delays for comprehension\n```\n\n## Testing Your Animations\n\n**The Run-Through Test:**\n1. Present deck in full-screen mode\n2. Move through at natural speaking pace\n3. Note any animations that feel \"off\"\n4. Ask: Does this help or distract?\n\n**The Executive Test:**\n1. Imagine presenting to CEO/Board\n2. Would any animation feel unprofessional?\n3. Remove anything that fails this test\n\n**The Comprehension Test:**\n1. Show deck to colleague\n2. Ask them to recall key points\n3. If animations distracted from content, simplify\n\n## Quick Reference by Slide Type\n\n| Slide Type | Transition | Entrance | Emphasis | Duration |\n|------------|------------|----------|----------|----------|\n| Title | Fade | Fade In | None | 0.6s |\n| Section Break | Reveal | Fade In | None | 0.6s |\n| Bullets | Fade | Fade In (stagger) | None | 0.3s each |\n| Image | Fade/Wipe | Wipe From Bottom | None | 0.6s |\n| Quote | Fade | Fade In | None | 0.4s |\n| Data/Chart | Fade | Grow & Turn | Pulse (key number) | 0.8s |\n| Comparison | Push | Fade In (sequence) | None | 0.5s |\n| Product | Zoom | Wipe From Bottom | Optional Pulse | 0.6s |\n| Thank You | Fade | Fade In | None | 0.4s |\n\n## Final Wisdom\n\n> \"The best animation is the one you don't notice.\"\n\nYour goal is to guide attention and aid comprehension, not to showcase PowerPoint's feature set. When in doubt, use Fade at 0.6s and call it a day. Professional presentations are remembered for their content, not their transitions.\n","content_type":"text/markdown; charset=utf-8","language":"markdown","size":10993,"content_sha256":"bf1b3b7d5795b5d85dc28bbf7e1539117f3ad70f93bd00e916e0d27623e92b10"},{"filename":"templates/brand-styles.json","content":"{\n \"version\": \"1.0\",\n \"description\": \"World-class brand design systems for elite presentations\",\n \"brands\": {\n \"tech-keynote\": {\n \"name\": \"Tech Keynote\",\n \"inspiration\": \"Apple, Tesla, Premium Tech\",\n \"colors\": {\n \"primary\": [0, 0, 0],\n \"secondary\": [255, 255, 255],\n \"accent\": [0, 113, 227],\n \"background\": [255, 255, 255],\n \"text_primary\": [0, 0, 0],\n \"text_secondary\": [142, 142, 147]\n },\n \"typography\": {\n \"title_font\": \"SF Pro Display\",\n \"title_fallback\": \"Helvetica Neue\",\n \"body_font\": \"SF Pro Text\",\n \"body_fallback\": \"Helvetica\",\n \"title_size\": 72,\n \"subtitle_size\": 44,\n \"body_size\": 32,\n \"caption_size\": 20,\n \"title_weight\": \"bold\",\n \"body_weight\": \"regular\"\n },\n \"spacing\": {\n \"gutter\": 120,\n \"title_margin\": 80,\n \"section_spacing\": 60,\n \"paragraph_spacing\": 32,\n \"element_padding\": 30\n },\n \"effects\": {\n \"shadows\": \"subtle\",\n \"gradients\": false,\n \"overlays\": \"minimal\"\n },\n \"animations\": {\n \"transitions\": [\"Push\", \"Fade\"],\n \"duration\": 0.6,\n \"style\": \"smooth\",\n \"max_per_slide\": 2\n },\n \"layout\": {\n \"alignment\": \"center\",\n \"whitespace\": \"maximum\",\n \"focal_point\": \"single\"\n }\n },\n \"corporate-professional\": {\n \"name\": \"Corporate Professional\",\n \"inspiration\": \"Microsoft, IBM, Enterprise\",\n \"colors\": {\n \"primary\": [0, 51, 102],\n \"secondary\": [0, 120, 212],\n \"accent\": [0, 120, 212],\n \"background\": [243, 242, 241],\n \"text_primary\": [50, 49, 48],\n \"text_secondary\": [96, 94, 92]\n },\n \"typography\": {\n \"title_font\": \"Segoe UI\",\n \"title_fallback\": \"Arial\",\n \"body_font\": \"Segoe UI\",\n \"body_fallback\": \"Arial\",\n \"title_size\": 64,\n \"subtitle_size\": 36,\n \"body_size\": 28,\n \"caption_size\": 18,\n \"title_weight\": \"semibold\",\n \"body_weight\": \"regular\"\n },\n \"spacing\": {\n \"gutter\": 100,\n \"title_margin\": 60,\n \"section_spacing\": 48,\n \"paragraph_spacing\": 28,\n \"element_padding\": 24\n },\n \"effects\": {\n \"shadows\": \"moderate\",\n \"gradients\": \"subtle\",\n \"overlays\": \"professional\"\n },\n \"animations\": {\n \"transitions\": [\"Morph\", \"Fade\"],\n \"duration\": 0.8,\n \"style\": \"professional\",\n \"max_per_slide\": 3\n },\n \"layout\": {\n \"alignment\": \"left\",\n \"whitespace\": \"balanced\",\n \"focal_point\": \"grid\"\n }\n },\n \"creative-bold\": {\n \"name\": \"Creative Bold\",\n \"inspiration\": \"Google, Airbnb, Design Forward\",\n \"colors\": {\n \"primary\": [234, 67, 53],\n \"secondary\": [66, 133, 244],\n \"accent\": [251, 188, 5],\n \"background\": [255, 255, 255],\n \"text_primary\": [32, 33, 36],\n \"text_secondary\": [95, 99, 104]\n },\n \"typography\": {\n \"title_font\": \"Product Sans\",\n \"title_fallback\": \"Montserrat\",\n \"body_font\": \"Google Sans\",\n \"body_fallback\": \"Open Sans\",\n \"title_size\": 76,\n \"subtitle_size\": 40,\n \"body_size\": 30,\n \"caption_size\": 20,\n \"title_weight\": \"bold\",\n \"body_weight\": \"regular\"\n },\n \"spacing\": {\n \"gutter\": 80,\n \"title_margin\": 64,\n \"section_spacing\": 52,\n \"paragraph_spacing\": 30,\n \"element_padding\": 28\n },\n \"effects\": {\n \"shadows\": \"bold\",\n \"gradients\": \"vibrant\",\n \"overlays\": \"creative\"\n },\n \"animations\": {\n \"transitions\": [\"Zoom\", \"Reveal\", \"Push\"],\n \"duration\": 0.5,\n \"style\": \"energetic\",\n \"max_per_slide\": 4\n },\n \"layout\": {\n \"alignment\": \"dynamic\",\n \"whitespace\": \"playful\",\n \"focal_point\": \"asymmetric\"\n }\n },\n \"financial-elite\": {\n \"name\": \"Financial Elite\",\n \"inspiration\": \"Goldman Sachs, McKinsey, Premium Financial\",\n \"colors\": {\n \"primary\": [44, 62, 80],\n \"secondary\": [212, 175, 55],\n \"accent\": [212, 175, 55],\n \"background\": [255, 255, 255],\n \"text_primary\": [44, 62, 80],\n \"text_secondary\": [127, 140, 141]\n },\n \"typography\": {\n \"title_font\": \"Garamond\",\n \"title_fallback\": \"Georgia\",\n \"body_font\": \"Garamond\",\n \"body_fallback\": \"Georgia\",\n \"title_size\": 60,\n \"subtitle_size\": 36,\n \"body_size\": 26,\n \"caption_size\": 18,\n \"title_weight\": \"semibold\",\n \"body_weight\": \"regular\"\n },\n \"spacing\": {\n \"gutter\": 110,\n \"title_margin\": 70,\n \"section_spacing\": 50,\n \"paragraph_spacing\": 26,\n \"element_padding\": 26\n },\n \"effects\": {\n \"shadows\": \"minimal\",\n \"gradients\": false,\n \"overlays\": \"sophisticated\"\n },\n \"animations\": {\n \"transitions\": [\"Fade\"],\n \"duration\": 0.4,\n \"style\": \"subtle\",\n \"max_per_slide\": 1\n },\n \"layout\": {\n \"alignment\": \"center\",\n \"whitespace\": \"traditional\",\n \"focal_point\": \"centered\"\n }\n },\n \"startup-pitch\": {\n \"name\": \"Startup Pitch\",\n \"inspiration\": \"Y Combinator, 500 Startups, Venture Capital\",\n \"colors\": {\n \"primary\": [0, 0, 0],\n \"secondary\": [99, 102, 241],\n \"accent\": [99, 102, 241],\n \"background\": [255, 255, 255],\n \"text_primary\": [17, 24, 39],\n \"text_secondary\": [107, 114, 128]\n },\n \"typography\": {\n \"title_font\": \"Inter\",\n \"title_fallback\": \"Roboto\",\n \"body_font\": \"Inter\",\n \"body_fallback\": \"Roboto\",\n \"title_size\": 68,\n \"subtitle_size\": 38,\n \"body_size\": 28,\n \"caption_size\": 18,\n \"title_weight\": \"bold\",\n \"body_weight\": \"medium\"\n },\n \"spacing\": {\n \"gutter\": 90,\n \"title_margin\": 56,\n \"section_spacing\": 44,\n \"paragraph_spacing\": 26,\n \"element_padding\": 22\n },\n \"effects\": {\n \"shadows\": \"sharp\",\n \"gradients\": \"accent\",\n \"overlays\": \"data-focused\"\n },\n \"animations\": {\n \"transitions\": [\"Push\", \"Fade\"],\n \"duration\": 0.3,\n \"style\": \"quick\",\n \"max_per_slide\": 2\n },\n \"layout\": {\n \"alignment\": \"left\",\n \"whitespace\": \"efficient\",\n \"focal_point\": \"metric-driven\"\n }\n }\n },\n \"animation_guidelines\": {\n \"tier_1_safe\": {\n \"effects\": [\"Fade\", \"Push\", \"Morph\"],\n \"use_case\": \"Primary transitions, can be used liberally\",\n \"duration_range\": [0.4, 0.8]\n },\n \"tier_2_special\": {\n \"effects\": [\"Zoom\", \"Reveal\", \"Wipe\"],\n \"use_case\": \"Special moments, product reveals, section breaks\",\n \"duration_range\": [0.5, 0.6]\n },\n \"tier_3_avoid\": {\n \"effects\": [\"Ferris Wheel\", \"Curtains\", \"Dissolve\", \"Origami\", \"Page Curl\"],\n \"use_case\": \"Never use - unprofessional\"\n },\n \"entrance_animations\": {\n \"text\": {\n \"effect\": \"Fade In\",\n \"duration\": 0.4,\n \"delay_between_bullets\": 0.3\n },\n \"images\": {\n \"effect\": \"Wipe\",\n \"direction\": \"From Bottom\",\n \"duration\": 0.6\n },\n \"charts\": {\n \"effect\": \"Grow & Turn\",\n \"duration\": 0.8\n }\n },\n \"emphasis_animations\": {\n \"metrics\": {\n \"effect\": \"Pulse\",\n \"duration\": 0.8,\n \"repeat\": \"once\"\n },\n \"callouts\": {\n \"effect\": \"Grow\",\n \"scale\": 1.1,\n \"duration\": 0.6\n }\n }\n },\n \"typography_hierarchy\": {\n \"hero_title\": {\n \"size_range\": [72, 96],\n \"weight\": \"bold\",\n \"line_height\": 1.1,\n \"letter_spacing\": -0.02\n },\n \"section_title\": {\n \"size_range\": [54, 72],\n \"weight\": \"semibold\",\n \"line_height\": 1.2,\n \"letter_spacing\": -0.01\n },\n \"slide_title\": {\n \"size_range\": [44, 54],\n \"weight\": \"semibold\",\n \"line_height\": 1.3,\n \"letter_spacing\": 0\n },\n \"body_large\": {\n \"size_range\": [32, 36],\n \"weight\": \"regular\",\n \"line_height\": 1.4,\n \"letter_spacing\": 0\n },\n \"body\": {\n \"size_range\": [24, 28],\n \"weight\": \"regular\",\n \"line_height\": 1.5,\n \"letter_spacing\": 0\n },\n \"caption\": {\n \"size_range\": [18, 20],\n \"weight\": \"light\",\n \"line_height\": 1.6,\n \"letter_spacing\": 0.01\n }\n },\n \"best_practices\": {\n \"color_usage\": {\n \"max_colors_per_slide\": 4,\n \"contrast_ratio_text\": 4.5,\n \"accent_usage\": \"Highlights, CTAs, data points only\",\n \"background_rule\": \"Always high contrast with text\"\n },\n \"typography\": {\n \"max_font_families\": 2,\n \"max_font_sizes_per_deck\": 4,\n \"title_max_lines\": 2,\n \"body_max_lines\": 6,\n \"bullet_max_items\": 5\n },\n \"spacing\": {\n \"min_margin_from_edge\": 80,\n \"title_to_content_gap\": 60,\n \"between_elements\": 40,\n \"bullet_spacing\": 24\n },\n \"images\": {\n \"min_resolution\": \"1920x1080\",\n \"preferred_resolution\": \"3840x2160\",\n \"aspect_ratio\": \"16:9\",\n \"overlay_opacity\": 0.2,\n \"quality\": \"High (>85%)\"\n }\n }\n}\n","content_type":"application/json; charset=utf-8","language":"json","size":9311,"content_sha256":"0a396527975726d7cd64d9189c7a77c716b3e3a87c6d749fe9deb6e68679fa35"}],"content_json":{"type":"doc","content":[{"type":"heading","attrs":{"level":1},"content":[{"text":"Elite PowerPoint Designer","type":"text"}]},{"type":"paragraph","content":[{"text":"Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Core Design Philosophy","type":"text"}]},{"type":"paragraph","content":[{"text":"Principles:","type":"text","marks":[{"type":"strong"}]}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Minimalism First","type":"text","marks":[{"type":"strong"}]},{"text":" - Remove everything that doesn't serve a clear purpose","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Bold & Clear","type":"text","marks":[{"type":"strong"}]},{"text":" - Large typography, high contrast, confident colors","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Visual Hierarchy","type":"text","marks":[{"type":"strong"}]},{"text":" - Guide attention through size, color, and spacing","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Consistent Branding","type":"text","marks":[{"type":"strong"}]},{"text":" - Every element follows the design system","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Purposeful Motion","type":"text","marks":[{"type":"strong"}]},{"text":" - Animations only where they add clarity or emphasis","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"When to Use This Skill","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"User requests a \"professional presentation\" or \"pitch deck\"","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Converting markdown or text to PowerPoint","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"User mentions \"world-class,\" \"high-quality,\" or \"brand-level\" design","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Creating presentations for business, sales, product launches, or keynotes","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"User wants \"Apple/Microsoft/Google style\" presentations","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Request includes terms: slides, deck, presentation, PowerPoint, PPTX","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Design System & Brand Styles","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Available Brand Styles","type":"text"}]},{"type":"paragraph","content":[{"text":"1. Tech Keynote (Apple/Tesla Style)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Colors","type":"text","marks":[{"type":"strong"}]},{"text":": Deep blacks (#000000), whites (#FFFFFF), accent blue (#0071E3)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Typography","type":"text","marks":[{"type":"strong"}]},{"text":": SF Pro Display (title 72-96pt), SF Pro Text (body 32-44pt)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Layout","type":"text","marks":[{"type":"strong"}]},{"text":": Extreme whitespace, single focal point per slide","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Transitions","type":"text","marks":[{"type":"strong"}]},{"text":": Push, Fade (duration: 0.6s)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Style","type":"text","marks":[{"type":"strong"}]},{"text":": Minimalist, premium, product-focused","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"2. Corporate Professional (Microsoft/IBM Style)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Colors","type":"text","marks":[{"type":"strong"}]},{"text":": Navy (#003366), steel blue (#0078D4), warm gray (#F3F2F1)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Typography","type":"text","marks":[{"type":"strong"}]},{"text":": Segoe UI (title 54-72pt), body (24-32pt)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Layout","type":"text","marks":[{"type":"strong"}]},{"text":": Balanced, grid-based, data-friendly","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Transitions","type":"text","marks":[{"type":"strong"}]},{"text":": Morph, Fade (duration: 0.8s)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Style","type":"text","marks":[{"type":"strong"}]},{"text":": Trustworthy, data-driven, enterprise-ready","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"3. Creative Bold (Google/Airbnb Style)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Colors","type":"text","marks":[{"type":"strong"}]},{"text":": Bright primaries, gradients, bold combinations","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Typography","type":"text","marks":[{"type":"strong"}]},{"text":": Product Sans or Montserrat (title 64-84pt)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Layout","type":"text","marks":[{"type":"strong"}]},{"text":": Dynamic, asymmetric, playful spacing","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Transitions","type":"text","marks":[{"type":"strong"}]},{"text":": Zoom, Reveal (duration: 0.5s)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Style","type":"text","marks":[{"type":"strong"}]},{"text":": Energetic, innovative, design-forward","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"4. Financial Elite (Goldman Sachs/McKinsey Style)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Colors","type":"text","marks":[{"type":"strong"}]},{"text":": Charcoal (#2C3E50), gold accent (#D4AF37), white","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Typography","type":"text","marks":[{"type":"strong"}]},{"text":": Garamond or Georgia (serif, elegant)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Layout","type":"text","marks":[{"type":"strong"}]},{"text":": Traditional hierarchy, centered, balanced","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Transitions","type":"text","marks":[{"type":"strong"}]},{"text":": Subtle Fade only (duration: 0.4s)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Style","type":"text","marks":[{"type":"strong"}]},{"text":": Sophisticated, authoritative, premium","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"5. Startup Pitch (Y Combinator/500 Startups Style)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Colors","type":"text","marks":[{"type":"strong"}]},{"text":": High contrast black/white with brand accent","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Typography","type":"text","marks":[{"type":"strong"}]},{"text":": Inter or Roboto (modern sans-serif)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Layout","type":"text","marks":[{"type":"strong"}]},{"text":": Problem-solution focused, metric-heavy","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Transitions","type":"text","marks":[{"type":"strong"}]},{"text":": Quick Push (duration: 0.3s)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Style","type":"text","marks":[{"type":"strong"}]},{"text":": Energetic, data-driven, founder-friendly","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Workflow Process","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 1: Analyze Content & Select Style","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"python"},"content":[{"text":"python scripts/analyze_content.py input.md","type":"text"}]},{"type":"paragraph","content":[{"text":"Analysis considers:","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Content type (business, creative, technical, financial)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Audience (executives, investors, customers, technical)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Tone indicators in content (formal, energetic, innovative)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Explicit style requests in frontmatter","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Auto-selects brand style","type":"text","marks":[{"type":"strong"}]},{"text":" or asks user:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Tech Keynote for product launches, demos","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Corporate Professional for business reports, proposals","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Creative Bold for marketing, design showcases","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Financial Elite for investor decks, financial reports","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Startup Pitch for fundraising, accelerator demos","type":"text"}]}]}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 2: Parse Content & Map to Templates","type":"text"}]},{"type":"paragraph","content":[{"text":"Slide Type Detection:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"# Title → title_slide (hero treatment)\n## Section → chapter_intro (section divider)\n### Main Points → key_message_slide (1-3 key points)\n* Bullets → bullet_hierarchy_slide (visual bullets)\n> Quote → quote_slide (large, impactful)\n![image] → full_bleed_image (immersive)\n| table | → data_visualization (auto-chart if numeric)\n---metrics--- → metrics_dashboard (KPI showcase)","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 3: Apply Design System","type":"text"}]},{"type":"paragraph","content":[{"text":"Typography Hierarchy:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"Hero Title: 72-96pt, Bold, 1.1x line height\nSection Title: 54-72pt, Semibold, 1.2x line height\nSlide Title: 44-54pt, Semibold, 1.3x line height\nBody Large: 32-36pt, Regular, 1.4x line height\nBody: 24-28pt, Regular, 1.5x line height\nCaption: 18-20pt, Light, 1.6x line height","type":"text"}]},{"type":"paragraph","content":[{"text":"Spacing System:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"Gutter: 100-120px from edges\nTitle margin-bottom: 60-80px\nSection spacing: 40-60px\nParagraph spacing: 24-32px\nBullet indent: 40px\nElement padding: 20-30px","type":"text"}]},{"type":"paragraph","content":[{"text":"Color Application:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"Background: Brand background (usually white/black)\nPrimary: Titles, key elements, CTAs\nSecondary: Subtitles, secondary text\nAccent: Highlights, data points, emphasis\nText: 95% opacity for readability","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 4: Intelligent Template Selection","type":"text"}]},{"type":"paragraph","content":[{"text":"Use Office-PowerPoint-MCP-Server's 25+ templates with intelligent mapping:","type":"text"}]},{"type":"paragraph","content":[{"text":"Content Type → Template","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":""},"content":[{"text":"Opening/Closing → title_slide, thank_you_slide\nNew Section → chapter_intro\nKey Points (1-3) → key_metrics_dashboard\nComparison → before_after_comparison, chart_comparison\nProcess → process_flow, timeline_slide\nTeam → team_introduction\nData → data_table_slide, chart layouts\nMixed Content → two_column_text, three_column_layout\nFull Image → full_image_slide\nQuote/Testimonial → quote_testimonial","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 5: Apply Professional Polish","type":"text"}]},{"type":"paragraph","content":[{"text":"Transitions & Animations:","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Slide Transitions","type":"text","marks":[{"type":"strong"}]},{"text":": 1-2 types max per deck, matching brand style","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Duration","type":"text","marks":[{"type":"strong"}]},{"text":": 0.3s (fast), 0.6s (medium), 0.8s (slow) based on brand","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Entrance Animations","type":"text","marks":[{"type":"strong"}]},{"text":": Fade In for text (0.4s), optional Wipe for images","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Emphasis","type":"text","marks":[{"type":"strong"}]},{"text":": Pulse on key numbers/metrics (once, subtle)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Exit","type":"text","marks":[{"type":"strong"}]},{"text":": Fade Out only (0.3s)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Rule","type":"text","marks":[{"type":"strong"}]},{"text":": Never more than 3 animated elements per slide","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Visual Effects:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":"python"},"content":[{"text":"# Apply to all text boxes\nshadow = {\n \"distance\": 2,\n \"angle\": 135,\n \"blur\": 4,\n \"transparency\": 60%\n}\n\n# Apply to images\noverlay = {\n \"gradient\": \"linear\",\n \"opacity\": 20% # for text readability\n}","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 6: Consistency Validation","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"python"},"content":[{"text":"python scripts/validate_consistency.py output.pptx","type":"text"}]},{"type":"paragraph","content":[{"text":"Checks:","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Font consistency (max 2 font families)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Color palette adherence (all colors from design system)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Spacing consistency (margins, gutters, padding)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Template usage (appropriate for content)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Animation timing (within brand guidelines)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Image quality (minimum 1920x1080)","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Template Mapping Reference","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"High-Impact Opening","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"# Your Big Idea\n## Transforming the Future of X\n\n→ title_slide\n- Title: 96pt, brand primary\n- Subtitle: 36pt, brand secondary\n- Background: Gradient or solid brand color\n- Animation: Fade in title (0.8s), then subtitle (0.6s)","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Key Message (The \"One Thing\")","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"### 94% Customer Satisfaction\nOur users love the new experience\n\n→ key_metrics_dashboard (single metric variation)\n- Metric: 144pt, center, brand accent\n- Context: 28pt, below metric\n- Background: Clean, minimal\n- Animation: Count up number (1.2s)","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Problem/Solution","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"## The Challenge\nCurrent systems are slow and complex\n\n## Our Solution\nFast, simple, and intuitive\n\n→ before_after_comparison\n- Split screen: left (problem) vs right (solution)\n- Visual contrast: muted left, bright right\n- Icons or images to reinforce message","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Process or Timeline","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"## Our Roadmap\n1. Q1: Foundation\n2. Q2: Growth\n3. Q3: Scale\n4. Q4: Leadership\n\n→ timeline_slide or process_flow\n- Horizontal flow with arrows\n- Color progression (light to bold)\n- Dates: 32pt, stages: 44pt","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Data Visualization","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"| Quarter | Revenue | Growth |\n|---------|---------|--------|\n| Q1 | $2.4M | 15% |\n| Q2 | $3.1M | 29% |\n\n→ Auto-convert to chart_comparison or data_table_slide\n- If trends: Line or column chart\n- If comparisons: Bar chart\n- If parts/whole: Pie chart (use sparingly)\n- Keep it simple: 1 chart per slide","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Animation & Transition Guidelines","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Professional Transition Rules","type":"text"}]},{"type":"paragraph","content":[{"text":"Tier 1: Always Safe (Use liberally)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Fade (0.6s) - Universal, elegant","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Push (0.4s) - Clean, directional","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Morph (0.8s) - PowerPoint only, sophisticated","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Tier 2: Use Sparingly (Special moments)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Zoom (0.5s) - Product reveals, before/after","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Reveal (0.6s) - Section transitions","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Wipe (0.5s) - Image-heavy decks","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Tier 3: Avoid (Unprofessional)","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Ferris Wheel, Curtains, Dissolve, Origami - Never use","type":"text"}]}]}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Animation Best Practices","type":"text"}]},{"type":"paragraph","content":[{"text":"The \"AHA!\" Moment Rule:","type":"text","marks":[{"type":"strong"}]}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Pick 1-2 critical slides per deck","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Apply single emphasis animation (Pulse, Grow)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Duration: 0.8-1.0s","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Happens once, not on loop","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Text Animation:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":"python"},"content":[{"text":"# Professional entrance\neffect = \"Fade In\"\nduration = 0.4\ndelay_between_bullets = 0.3 # If bullets, stagger","type":"text"}]},{"type":"paragraph","content":[{"text":"Image Animation:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":"python"},"content":[{"text":"# Optional for product shots or key visuals\neffect = \"Wipe\" or \"Fade In\"\nduration = 0.6\ndirection = \"From Bottom\" # Natural, like rising","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Advanced Features","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Auto-Generated Section Dividers","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"===\n# Part Two: Growth Strategy\n===\n\n→ Auto-creates chapter_intro with:\n- Full-screen background (brand gradient)\n- Large centered text (84pt)\n- Fade to black transition (1.0s)","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Smart Image Handling","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"![hero](image.jpg)\n![thumb](small.jpg) ![thumb](small2.jpg)\n\n→ Detects image size/role:\n- Large/hero: full_image_slide with overlay for text\n- Multiple: two_column or grid layout\n- Auto-crops to 16:9\n- Applies subtle gradient overlay (20%) if text present","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Metrics Auto-Emphasis","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"We achieved **94%** customer satisfaction and **$2.4M** in revenue.\n\n→ Auto-detects numbers with emphasis:\n- Extracts: 94%, $2.4M\n- Creates: key_metrics_dashboard\n- Animates: Count-up effect (1.2s)\n- Styling: Large (144pt), brand accent color","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Quality Checklist","type":"text"}]},{"type":"paragraph","content":[{"text":"Before finalizing, ensure:","type":"text"}]},{"type":"paragraph","content":[{"text":"Visual Consistency:","type":"text","marks":[{"type":"strong"}]}]},{"type":"checkbox_list","attrs":{"id":null},"content":[{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"All slides use design system colors (no random colors)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Typography follows hierarchy (no more than 4 font sizes)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Spacing is consistent (same margins, padding throughout)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Alignment is precise (everything lines up to grid)","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Content Clarity:","type":"text","marks":[{"type":"strong"}]}]},{"type":"checkbox_list","attrs":{"id":null},"content":[{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"One main idea per slide","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Titles are clear and action-oriented","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"No \"walls of text\" (max 6 lines body text)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Images are high-resolution (min 1920x1080)","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Motion & Polish:","type":"text","marks":[{"type":"strong"}]}]},{"type":"checkbox_list","attrs":{"id":null},"content":[{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Transitions are consistent (1-2 types only)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Animation duration feels natural (not too fast/slow)","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"No distracting motion (failed the \"boardroom test\")","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Emphasis animations only on critical moments","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"Brand Alignment:","type":"text","marks":[{"type":"strong"}]}]},{"type":"checkbox_list","attrs":{"id":null},"content":[{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Colors match selected brand style","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Typography matches brand style","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Layout follows brand conventions","type":"text"}]}]},{"type":"checkbox_item","attrs":{"checked":false},"content":[{"type":"paragraph","content":[{"text":"Overall aesthetic feels cohesive","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Examples","type":"text"}]},{"type":"paragraph","content":[{"text":"See ","type":"text"},{"text":"examples/","type":"text","marks":[{"type":"code_inline"}]},{"text":" folder for:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"tech-keynote-example.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" → ","type":"text"},{"text":"tech-keynote-output.pptx","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"investor-pitch-example.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" → ","type":"text"},{"text":"investor-pitch-output.pptx","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"corporate-report-example.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" → ","type":"text"},{"text":"corporate-report-output.pptx","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Requirements","type":"text"}]},{"type":"paragraph","content":[{"text":"MCP Server:","type":"text","marks":[{"type":"strong"}]},{"text":" Office-PowerPoint-MCP-Server","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"bash"},"content":[{"text":"# Install via Smithery\nnpx @smithery/cli install @gongrzhe/office-powerpoint-mcp-server\n\n# Or local setup\npip install python-pptx","type":"text"}]},{"type":"paragraph","content":[{"text":"Python Packages:","type":"text","marks":[{"type":"strong"}]}]},{"type":"code_block","attrs":{"wrap":false,"language":"bash"},"content":[{"text":"pip install python-pptx pillow pyyaml","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Tips for Best Results","type":"text"}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Start with Style","type":"text","marks":[{"type":"strong"}]},{"text":": Add frontmatter to markdown with desired brand style","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"yaml"},"content":[{"text":"---\nstyle: tech-keynote\naccent-color: \"#0071E3\"\n---","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Less is More","type":"text","marks":[{"type":"strong"}]},{"text":": Aim for 1 slide per minute of presentation time","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Image Quality Matters","type":"text","marks":[{"type":"strong"}]},{"text":": Use high-res images (min 1920x1080, prefer 4K)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Test Animations","type":"text","marks":[{"type":"strong"}]},{"text":": Preview deck to ensure transitions feel professional","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Print-Ready","type":"text","marks":[{"type":"strong"}]},{"text":": Design also works for PDF export (animations become static)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Accessibility","type":"text","marks":[{"type":"strong"}]},{"text":": Maintain 4.5:1 contrast ratio for text readability","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Troubleshooting","type":"text"}]},{"type":"paragraph","content":[{"text":"Issue","type":"text","marks":[{"type":"strong"}]},{"text":": Colors don't match brand exactly ","type":"text"},{"text":"Solution","type":"text","marks":[{"type":"strong"}]},{"text":": Specify exact hex codes in frontmatter:","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"yaml"},"content":[{"text":"---\ncolors:\n primary: \"#003366\"\n accent: \"#0078D4\"\n background: \"#FFFFFF\"\n---","type":"text"}]},{"type":"paragraph","content":[{"text":"Issue","type":"text","marks":[{"type":"strong"}]},{"text":": Too much animation ","type":"text"},{"text":"Solution","type":"text","marks":[{"type":"strong"}]},{"text":": Set animation level in frontmatter:","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"yaml"},"content":[{"text":"---\nanimations: minimal # minimal, moderate, full\n---","type":"text"}]},{"type":"paragraph","content":[{"text":"Issue","type":"text","marks":[{"type":"strong"}]},{"text":": Slides too dense ","type":"text"},{"text":"Solution","type":"text","marks":[{"type":"strong"}]},{"text":": Follow \"6x6 rule\" - max 6 bullets, max 6 words per bullet. Claude will auto-split content if needed.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Next-Level Customization","type":"text"}]},{"type":"paragraph","content":[{"text":"Advanced users can:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Create custom brand JSON in ","type":"text"},{"text":"templates/brands/","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Define custom slide templates","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Add company logo to master slides","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Configure font embedding for portability","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"See ","type":"text"},{"text":"templates/CUSTOMIZATION.md","type":"text","marks":[{"type":"code_inline"}]},{"text":" for details.","type":"text"}]}]},"metadata":{"date":"2026-06-05","name":"elite-powerpoint-designer","author":"@skillopedia","source":{"stars":7,"repo_name":"claude-code-skills","origin_url":"https://github.com/willem4130/claude-code-skills/blob/HEAD/skills/elite-powerpoint-designer/SKILL.md","repo_owner":"willem4130","body_sha256":"08bb9ca8f5dc9ea2776375243d6a5ab1ebfc492e8fcfc44a74c8ae462465d76c","cluster_key":"5ce58bb1ab63b1e39771c6dddec7e4e499e886a2e937b203861524fa107d3c23","clean_bundle":{"format":"clean-skill-bundle-v1","source":"willem4130/claude-code-skills/skills/elite-powerpoint-designer/SKILL.md","attachments":[{"id":"0ecbebd0-7fb6-54a8-9954-6c4eee0245d3","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/0ecbebd0-7fb6-54a8-9954-6c4eee0245d3/attachment.md","path":"README.md","size":5503,"sha256":"4eb190b2900c2235ff166c9723d7208ea08030a1226b6783f0da3f9e7996e389","contentType":"text/markdown; charset=utf-8"},{"id":"0f73be7f-b21f-51c5-85e1-afc87eb09e05","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/0f73be7f-b21f-51c5-85e1-afc87eb09e05/attachment.md","path":"examples/corporate-report-example.md","size":1383,"sha256":"be91326589ddb6972e65e295b5fa084b9802d14b87dd51a46e7ef8bb09159cfc","contentType":"text/markdown; charset=utf-8"},{"id":"5443fa29-1059-59a9-8c49-af81be440000","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/5443fa29-1059-59a9-8c49-af81be440000/attachment.md","path":"examples/investor-pitch-example.md","size":1101,"sha256":"5bc00f568068bab464228523d9f644da89476bd6f05ed0064ee062cfcad8d3b6","contentType":"text/markdown; charset=utf-8"},{"id":"4e10228c-46d2-5668-8b74-cfb035e7e8b8","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/4e10228c-46d2-5668-8b74-cfb035e7e8b8/attachment.md","path":"examples/tech-keynote-example.md","size":517,"sha256":"c444cd3ec836482eddf383662afdc69fac1e0adff9e42e84bb9949885c6fd5a5","contentType":"text/markdown; charset=utf-8"},{"id":"fa003fb8-1b32-5c53-9945-394cecb322fc","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/fa003fb8-1b32-5c53-9945-394cecb322fc/attachment.py","path":"scripts/analyze_content.py","size":9089,"sha256":"1abfd682986a6d84ec5dce6105f6c318faf042ea63543bc884599c0158e537a7","contentType":"text/x-python; charset=utf-8"},{"id":"481fa3b2-87dc-59a0-8ec4-63f8f5952177","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/481fa3b2-87dc-59a0-8ec4-63f8f5952177/attachment.md","path":"templates/ANIMATION_GUIDE.md","size":10993,"sha256":"bf1b3b7d5795b5d85dc28bbf7e1539117f3ad70f93bd00e916e0d27623e92b10","contentType":"text/markdown; charset=utf-8"},{"id":"f311f92b-dba5-5a3c-aab7-c9939f97525d","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/f311f92b-dba5-5a3c-aab7-c9939f97525d/attachment.json","path":"templates/brand-styles.json","size":9311,"sha256":"0a396527975726d7cd64d9189c7a77c716b3e3a87c6d749fe9deb6e68679fa35","contentType":"application/json; charset=utf-8"}],"bundle_sha256":"6f101b57e3366e059f9c8abaf6c1bb47ad5509c13e46522784dd90894592f3fd","attachment_count":7,"text_attachments":7,"attachment_storage":"skillopedia-attachments-v1","binary_attachments":0,"excluded_attachments":[]},"cluster_size":1,"skill_md_path":"skills/elite-powerpoint-designer/SKILL.md","import_metadata":{"date":"2026-06-05","author":"@skillopedia","version":"v1","category":"documents-office","category_label":"Documents"},"exact_dupes_collapsed_into_this":0},"version":"v1","category":"documents-office","import_tag":"clean-skills-v1","description":"Create world-class PowerPoint presentations with professional design, consistent branding, sophisticated animations, and polished visual hierarchy. Use when users request presentations, slide decks, pitches, reports, or want to convert markdown to professionally designed PowerPoint with Apple/Microsoft/Google-level quality."}},"renderedAt":1782981535834}

Elite PowerPoint Designer Transform content into world-class presentations with the design quality of Apple keynotes, Microsoft product launches, and Google I/O. This skill applies 2024-2025 presentation design trends and brand-level consistency to create stunning, professional slide decks. Core Design Philosophy Principles: 1. Minimalism First - Remove everything that doesn't serve a clear purpose 2. Bold & Clear - Large typography, high contrast, confident colors 3. Visual Hierarchy - Guide attention through size, color, and spacing 4. Consistent Branding - Every element follows the design…