[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-slide-making-skill":3,"mdc-rzr8mo-key":36,"related-repo-minimax-slide-making-skill":4325,"related-org-minimax-slide-making-skill":4449},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"slide-making-skill","implement PowerPoint slides with PptxGenJS","Implement single-slide PowerPoint pages with PptxGenJS. Use when writing or fixing slide JS files: dimensions, positioning, text\u002Fimage\u002Fchart APIs, styling rules, and export expectations for native .pptx output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"minimax","MiniMax","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fminimax.jpg","MiniMax-AI",[13,17,20,23],{"name":14,"slug":15,"type":16},"Presentations","presentations","tag",{"name":18,"slug":19,"type":16},"PowerPoint","powerpoint",{"name":21,"slug":22,"type":16},"Creative","creative",{"name":24,"slug":25,"type":16},"JavaScript","javascript",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:17:09.127126",null,1118,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fpptx-plugin\u002Fskills\u002Fslide-making-skill","---\nname: slide-making-skill\ndescription: \"Implement single-slide PowerPoint pages with PptxGenJS. Use when writing or fixing slide JS files: dimensions, positioning, text\u002Fimage\u002Fchart APIs, styling rules, and export expectations for native .pptx output.\"\n---\n\n# PptxGenJS Slide Making Skill\n\nThis skill teaches how to generate native .pptx slides using PptxGenJS (JavaScript).\n\n## PptxGenJS Reference\n\n**Read [pptxgenjs.md](pptxgenjs.md) for the complete PptxGenJS API reference**, including:\n- Setup & basic structure\n- Text & formatting\n- Lists & bullets\n- Shapes & shadows\n- Images & icons\n- Slide backgrounds\n- Tables & charts\n\n---\n\n## Font Rules\n\n### Font Family Standards\n\n| Language | Default | Alternatives |\n|----------|---------|--------------|\n| **Chinese** | Microsoft YaHei (微软雅黑) | — |\n| **English** | Arial | Georgia, Calibri, Cambria, Trebuchet MS |\n\n```javascript\nfontFace: \"Microsoft YaHei\"  \u002F\u002F Chinese text\nfontFace: \"Arial\"            \u002F\u002F English text (or approved alternative)\n```\n\nUse system-safe fonts for cross-platform compatibility. Header\u002Fbody can use different fonts (e.g., Georgia + Calibri).\n\n### No Bold for Body Text\n\n**Plain body text and caption\u002Flegend text must NOT use bold.**\n\n- Body paragraphs, descriptions → normal weight\n- Captions, legends, footnotes → normal weight\n- Reserve bold for titles and headings only\n\n```javascript\n\u002F\u002F ✅ Correct\nslide.addText(\"Main Title\", { bold: true, fontSize: 36, fontFace: \"Arial\" });\nslide.addText(\"Body text here.\", { bold: false, fontSize: 14, fontFace: \"Arial\" });\n\n\u002F\u002F ❌ Wrong\nslide.addText(\"Body text here.\", { bold: true, fontSize: 14 });\n```\n\n---\n\n## Color Palette Rules (MANDATORY)\n\n### Strict Palette Adherence\n\n**Use ONLY the provided color palette. Do NOT create or modify colors.**\n\n- All colors must come from the user-provided palette\n- Do NOT use colors outside the palette\n- Do NOT modify palette colors (brightness, saturation, mixing)\n- **Only exception**: Add transparency using the `transparency` property (0-100)\n\n```javascript\n\u002F\u002F ✅ Correct: Using palette colors\nslide.addShape(pres.shapes.RECTANGLE, { fill: { color: theme.primary } });\nslide.addText(\"Title\", { color: theme.accent });\n\n\u002F\u002F ❌ Wrong: Colors outside palette\nslide.addShape(pres.shapes.RECTANGLE, { fill: { color: \"1a1a2e\" } });\n```\n\n### No Gradients\n\n**Gradients are prohibited. Use solid colors only.**\n\n```javascript\n\u002F\u002F ✅ Correct: Solid colors\nslide.background = { color: theme.bg };\n\n\u002F\u002F ✅ Correct: Solid + transparency for overlay\nslide.addShape(pres.shapes.RECTANGLE, { fill: { color: theme.accent, transparency: 50 } });\n```\n\n### No Animations\n\n**Animations and transitions are prohibited.** All slides must be static.\n\n---\n\n## Page Number Badge (REQUIRED)\n\nAll slides **except Cover Page** MUST include a page number badge in the bottom-right corner.\n\n- **Position**: x: 9.3\", y: 5.1\"\n- Show current number only (e.g. `3` or `03`), NOT \"3\u002F12\"\n- Use palette colors, keep subtle\n\n### Circle Badge (Default)\n\n```javascript\nslide.addShape(pres.shapes.OVAL, {\n  x: 9.3, y: 5.1, w: 0.4, h: 0.4,\n  fill: { color: theme.accent }\n});\nslide.addText(\"3\", {\n  x: 9.3, y: 5.1, w: 0.4, h: 0.4,\n  fontSize: 12, fontFace: \"Arial\",\n  color: \"FFFFFF\", bold: true,\n  align: \"center\", valign: \"middle\"\n});\n```\n\n### Pill Badge\n\n```javascript\nslide.addShape(pres.shapes.ROUNDED_RECTANGLE, {\n  x: 9.1, y: 5.15, w: 0.6, h: 0.35,\n  fill: { color: theme.accent },\n  rectRadius: 0.15\n});\nslide.addText(\"03\", {\n  x: 9.1, y: 5.15, w: 0.6, h: 0.35,\n  fontSize: 11, fontFace: \"Arial\",\n  color: \"FFFFFF\", bold: true,\n  align: \"center\", valign: \"middle\"\n});\n```\n\n---\n\n## Theme Object Contract (MANDATORY)\n\nThe compile script passes a theme object with these **exact keys**:\n\n| Key | Purpose | Example |\n|-----|---------|---------|\n| `theme.primary` | Darkest color, titles | `\"22223b\"` |\n| `theme.secondary` | Dark accent, body text | `\"4a4e69\"` |\n| `theme.accent` | Mid-tone accent | `\"9a8c98\"` |\n| `theme.light` | Light accent | `\"c9ada7\"` |\n| `theme.bg` | Background color | `\"f2e9e4\"` |\n\n**NEVER use other key names** like `background`, `text`, `muted`, `darkest`, `lightest`.\n\n---\n\n## Subagent Output Format\n\nEach subagent outputs a **complete, runnable JS file**:\n\n```javascript\n\u002F\u002F slide-01.js\nconst pptxgen = require(\"pptxgenjs\");\n\nconst slideConfig = {\n  type: 'cover',\n  index: 1,\n  title: 'Presentation Title'\n};\n\n\u002F\u002F ⚠️ MUST be synchronous (not async)\nfunction createSlide(pres, theme) {\n  const slide = pres.addSlide();\n  slide.background = { color: theme.bg };\n\n  slide.addText(slideConfig.title, {\n    x: 0.5, y: 2, w: 9, h: 1.2,\n    fontSize: 48, fontFace: \"Arial\",  \u002F\u002F English text uses Arial\n    color: theme.primary, bold: true, align: \"center\"\n  });\n\n  return slide;\n}\n\n\u002F\u002F Standalone preview - use slide-specific filename (slide-XX-preview.pptx)\nif (require.main === module) {\n  const pres = new pptxgen();\n  pres.layout = 'LAYOUT_16x9';\n  const theme = {\n    primary: \"22223b\",\n    secondary: \"4a4e69\",\n    accent: \"9a8c98\",\n    light: \"c9ada7\",\n    bg: \"f2e9e4\"\n  };\n  createSlide(pres, theme);\n  \u002F\u002F Replace XX with actual slide index (01, 02, etc.) to avoid conflicts\n  pres.writeFile({ fileName: \"slide-01-preview.pptx\" });\n}\n\nmodule.exports = { createSlide, slideConfig };\n```\n\n---\n\n## Critical Pitfalls\n\n### NEVER use async\u002Fawait in createSlide()\n\n```javascript\n\u002F\u002F ❌ WRONG - compile.js won't await\nasync function createSlide(pres, theme) { ... }\n\n\u002F\u002F ✅ CORRECT\nfunction createSlide(pres, theme) { ... }\n```\n\n### NEVER use \"#\" with hex colors\n\n```javascript\ncolor: \"FF0000\"      \u002F\u002F ✅ CORRECT\ncolor: \"#FF0000\"     \u002F\u002F ❌ CORRUPTS FILE\n```\n\n### NEVER encode opacity in hex strings\n\n```javascript\nshadow: { color: \"00000020\" }              \u002F\u002F ❌ CORRUPTS FILE\nshadow: { color: \"000000\", opacity: 0.12 } \u002F\u002F ✅ CORRECT\n```\n\n### Prevent text wrapping in titles\n\n```javascript\n\u002F\u002F ✅ Use fit:'shrink' for long titles\nslide.addText(\"Long Title Here\", {\n  x: 0.5, y: 2, w: 9, h: 1,\n  fontSize: 48, fit: \"shrink\"\n});\n```\n\n---\n\n## Quick Reference\n\n- **Dimensions**: 10\" × 5.625\" (LAYOUT_16x9)\n- **Colors**: 6-char hex without # (e.g., `\"FF0000\"`)\n- **English font**: Arial (default), or approved alternatives\n- **Chinese font**: Microsoft YaHei\n- **Page badge position**: x: 9.3\", y: 5.1\"\n\n---\n\n## QA (Required)\n\n**Assume there are problems. Your job is to find them.**\n\nYour first render is almost never correct. Approach QA as a bug hunt, not a confirmation step. If you found zero issues on first inspection, you weren't looking hard enough.\n\n### Content QA\n\n```bash\npython -m markitdown slide-XX-preview.pptx\n```\n\nCheck for missing content, typos, wrong order.\n\n**Check for leftover placeholder text:**\n\n```bash\npython -m markitdown slide-XX-preview.pptx | grep -iE \"xxxx|lorem|ipsum|placeholder\"\n```\n\nIf grep returns results, fix them before declaring success.\n\n### Verification Loop\n\n1. Generate slide → Extract text with `python -m markitdown slide-XX-preview.pptx` → Review content\n2. **List issues found** (if none found, look again more critically)\n3. Fix issues\n4. **Re-verify** — one fix often creates another problem\n5. Repeat until verification reveals no new issues\n\n**Do not declare success until you've completed at least one fix-and-verify cycle.**\n\n---\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,56,63,82,122,126,132,139,214,294,299,305,313,331,675,678,684,690,698,734,1029,1035,1043,1234,1240,1250,1253,1259,1271,1310,1316,1766,1772,2222,2225,2231,2242,2399,2444,2447,2453,2464,3537,3540,3546,3552,3676,3682,3748,3754,3870,3876,4054,4057,4063,4122,4125,4131,4139,4144,4150,4182,4187,4195,4250,4255,4261,4308,4316,4319],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"pptxgenjs-slide-making-skill",[47],{"type":48,"value":49},"text","PptxGenJS Slide Making Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"This skill teaches how to generate native .pptx slides using PptxGenJS (JavaScript).",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"pptxgenjs-reference",[61],{"type":48,"value":62},"PptxGenJS Reference",{"type":42,"tag":51,"props":64,"children":65},{},[66,80],{"type":42,"tag":67,"props":68,"children":69},"strong",{},[70,72,78],{"type":48,"value":71},"Read ",{"type":42,"tag":73,"props":74,"children":76},"a",{"href":75},"pptxgenjs.md",[77],{"type":48,"value":75},{"type":48,"value":79}," for the complete PptxGenJS API reference",{"type":48,"value":81},", including:",{"type":42,"tag":83,"props":84,"children":85},"ul",{},[86,92,97,102,107,112,117],{"type":42,"tag":87,"props":88,"children":89},"li",{},[90],{"type":48,"value":91},"Setup & basic structure",{"type":42,"tag":87,"props":93,"children":94},{},[95],{"type":48,"value":96},"Text & formatting",{"type":42,"tag":87,"props":98,"children":99},{},[100],{"type":48,"value":101},"Lists & bullets",{"type":42,"tag":87,"props":103,"children":104},{},[105],{"type":48,"value":106},"Shapes & shadows",{"type":42,"tag":87,"props":108,"children":109},{},[110],{"type":48,"value":111},"Images & icons",{"type":42,"tag":87,"props":113,"children":114},{},[115],{"type":48,"value":116},"Slide backgrounds",{"type":42,"tag":87,"props":118,"children":119},{},[120],{"type":48,"value":121},"Tables & charts",{"type":42,"tag":123,"props":124,"children":125},"hr",{},[],{"type":42,"tag":57,"props":127,"children":129},{"id":128},"font-rules",[130],{"type":48,"value":131},"Font Rules",{"type":42,"tag":133,"props":134,"children":136},"h3",{"id":135},"font-family-standards",[137],{"type":48,"value":138},"Font Family Standards",{"type":42,"tag":140,"props":141,"children":142},"table",{},[143,167],{"type":42,"tag":144,"props":145,"children":146},"thead",{},[147],{"type":42,"tag":148,"props":149,"children":150},"tr",{},[151,157,162],{"type":42,"tag":152,"props":153,"children":154},"th",{},[155],{"type":48,"value":156},"Language",{"type":42,"tag":152,"props":158,"children":159},{},[160],{"type":48,"value":161},"Default",{"type":42,"tag":152,"props":163,"children":164},{},[165],{"type":48,"value":166},"Alternatives",{"type":42,"tag":168,"props":169,"children":170},"tbody",{},[171,193],{"type":42,"tag":148,"props":172,"children":173},{},[174,183,188],{"type":42,"tag":175,"props":176,"children":177},"td",{},[178],{"type":42,"tag":67,"props":179,"children":180},{},[181],{"type":48,"value":182},"Chinese",{"type":42,"tag":175,"props":184,"children":185},{},[186],{"type":48,"value":187},"Microsoft YaHei (微软雅黑)",{"type":42,"tag":175,"props":189,"children":190},{},[191],{"type":48,"value":192},"—",{"type":42,"tag":148,"props":194,"children":195},{},[196,204,209],{"type":42,"tag":175,"props":197,"children":198},{},[199],{"type":42,"tag":67,"props":200,"children":201},{},[202],{"type":48,"value":203},"English",{"type":42,"tag":175,"props":205,"children":206},{},[207],{"type":48,"value":208},"Arial",{"type":42,"tag":175,"props":210,"children":211},{},[212],{"type":48,"value":213},"Georgia, Calibri, Cambria, Trebuchet MS",{"type":42,"tag":215,"props":216,"children":220},"pre",{"className":217,"code":218,"language":25,"meta":219,"style":219},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","fontFace: \"Microsoft YaHei\"  \u002F\u002F Chinese text\nfontFace: \"Arial\"            \u002F\u002F English text (or approved alternative)\n","",[221],{"type":42,"tag":222,"props":223,"children":224},"code",{"__ignoreMap":219},[225,265],{"type":42,"tag":226,"props":227,"children":230},"span",{"class":228,"line":229},"line",1,[231,237,243,248,254,259],{"type":42,"tag":226,"props":232,"children":234},{"style":233},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[235],{"type":48,"value":236},"fontFace",{"type":42,"tag":226,"props":238,"children":240},{"style":239},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[241],{"type":48,"value":242},":",{"type":42,"tag":226,"props":244,"children":245},{"style":239},[246],{"type":48,"value":247}," \"",{"type":42,"tag":226,"props":249,"children":251},{"style":250},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[252],{"type":48,"value":253},"Microsoft YaHei",{"type":42,"tag":226,"props":255,"children":256},{"style":239},[257],{"type":48,"value":258},"\"",{"type":42,"tag":226,"props":260,"children":262},{"style":261},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[263],{"type":48,"value":264},"  \u002F\u002F Chinese text\n",{"type":42,"tag":226,"props":266,"children":268},{"class":228,"line":267},2,[269,273,277,281,285,289],{"type":42,"tag":226,"props":270,"children":271},{"style":233},[272],{"type":48,"value":236},{"type":42,"tag":226,"props":274,"children":275},{"style":239},[276],{"type":48,"value":242},{"type":42,"tag":226,"props":278,"children":279},{"style":239},[280],{"type":48,"value":247},{"type":42,"tag":226,"props":282,"children":283},{"style":250},[284],{"type":48,"value":208},{"type":42,"tag":226,"props":286,"children":287},{"style":239},[288],{"type":48,"value":258},{"type":42,"tag":226,"props":290,"children":291},{"style":261},[292],{"type":48,"value":293},"            \u002F\u002F English text (or approved alternative)\n",{"type":42,"tag":51,"props":295,"children":296},{},[297],{"type":48,"value":298},"Use system-safe fonts for cross-platform compatibility. Header\u002Fbody can use different fonts (e.g., Georgia + Calibri).",{"type":42,"tag":133,"props":300,"children":302},{"id":301},"no-bold-for-body-text",[303],{"type":48,"value":304},"No Bold for Body Text",{"type":42,"tag":51,"props":306,"children":307},{},[308],{"type":42,"tag":67,"props":309,"children":310},{},[311],{"type":48,"value":312},"Plain body text and caption\u002Flegend text must NOT use bold.",{"type":42,"tag":83,"props":314,"children":315},{},[316,321,326],{"type":42,"tag":87,"props":317,"children":318},{},[319],{"type":48,"value":320},"Body paragraphs, descriptions → normal weight",{"type":42,"tag":87,"props":322,"children":323},{},[324],{"type":48,"value":325},"Captions, legends, footnotes → normal weight",{"type":42,"tag":87,"props":327,"children":328},{},[329],{"type":48,"value":330},"Reserve bold for titles and headings only",{"type":42,"tag":215,"props":332,"children":334},{"className":217,"code":333,"language":25,"meta":219,"style":219},"\u002F\u002F ✅ Correct\nslide.addText(\"Main Title\", { bold: true, fontSize: 36, fontFace: \"Arial\" });\nslide.addText(\"Body text here.\", { bold: false, fontSize: 14, fontFace: \"Arial\" });\n\n\u002F\u002F ❌ Wrong\nslide.addText(\"Body text here.\", { bold: true, fontSize: 14 });\n",[335],{"type":42,"tag":222,"props":336,"children":337},{"__ignoreMap":219},[338,346,469,576,586,595],{"type":42,"tag":226,"props":339,"children":340},{"class":228,"line":229},[341],{"type":42,"tag":226,"props":342,"children":343},{"style":261},[344],{"type":48,"value":345},"\u002F\u002F ✅ Correct\n",{"type":42,"tag":226,"props":347,"children":348},{"class":228,"line":267},[349,355,360,366,371,375,380,384,389,394,400,404,410,414,419,423,429,433,438,442,446,450,454,459,464],{"type":42,"tag":226,"props":350,"children":352},{"style":351},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[353],{"type":48,"value":354},"slide",{"type":42,"tag":226,"props":356,"children":357},{"style":239},[358],{"type":48,"value":359},".",{"type":42,"tag":226,"props":361,"children":363},{"style":362},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[364],{"type":48,"value":365},"addText",{"type":42,"tag":226,"props":367,"children":368},{"style":351},[369],{"type":48,"value":370},"(",{"type":42,"tag":226,"props":372,"children":373},{"style":239},[374],{"type":48,"value":258},{"type":42,"tag":226,"props":376,"children":377},{"style":250},[378],{"type":48,"value":379},"Main Title",{"type":42,"tag":226,"props":381,"children":382},{"style":239},[383],{"type":48,"value":258},{"type":42,"tag":226,"props":385,"children":386},{"style":239},[387],{"type":48,"value":388},",",{"type":42,"tag":226,"props":390,"children":391},{"style":239},[392],{"type":48,"value":393}," {",{"type":42,"tag":226,"props":395,"children":397},{"style":396},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[398],{"type":48,"value":399}," bold",{"type":42,"tag":226,"props":401,"children":402},{"style":239},[403],{"type":48,"value":242},{"type":42,"tag":226,"props":405,"children":407},{"style":406},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[408],{"type":48,"value":409}," true",{"type":42,"tag":226,"props":411,"children":412},{"style":239},[413],{"type":48,"value":388},{"type":42,"tag":226,"props":415,"children":416},{"style":396},[417],{"type":48,"value":418}," fontSize",{"type":42,"tag":226,"props":420,"children":421},{"style":239},[422],{"type":48,"value":242},{"type":42,"tag":226,"props":424,"children":426},{"style":425},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[427],{"type":48,"value":428}," 36",{"type":42,"tag":226,"props":430,"children":431},{"style":239},[432],{"type":48,"value":388},{"type":42,"tag":226,"props":434,"children":435},{"style":396},[436],{"type":48,"value":437}," fontFace",{"type":42,"tag":226,"props":439,"children":440},{"style":239},[441],{"type":48,"value":242},{"type":42,"tag":226,"props":443,"children":444},{"style":239},[445],{"type":48,"value":247},{"type":42,"tag":226,"props":447,"children":448},{"style":250},[449],{"type":48,"value":208},{"type":42,"tag":226,"props":451,"children":452},{"style":239},[453],{"type":48,"value":258},{"type":42,"tag":226,"props":455,"children":456},{"style":239},[457],{"type":48,"value":458}," }",{"type":42,"tag":226,"props":460,"children":461},{"style":351},[462],{"type":48,"value":463},")",{"type":42,"tag":226,"props":465,"children":466},{"style":239},[467],{"type":48,"value":468},";\n",{"type":42,"tag":226,"props":470,"children":472},{"class":228,"line":471},3,[473,477,481,485,489,493,498,502,506,510,514,518,523,527,531,535,540,544,548,552,556,560,564,568,572],{"type":42,"tag":226,"props":474,"children":475},{"style":351},[476],{"type":48,"value":354},{"type":42,"tag":226,"props":478,"children":479},{"style":239},[480],{"type":48,"value":359},{"type":42,"tag":226,"props":482,"children":483},{"style":362},[484],{"type":48,"value":365},{"type":42,"tag":226,"props":486,"children":487},{"style":351},[488],{"type":48,"value":370},{"type":42,"tag":226,"props":490,"children":491},{"style":239},[492],{"type":48,"value":258},{"type":42,"tag":226,"props":494,"children":495},{"style":250},[496],{"type":48,"value":497},"Body text here.",{"type":42,"tag":226,"props":499,"children":500},{"style":239},[501],{"type":48,"value":258},{"type":42,"tag":226,"props":503,"children":504},{"style":239},[505],{"type":48,"value":388},{"type":42,"tag":226,"props":507,"children":508},{"style":239},[509],{"type":48,"value":393},{"type":42,"tag":226,"props":511,"children":512},{"style":396},[513],{"type":48,"value":399},{"type":42,"tag":226,"props":515,"children":516},{"style":239},[517],{"type":48,"value":242},{"type":42,"tag":226,"props":519,"children":520},{"style":406},[521],{"type":48,"value":522}," false",{"type":42,"tag":226,"props":524,"children":525},{"style":239},[526],{"type":48,"value":388},{"type":42,"tag":226,"props":528,"children":529},{"style":396},[530],{"type":48,"value":418},{"type":42,"tag":226,"props":532,"children":533},{"style":239},[534],{"type":48,"value":242},{"type":42,"tag":226,"props":536,"children":537},{"style":425},[538],{"type":48,"value":539}," 14",{"type":42,"tag":226,"props":541,"children":542},{"style":239},[543],{"type":48,"value":388},{"type":42,"tag":226,"props":545,"children":546},{"style":396},[547],{"type":48,"value":437},{"type":42,"tag":226,"props":549,"children":550},{"style":239},[551],{"type":48,"value":242},{"type":42,"tag":226,"props":553,"children":554},{"style":239},[555],{"type":48,"value":247},{"type":42,"tag":226,"props":557,"children":558},{"style":250},[559],{"type":48,"value":208},{"type":42,"tag":226,"props":561,"children":562},{"style":239},[563],{"type":48,"value":258},{"type":42,"tag":226,"props":565,"children":566},{"style":239},[567],{"type":48,"value":458},{"type":42,"tag":226,"props":569,"children":570},{"style":351},[571],{"type":48,"value":463},{"type":42,"tag":226,"props":573,"children":574},{"style":239},[575],{"type":48,"value":468},{"type":42,"tag":226,"props":577,"children":579},{"class":228,"line":578},4,[580],{"type":42,"tag":226,"props":581,"children":583},{"emptyLinePlaceholder":582},true,[584],{"type":48,"value":585},"\n",{"type":42,"tag":226,"props":587,"children":589},{"class":228,"line":588},5,[590],{"type":42,"tag":226,"props":591,"children":592},{"style":261},[593],{"type":48,"value":594},"\u002F\u002F ❌ Wrong\n",{"type":42,"tag":226,"props":596,"children":598},{"class":228,"line":597},6,[599,603,607,611,615,619,623,627,631,635,639,643,647,651,655,659,663,667,671],{"type":42,"tag":226,"props":600,"children":601},{"style":351},[602],{"type":48,"value":354},{"type":42,"tag":226,"props":604,"children":605},{"style":239},[606],{"type":48,"value":359},{"type":42,"tag":226,"props":608,"children":609},{"style":362},[610],{"type":48,"value":365},{"type":42,"tag":226,"props":612,"children":613},{"style":351},[614],{"type":48,"value":370},{"type":42,"tag":226,"props":616,"children":617},{"style":239},[618],{"type":48,"value":258},{"type":42,"tag":226,"props":620,"children":621},{"style":250},[622],{"type":48,"value":497},{"type":42,"tag":226,"props":624,"children":625},{"style":239},[626],{"type":48,"value":258},{"type":42,"tag":226,"props":628,"children":629},{"style":239},[630],{"type":48,"value":388},{"type":42,"tag":226,"props":632,"children":633},{"style":239},[634],{"type":48,"value":393},{"type":42,"tag":226,"props":636,"children":637},{"style":396},[638],{"type":48,"value":399},{"type":42,"tag":226,"props":640,"children":641},{"style":239},[642],{"type":48,"value":242},{"type":42,"tag":226,"props":644,"children":645},{"style":406},[646],{"type":48,"value":409},{"type":42,"tag":226,"props":648,"children":649},{"style":239},[650],{"type":48,"value":388},{"type":42,"tag":226,"props":652,"children":653},{"style":396},[654],{"type":48,"value":418},{"type":42,"tag":226,"props":656,"children":657},{"style":239},[658],{"type":48,"value":242},{"type":42,"tag":226,"props":660,"children":661},{"style":425},[662],{"type":48,"value":539},{"type":42,"tag":226,"props":664,"children":665},{"style":239},[666],{"type":48,"value":458},{"type":42,"tag":226,"props":668,"children":669},{"style":351},[670],{"type":48,"value":463},{"type":42,"tag":226,"props":672,"children":673},{"style":239},[674],{"type":48,"value":468},{"type":42,"tag":123,"props":676,"children":677},{},[],{"type":42,"tag":57,"props":679,"children":681},{"id":680},"color-palette-rules-mandatory",[682],{"type":48,"value":683},"Color Palette Rules (MANDATORY)",{"type":42,"tag":133,"props":685,"children":687},{"id":686},"strict-palette-adherence",[688],{"type":48,"value":689},"Strict Palette Adherence",{"type":42,"tag":51,"props":691,"children":692},{},[693],{"type":42,"tag":67,"props":694,"children":695},{},[696],{"type":48,"value":697},"Use ONLY the provided color palette. Do NOT create or modify colors.",{"type":42,"tag":83,"props":699,"children":700},{},[701,706,711,716],{"type":42,"tag":87,"props":702,"children":703},{},[704],{"type":48,"value":705},"All colors must come from the user-provided palette",{"type":42,"tag":87,"props":707,"children":708},{},[709],{"type":48,"value":710},"Do NOT use colors outside the palette",{"type":42,"tag":87,"props":712,"children":713},{},[714],{"type":48,"value":715},"Do NOT modify palette colors (brightness, saturation, mixing)",{"type":42,"tag":87,"props":717,"children":718},{},[719,724,726,732],{"type":42,"tag":67,"props":720,"children":721},{},[722],{"type":48,"value":723},"Only exception",{"type":48,"value":725},": Add transparency using the ",{"type":42,"tag":222,"props":727,"children":729},{"className":728},[],[730],{"type":48,"value":731},"transparency",{"type":48,"value":733}," property (0-100)",{"type":42,"tag":215,"props":735,"children":737},{"className":217,"code":736,"language":25,"meta":219,"style":219},"\u002F\u002F ✅ Correct: Using palette colors\nslide.addShape(pres.shapes.RECTANGLE, { fill: { color: theme.primary } });\nslide.addText(\"Title\", { color: theme.accent });\n\n\u002F\u002F ❌ Wrong: Colors outside palette\nslide.addShape(pres.shapes.RECTANGLE, { fill: { color: \"1a1a2e\" } });\n",[738],{"type":42,"tag":222,"props":739,"children":740},{"__ignoreMap":219},[741,749,849,922,929,937],{"type":42,"tag":226,"props":742,"children":743},{"class":228,"line":229},[744],{"type":42,"tag":226,"props":745,"children":746},{"style":261},[747],{"type":48,"value":748},"\u002F\u002F ✅ Correct: Using palette colors\n",{"type":42,"tag":226,"props":750,"children":751},{"class":228,"line":267},[752,756,760,765,770,774,779,783,788,792,796,801,805,809,814,818,823,827,832,837,841,845],{"type":42,"tag":226,"props":753,"children":754},{"style":351},[755],{"type":48,"value":354},{"type":42,"tag":226,"props":757,"children":758},{"style":239},[759],{"type":48,"value":359},{"type":42,"tag":226,"props":761,"children":762},{"style":362},[763],{"type":48,"value":764},"addShape",{"type":42,"tag":226,"props":766,"children":767},{"style":351},[768],{"type":48,"value":769},"(pres",{"type":42,"tag":226,"props":771,"children":772},{"style":239},[773],{"type":48,"value":359},{"type":42,"tag":226,"props":775,"children":776},{"style":351},[777],{"type":48,"value":778},"shapes",{"type":42,"tag":226,"props":780,"children":781},{"style":239},[782],{"type":48,"value":359},{"type":42,"tag":226,"props":784,"children":785},{"style":351},[786],{"type":48,"value":787},"RECTANGLE",{"type":42,"tag":226,"props":789,"children":790},{"style":239},[791],{"type":48,"value":388},{"type":42,"tag":226,"props":793,"children":794},{"style":239},[795],{"type":48,"value":393},{"type":42,"tag":226,"props":797,"children":798},{"style":396},[799],{"type":48,"value":800}," fill",{"type":42,"tag":226,"props":802,"children":803},{"style":239},[804],{"type":48,"value":242},{"type":42,"tag":226,"props":806,"children":807},{"style":239},[808],{"type":48,"value":393},{"type":42,"tag":226,"props":810,"children":811},{"style":396},[812],{"type":48,"value":813}," color",{"type":42,"tag":226,"props":815,"children":816},{"style":239},[817],{"type":48,"value":242},{"type":42,"tag":226,"props":819,"children":820},{"style":351},[821],{"type":48,"value":822}," theme",{"type":42,"tag":226,"props":824,"children":825},{"style":239},[826],{"type":48,"value":359},{"type":42,"tag":226,"props":828,"children":829},{"style":351},[830],{"type":48,"value":831},"primary ",{"type":42,"tag":226,"props":833,"children":834},{"style":239},[835],{"type":48,"value":836},"}",{"type":42,"tag":226,"props":838,"children":839},{"style":239},[840],{"type":48,"value":458},{"type":42,"tag":226,"props":842,"children":843},{"style":351},[844],{"type":48,"value":463},{"type":42,"tag":226,"props":846,"children":847},{"style":239},[848],{"type":48,"value":468},{"type":42,"tag":226,"props":850,"children":851},{"class":228,"line":471},[852,856,860,864,868,872,877,881,885,889,893,897,901,905,910,914,918],{"type":42,"tag":226,"props":853,"children":854},{"style":351},[855],{"type":48,"value":354},{"type":42,"tag":226,"props":857,"children":858},{"style":239},[859],{"type":48,"value":359},{"type":42,"tag":226,"props":861,"children":862},{"style":362},[863],{"type":48,"value":365},{"type":42,"tag":226,"props":865,"children":866},{"style":351},[867],{"type":48,"value":370},{"type":42,"tag":226,"props":869,"children":870},{"style":239},[871],{"type":48,"value":258},{"type":42,"tag":226,"props":873,"children":874},{"style":250},[875],{"type":48,"value":876},"Title",{"type":42,"tag":226,"props":878,"children":879},{"style":239},[880],{"type":48,"value":258},{"type":42,"tag":226,"props":882,"children":883},{"style":239},[884],{"type":48,"value":388},{"type":42,"tag":226,"props":886,"children":887},{"style":239},[888],{"type":48,"value":393},{"type":42,"tag":226,"props":890,"children":891},{"style":396},[892],{"type":48,"value":813},{"type":42,"tag":226,"props":894,"children":895},{"style":239},[896],{"type":48,"value":242},{"type":42,"tag":226,"props":898,"children":899},{"style":351},[900],{"type":48,"value":822},{"type":42,"tag":226,"props":902,"children":903},{"style":239},[904],{"type":48,"value":359},{"type":42,"tag":226,"props":906,"children":907},{"style":351},[908],{"type":48,"value":909},"accent ",{"type":42,"tag":226,"props":911,"children":912},{"style":239},[913],{"type":48,"value":836},{"type":42,"tag":226,"props":915,"children":916},{"style":351},[917],{"type":48,"value":463},{"type":42,"tag":226,"props":919,"children":920},{"style":239},[921],{"type":48,"value":468},{"type":42,"tag":226,"props":923,"children":924},{"class":228,"line":578},[925],{"type":42,"tag":226,"props":926,"children":927},{"emptyLinePlaceholder":582},[928],{"type":48,"value":585},{"type":42,"tag":226,"props":930,"children":931},{"class":228,"line":588},[932],{"type":42,"tag":226,"props":933,"children":934},{"style":261},[935],{"type":48,"value":936},"\u002F\u002F ❌ Wrong: Colors outside palette\n",{"type":42,"tag":226,"props":938,"children":939},{"class":228,"line":597},[940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1009,1013,1017,1021,1025],{"type":42,"tag":226,"props":941,"children":942},{"style":351},[943],{"type":48,"value":354},{"type":42,"tag":226,"props":945,"children":946},{"style":239},[947],{"type":48,"value":359},{"type":42,"tag":226,"props":949,"children":950},{"style":362},[951],{"type":48,"value":764},{"type":42,"tag":226,"props":953,"children":954},{"style":351},[955],{"type":48,"value":769},{"type":42,"tag":226,"props":957,"children":958},{"style":239},[959],{"type":48,"value":359},{"type":42,"tag":226,"props":961,"children":962},{"style":351},[963],{"type":48,"value":778},{"type":42,"tag":226,"props":965,"children":966},{"style":239},[967],{"type":48,"value":359},{"type":42,"tag":226,"props":969,"children":970},{"style":351},[971],{"type":48,"value":787},{"type":42,"tag":226,"props":973,"children":974},{"style":239},[975],{"type":48,"value":388},{"type":42,"tag":226,"props":977,"children":978},{"style":239},[979],{"type":48,"value":393},{"type":42,"tag":226,"props":981,"children":982},{"style":396},[983],{"type":48,"value":800},{"type":42,"tag":226,"props":985,"children":986},{"style":239},[987],{"type":48,"value":242},{"type":42,"tag":226,"props":989,"children":990},{"style":239},[991],{"type":48,"value":393},{"type":42,"tag":226,"props":993,"children":994},{"style":396},[995],{"type":48,"value":813},{"type":42,"tag":226,"props":997,"children":998},{"style":239},[999],{"type":48,"value":242},{"type":42,"tag":226,"props":1001,"children":1002},{"style":239},[1003],{"type":48,"value":247},{"type":42,"tag":226,"props":1005,"children":1006},{"style":250},[1007],{"type":48,"value":1008},"1a1a2e",{"type":42,"tag":226,"props":1010,"children":1011},{"style":239},[1012],{"type":48,"value":258},{"type":42,"tag":226,"props":1014,"children":1015},{"style":239},[1016],{"type":48,"value":458},{"type":42,"tag":226,"props":1018,"children":1019},{"style":239},[1020],{"type":48,"value":458},{"type":42,"tag":226,"props":1022,"children":1023},{"style":351},[1024],{"type":48,"value":463},{"type":42,"tag":226,"props":1026,"children":1027},{"style":239},[1028],{"type":48,"value":468},{"type":42,"tag":133,"props":1030,"children":1032},{"id":1031},"no-gradients",[1033],{"type":48,"value":1034},"No Gradients",{"type":42,"tag":51,"props":1036,"children":1037},{},[1038],{"type":42,"tag":67,"props":1039,"children":1040},{},[1041],{"type":48,"value":1042},"Gradients are prohibited. Use solid colors only.",{"type":42,"tag":215,"props":1044,"children":1046},{"className":217,"code":1045,"language":25,"meta":219,"style":219},"\u002F\u002F ✅ Correct: Solid colors\nslide.background = { color: theme.bg };\n\n\u002F\u002F ✅ Correct: Solid + transparency for overlay\nslide.addShape(pres.shapes.RECTANGLE, { fill: { color: theme.accent, transparency: 50 } });\n",[1047],{"type":42,"tag":222,"props":1048,"children":1049},{"__ignoreMap":219},[1050,1058,1109,1116,1124],{"type":42,"tag":226,"props":1051,"children":1052},{"class":228,"line":229},[1053],{"type":42,"tag":226,"props":1054,"children":1055},{"style":261},[1056],{"type":48,"value":1057},"\u002F\u002F ✅ Correct: Solid colors\n",{"type":42,"tag":226,"props":1059,"children":1060},{"class":228,"line":267},[1061,1065,1069,1074,1079,1083,1087,1091,1095,1099,1104],{"type":42,"tag":226,"props":1062,"children":1063},{"style":351},[1064],{"type":48,"value":354},{"type":42,"tag":226,"props":1066,"children":1067},{"style":239},[1068],{"type":48,"value":359},{"type":42,"tag":226,"props":1070,"children":1071},{"style":351},[1072],{"type":48,"value":1073},"background ",{"type":42,"tag":226,"props":1075,"children":1076},{"style":239},[1077],{"type":48,"value":1078},"=",{"type":42,"tag":226,"props":1080,"children":1081},{"style":239},[1082],{"type":48,"value":393},{"type":42,"tag":226,"props":1084,"children":1085},{"style":396},[1086],{"type":48,"value":813},{"type":42,"tag":226,"props":1088,"children":1089},{"style":239},[1090],{"type":48,"value":242},{"type":42,"tag":226,"props":1092,"children":1093},{"style":351},[1094],{"type":48,"value":822},{"type":42,"tag":226,"props":1096,"children":1097},{"style":239},[1098],{"type":48,"value":359},{"type":42,"tag":226,"props":1100,"children":1101},{"style":351},[1102],{"type":48,"value":1103},"bg ",{"type":42,"tag":226,"props":1105,"children":1106},{"style":239},[1107],{"type":48,"value":1108},"};\n",{"type":42,"tag":226,"props":1110,"children":1111},{"class":228,"line":471},[1112],{"type":42,"tag":226,"props":1113,"children":1114},{"emptyLinePlaceholder":582},[1115],{"type":48,"value":585},{"type":42,"tag":226,"props":1117,"children":1118},{"class":228,"line":578},[1119],{"type":42,"tag":226,"props":1120,"children":1121},{"style":261},[1122],{"type":48,"value":1123},"\u002F\u002F ✅ Correct: Solid + transparency for overlay\n",{"type":42,"tag":226,"props":1125,"children":1126},{"class":228,"line":588},[1127,1131,1135,1139,1143,1147,1151,1155,1159,1163,1167,1171,1175,1179,1183,1187,1191,1195,1200,1204,1209,1213,1218,1222,1226,1230],{"type":42,"tag":226,"props":1128,"children":1129},{"style":351},[1130],{"type":48,"value":354},{"type":42,"tag":226,"props":1132,"children":1133},{"style":239},[1134],{"type":48,"value":359},{"type":42,"tag":226,"props":1136,"children":1137},{"style":362},[1138],{"type":48,"value":764},{"type":42,"tag":226,"props":1140,"children":1141},{"style":351},[1142],{"type":48,"value":769},{"type":42,"tag":226,"props":1144,"children":1145},{"style":239},[1146],{"type":48,"value":359},{"type":42,"tag":226,"props":1148,"children":1149},{"style":351},[1150],{"type":48,"value":778},{"type":42,"tag":226,"props":1152,"children":1153},{"style":239},[1154],{"type":48,"value":359},{"type":42,"tag":226,"props":1156,"children":1157},{"style":351},[1158],{"type":48,"value":787},{"type":42,"tag":226,"props":1160,"children":1161},{"style":239},[1162],{"type":48,"value":388},{"type":42,"tag":226,"props":1164,"children":1165},{"style":239},[1166],{"type":48,"value":393},{"type":42,"tag":226,"props":1168,"children":1169},{"style":396},[1170],{"type":48,"value":800},{"type":42,"tag":226,"props":1172,"children":1173},{"style":239},[1174],{"type":48,"value":242},{"type":42,"tag":226,"props":1176,"children":1177},{"style":239},[1178],{"type":48,"value":393},{"type":42,"tag":226,"props":1180,"children":1181},{"style":396},[1182],{"type":48,"value":813},{"type":42,"tag":226,"props":1184,"children":1185},{"style":239},[1186],{"type":48,"value":242},{"type":42,"tag":226,"props":1188,"children":1189},{"style":351},[1190],{"type":48,"value":822},{"type":42,"tag":226,"props":1192,"children":1193},{"style":239},[1194],{"type":48,"value":359},{"type":42,"tag":226,"props":1196,"children":1197},{"style":351},[1198],{"type":48,"value":1199},"accent",{"type":42,"tag":226,"props":1201,"children":1202},{"style":239},[1203],{"type":48,"value":388},{"type":42,"tag":226,"props":1205,"children":1206},{"style":396},[1207],{"type":48,"value":1208}," transparency",{"type":42,"tag":226,"props":1210,"children":1211},{"style":239},[1212],{"type":48,"value":242},{"type":42,"tag":226,"props":1214,"children":1215},{"style":425},[1216],{"type":48,"value":1217}," 50",{"type":42,"tag":226,"props":1219,"children":1220},{"style":239},[1221],{"type":48,"value":458},{"type":42,"tag":226,"props":1223,"children":1224},{"style":239},[1225],{"type":48,"value":458},{"type":42,"tag":226,"props":1227,"children":1228},{"style":351},[1229],{"type":48,"value":463},{"type":42,"tag":226,"props":1231,"children":1232},{"style":239},[1233],{"type":48,"value":468},{"type":42,"tag":133,"props":1235,"children":1237},{"id":1236},"no-animations",[1238],{"type":48,"value":1239},"No Animations",{"type":42,"tag":51,"props":1241,"children":1242},{},[1243,1248],{"type":42,"tag":67,"props":1244,"children":1245},{},[1246],{"type":48,"value":1247},"Animations and transitions are prohibited.",{"type":48,"value":1249}," All slides must be static.",{"type":42,"tag":123,"props":1251,"children":1252},{},[],{"type":42,"tag":57,"props":1254,"children":1256},{"id":1255},"page-number-badge-required",[1257],{"type":48,"value":1258},"Page Number Badge (REQUIRED)",{"type":42,"tag":51,"props":1260,"children":1261},{},[1262,1264,1269],{"type":48,"value":1263},"All slides ",{"type":42,"tag":67,"props":1265,"children":1266},{},[1267],{"type":48,"value":1268},"except Cover Page",{"type":48,"value":1270}," MUST include a page number badge in the bottom-right corner.",{"type":42,"tag":83,"props":1272,"children":1273},{},[1274,1284,1305],{"type":42,"tag":87,"props":1275,"children":1276},{},[1277,1282],{"type":42,"tag":67,"props":1278,"children":1279},{},[1280],{"type":48,"value":1281},"Position",{"type":48,"value":1283},": x: 9.3\", y: 5.1\"",{"type":42,"tag":87,"props":1285,"children":1286},{},[1287,1289,1295,1297,1303],{"type":48,"value":1288},"Show current number only (e.g. ",{"type":42,"tag":222,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":48,"value":1294},"3",{"type":48,"value":1296}," or ",{"type":42,"tag":222,"props":1298,"children":1300},{"className":1299},[],[1301],{"type":48,"value":1302},"03",{"type":48,"value":1304},"), NOT \"3\u002F12\"",{"type":42,"tag":87,"props":1306,"children":1307},{},[1308],{"type":48,"value":1309},"Use palette colors, keep subtle",{"type":42,"tag":133,"props":1311,"children":1313},{"id":1312},"circle-badge-default",[1314],{"type":48,"value":1315},"Circle Badge (Default)",{"type":42,"tag":215,"props":1317,"children":1319},{"className":217,"code":1318,"language":25,"meta":219,"style":219},"slide.addShape(pres.shapes.OVAL, {\n  x: 9.3, y: 5.1, w: 0.4, h: 0.4,\n  fill: { color: theme.accent }\n});\nslide.addText(\"3\", {\n  x: 9.3, y: 5.1, w: 0.4, h: 0.4,\n  fontSize: 12, fontFace: \"Arial\",\n  color: \"FFFFFF\", bold: true,\n  align: \"center\", valign: \"middle\"\n});\n",[1320],{"type":42,"tag":222,"props":1321,"children":1322},{"__ignoreMap":219},[1323,1368,1443,1484,1499,1538,1605,1651,1697,1750],{"type":42,"tag":226,"props":1324,"children":1325},{"class":228,"line":229},[1326,1330,1334,1338,1342,1346,1350,1354,1359,1363],{"type":42,"tag":226,"props":1327,"children":1328},{"style":351},[1329],{"type":48,"value":354},{"type":42,"tag":226,"props":1331,"children":1332},{"style":239},[1333],{"type":48,"value":359},{"type":42,"tag":226,"props":1335,"children":1336},{"style":362},[1337],{"type":48,"value":764},{"type":42,"tag":226,"props":1339,"children":1340},{"style":351},[1341],{"type":48,"value":769},{"type":42,"tag":226,"props":1343,"children":1344},{"style":239},[1345],{"type":48,"value":359},{"type":42,"tag":226,"props":1347,"children":1348},{"style":351},[1349],{"type":48,"value":778},{"type":42,"tag":226,"props":1351,"children":1352},{"style":239},[1353],{"type":48,"value":359},{"type":42,"tag":226,"props":1355,"children":1356},{"style":351},[1357],{"type":48,"value":1358},"OVAL",{"type":42,"tag":226,"props":1360,"children":1361},{"style":239},[1362],{"type":48,"value":388},{"type":42,"tag":226,"props":1364,"children":1365},{"style":239},[1366],{"type":48,"value":1367}," {\n",{"type":42,"tag":226,"props":1369,"children":1370},{"class":228,"line":267},[1371,1376,1380,1385,1389,1394,1398,1403,1407,1412,1416,1421,1425,1430,1434,1438],{"type":42,"tag":226,"props":1372,"children":1373},{"style":396},[1374],{"type":48,"value":1375},"  x",{"type":42,"tag":226,"props":1377,"children":1378},{"style":239},[1379],{"type":48,"value":242},{"type":42,"tag":226,"props":1381,"children":1382},{"style":425},[1383],{"type":48,"value":1384}," 9.3",{"type":42,"tag":226,"props":1386,"children":1387},{"style":239},[1388],{"type":48,"value":388},{"type":42,"tag":226,"props":1390,"children":1391},{"style":396},[1392],{"type":48,"value":1393}," y",{"type":42,"tag":226,"props":1395,"children":1396},{"style":239},[1397],{"type":48,"value":242},{"type":42,"tag":226,"props":1399,"children":1400},{"style":425},[1401],{"type":48,"value":1402}," 5.1",{"type":42,"tag":226,"props":1404,"children":1405},{"style":239},[1406],{"type":48,"value":388},{"type":42,"tag":226,"props":1408,"children":1409},{"style":396},[1410],{"type":48,"value":1411}," w",{"type":42,"tag":226,"props":1413,"children":1414},{"style":239},[1415],{"type":48,"value":242},{"type":42,"tag":226,"props":1417,"children":1418},{"style":425},[1419],{"type":48,"value":1420}," 0.4",{"type":42,"tag":226,"props":1422,"children":1423},{"style":239},[1424],{"type":48,"value":388},{"type":42,"tag":226,"props":1426,"children":1427},{"style":396},[1428],{"type":48,"value":1429}," h",{"type":42,"tag":226,"props":1431,"children":1432},{"style":239},[1433],{"type":48,"value":242},{"type":42,"tag":226,"props":1435,"children":1436},{"style":425},[1437],{"type":48,"value":1420},{"type":42,"tag":226,"props":1439,"children":1440},{"style":239},[1441],{"type":48,"value":1442},",\n",{"type":42,"tag":226,"props":1444,"children":1445},{"class":228,"line":471},[1446,1451,1455,1459,1463,1467,1471,1475,1479],{"type":42,"tag":226,"props":1447,"children":1448},{"style":396},[1449],{"type":48,"value":1450},"  fill",{"type":42,"tag":226,"props":1452,"children":1453},{"style":239},[1454],{"type":48,"value":242},{"type":42,"tag":226,"props":1456,"children":1457},{"style":239},[1458],{"type":48,"value":393},{"type":42,"tag":226,"props":1460,"children":1461},{"style":396},[1462],{"type":48,"value":813},{"type":42,"tag":226,"props":1464,"children":1465},{"style":239},[1466],{"type":48,"value":242},{"type":42,"tag":226,"props":1468,"children":1469},{"style":351},[1470],{"type":48,"value":822},{"type":42,"tag":226,"props":1472,"children":1473},{"style":239},[1474],{"type":48,"value":359},{"type":42,"tag":226,"props":1476,"children":1477},{"style":351},[1478],{"type":48,"value":909},{"type":42,"tag":226,"props":1480,"children":1481},{"style":239},[1482],{"type":48,"value":1483},"}\n",{"type":42,"tag":226,"props":1485,"children":1486},{"class":228,"line":578},[1487,1491,1495],{"type":42,"tag":226,"props":1488,"children":1489},{"style":239},[1490],{"type":48,"value":836},{"type":42,"tag":226,"props":1492,"children":1493},{"style":351},[1494],{"type":48,"value":463},{"type":42,"tag":226,"props":1496,"children":1497},{"style":239},[1498],{"type":48,"value":468},{"type":42,"tag":226,"props":1500,"children":1501},{"class":228,"line":588},[1502,1506,1510,1514,1518,1522,1526,1530,1534],{"type":42,"tag":226,"props":1503,"children":1504},{"style":351},[1505],{"type":48,"value":354},{"type":42,"tag":226,"props":1507,"children":1508},{"style":239},[1509],{"type":48,"value":359},{"type":42,"tag":226,"props":1511,"children":1512},{"style":362},[1513],{"type":48,"value":365},{"type":42,"tag":226,"props":1515,"children":1516},{"style":351},[1517],{"type":48,"value":370},{"type":42,"tag":226,"props":1519,"children":1520},{"style":239},[1521],{"type":48,"value":258},{"type":42,"tag":226,"props":1523,"children":1524},{"style":250},[1525],{"type":48,"value":1294},{"type":42,"tag":226,"props":1527,"children":1528},{"style":239},[1529],{"type":48,"value":258},{"type":42,"tag":226,"props":1531,"children":1532},{"style":239},[1533],{"type":48,"value":388},{"type":42,"tag":226,"props":1535,"children":1536},{"style":239},[1537],{"type":48,"value":1367},{"type":42,"tag":226,"props":1539,"children":1540},{"class":228,"line":597},[1541,1545,1549,1553,1557,1561,1565,1569,1573,1577,1581,1585,1589,1593,1597,1601],{"type":42,"tag":226,"props":1542,"children":1543},{"style":396},[1544],{"type":48,"value":1375},{"type":42,"tag":226,"props":1546,"children":1547},{"style":239},[1548],{"type":48,"value":242},{"type":42,"tag":226,"props":1550,"children":1551},{"style":425},[1552],{"type":48,"value":1384},{"type":42,"tag":226,"props":1554,"children":1555},{"style":239},[1556],{"type":48,"value":388},{"type":42,"tag":226,"props":1558,"children":1559},{"style":396},[1560],{"type":48,"value":1393},{"type":42,"tag":226,"props":1562,"children":1563},{"style":239},[1564],{"type":48,"value":242},{"type":42,"tag":226,"props":1566,"children":1567},{"style":425},[1568],{"type":48,"value":1402},{"type":42,"tag":226,"props":1570,"children":1571},{"style":239},[1572],{"type":48,"value":388},{"type":42,"tag":226,"props":1574,"children":1575},{"style":396},[1576],{"type":48,"value":1411},{"type":42,"tag":226,"props":1578,"children":1579},{"style":239},[1580],{"type":48,"value":242},{"type":42,"tag":226,"props":1582,"children":1583},{"style":425},[1584],{"type":48,"value":1420},{"type":42,"tag":226,"props":1586,"children":1587},{"style":239},[1588],{"type":48,"value":388},{"type":42,"tag":226,"props":1590,"children":1591},{"style":396},[1592],{"type":48,"value":1429},{"type":42,"tag":226,"props":1594,"children":1595},{"style":239},[1596],{"type":48,"value":242},{"type":42,"tag":226,"props":1598,"children":1599},{"style":425},[1600],{"type":48,"value":1420},{"type":42,"tag":226,"props":1602,"children":1603},{"style":239},[1604],{"type":48,"value":1442},{"type":42,"tag":226,"props":1606,"children":1608},{"class":228,"line":1607},7,[1609,1614,1618,1623,1627,1631,1635,1639,1643,1647],{"type":42,"tag":226,"props":1610,"children":1611},{"style":396},[1612],{"type":48,"value":1613},"  fontSize",{"type":42,"tag":226,"props":1615,"children":1616},{"style":239},[1617],{"type":48,"value":242},{"type":42,"tag":226,"props":1619,"children":1620},{"style":425},[1621],{"type":48,"value":1622}," 12",{"type":42,"tag":226,"props":1624,"children":1625},{"style":239},[1626],{"type":48,"value":388},{"type":42,"tag":226,"props":1628,"children":1629},{"style":396},[1630],{"type":48,"value":437},{"type":42,"tag":226,"props":1632,"children":1633},{"style":239},[1634],{"type":48,"value":242},{"type":42,"tag":226,"props":1636,"children":1637},{"style":239},[1638],{"type":48,"value":247},{"type":42,"tag":226,"props":1640,"children":1641},{"style":250},[1642],{"type":48,"value":208},{"type":42,"tag":226,"props":1644,"children":1645},{"style":239},[1646],{"type":48,"value":258},{"type":42,"tag":226,"props":1648,"children":1649},{"style":239},[1650],{"type":48,"value":1442},{"type":42,"tag":226,"props":1652,"children":1654},{"class":228,"line":1653},8,[1655,1660,1664,1668,1673,1677,1681,1685,1689,1693],{"type":42,"tag":226,"props":1656,"children":1657},{"style":396},[1658],{"type":48,"value":1659},"  color",{"type":42,"tag":226,"props":1661,"children":1662},{"style":239},[1663],{"type":48,"value":242},{"type":42,"tag":226,"props":1665,"children":1666},{"style":239},[1667],{"type":48,"value":247},{"type":42,"tag":226,"props":1669,"children":1670},{"style":250},[1671],{"type":48,"value":1672},"FFFFFF",{"type":42,"tag":226,"props":1674,"children":1675},{"style":239},[1676],{"type":48,"value":258},{"type":42,"tag":226,"props":1678,"children":1679},{"style":239},[1680],{"type":48,"value":388},{"type":42,"tag":226,"props":1682,"children":1683},{"style":396},[1684],{"type":48,"value":399},{"type":42,"tag":226,"props":1686,"children":1687},{"style":239},[1688],{"type":48,"value":242},{"type":42,"tag":226,"props":1690,"children":1691},{"style":406},[1692],{"type":48,"value":409},{"type":42,"tag":226,"props":1694,"children":1695},{"style":239},[1696],{"type":48,"value":1442},{"type":42,"tag":226,"props":1698,"children":1700},{"class":228,"line":1699},9,[1701,1706,1710,1714,1719,1723,1727,1732,1736,1740,1745],{"type":42,"tag":226,"props":1702,"children":1703},{"style":396},[1704],{"type":48,"value":1705},"  align",{"type":42,"tag":226,"props":1707,"children":1708},{"style":239},[1709],{"type":48,"value":242},{"type":42,"tag":226,"props":1711,"children":1712},{"style":239},[1713],{"type":48,"value":247},{"type":42,"tag":226,"props":1715,"children":1716},{"style":250},[1717],{"type":48,"value":1718},"center",{"type":42,"tag":226,"props":1720,"children":1721},{"style":239},[1722],{"type":48,"value":258},{"type":42,"tag":226,"props":1724,"children":1725},{"style":239},[1726],{"type":48,"value":388},{"type":42,"tag":226,"props":1728,"children":1729},{"style":396},[1730],{"type":48,"value":1731}," valign",{"type":42,"tag":226,"props":1733,"children":1734},{"style":239},[1735],{"type":48,"value":242},{"type":42,"tag":226,"props":1737,"children":1738},{"style":239},[1739],{"type":48,"value":247},{"type":42,"tag":226,"props":1741,"children":1742},{"style":250},[1743],{"type":48,"value":1744},"middle",{"type":42,"tag":226,"props":1746,"children":1747},{"style":239},[1748],{"type":48,"value":1749},"\"\n",{"type":42,"tag":226,"props":1751,"children":1753},{"class":228,"line":1752},10,[1754,1758,1762],{"type":42,"tag":226,"props":1755,"children":1756},{"style":239},[1757],{"type":48,"value":836},{"type":42,"tag":226,"props":1759,"children":1760},{"style":351},[1761],{"type":48,"value":463},{"type":42,"tag":226,"props":1763,"children":1764},{"style":239},[1765],{"type":48,"value":468},{"type":42,"tag":133,"props":1767,"children":1769},{"id":1768},"pill-badge",[1770],{"type":48,"value":1771},"Pill Badge",{"type":42,"tag":215,"props":1773,"children":1775},{"className":217,"code":1774,"language":25,"meta":219,"style":219},"slide.addShape(pres.shapes.ROUNDED_RECTANGLE, {\n  x: 9.1, y: 5.15, w: 0.6, h: 0.35,\n  fill: { color: theme.accent },\n  rectRadius: 0.15\n});\nslide.addText(\"03\", {\n  x: 9.1, y: 5.15, w: 0.6, h: 0.35,\n  fontSize: 11, fontFace: \"Arial\",\n  color: \"FFFFFF\", bold: true,\n  align: \"center\", valign: \"middle\"\n});\n",[1776],{"type":42,"tag":222,"props":1777,"children":1778},{"__ignoreMap":219},[1779,1823,1894,1934,1951,1966,2005,2072,2116,2159,2206],{"type":42,"tag":226,"props":1780,"children":1781},{"class":228,"line":229},[1782,1786,1790,1794,1798,1802,1806,1810,1815,1819],{"type":42,"tag":226,"props":1783,"children":1784},{"style":351},[1785],{"type":48,"value":354},{"type":42,"tag":226,"props":1787,"children":1788},{"style":239},[1789],{"type":48,"value":359},{"type":42,"tag":226,"props":1791,"children":1792},{"style":362},[1793],{"type":48,"value":764},{"type":42,"tag":226,"props":1795,"children":1796},{"style":351},[1797],{"type":48,"value":769},{"type":42,"tag":226,"props":1799,"children":1800},{"style":239},[1801],{"type":48,"value":359},{"type":42,"tag":226,"props":1803,"children":1804},{"style":351},[1805],{"type":48,"value":778},{"type":42,"tag":226,"props":1807,"children":1808},{"style":239},[1809],{"type":48,"value":359},{"type":42,"tag":226,"props":1811,"children":1812},{"style":351},[1813],{"type":48,"value":1814},"ROUNDED_RECTANGLE",{"type":42,"tag":226,"props":1816,"children":1817},{"style":239},[1818],{"type":48,"value":388},{"type":42,"tag":226,"props":1820,"children":1821},{"style":239},[1822],{"type":48,"value":1367},{"type":42,"tag":226,"props":1824,"children":1825},{"class":228,"line":267},[1826,1830,1834,1839,1843,1847,1851,1856,1860,1864,1868,1873,1877,1881,1885,1890],{"type":42,"tag":226,"props":1827,"children":1828},{"style":396},[1829],{"type":48,"value":1375},{"type":42,"tag":226,"props":1831,"children":1832},{"style":239},[1833],{"type":48,"value":242},{"type":42,"tag":226,"props":1835,"children":1836},{"style":425},[1837],{"type":48,"value":1838}," 9.1",{"type":42,"tag":226,"props":1840,"children":1841},{"style":239},[1842],{"type":48,"value":388},{"type":42,"tag":226,"props":1844,"children":1845},{"style":396},[1846],{"type":48,"value":1393},{"type":42,"tag":226,"props":1848,"children":1849},{"style":239},[1850],{"type":48,"value":242},{"type":42,"tag":226,"props":1852,"children":1853},{"style":425},[1854],{"type":48,"value":1855}," 5.15",{"type":42,"tag":226,"props":1857,"children":1858},{"style":239},[1859],{"type":48,"value":388},{"type":42,"tag":226,"props":1861,"children":1862},{"style":396},[1863],{"type":48,"value":1411},{"type":42,"tag":226,"props":1865,"children":1866},{"style":239},[1867],{"type":48,"value":242},{"type":42,"tag":226,"props":1869,"children":1870},{"style":425},[1871],{"type":48,"value":1872}," 0.6",{"type":42,"tag":226,"props":1874,"children":1875},{"style":239},[1876],{"type":48,"value":388},{"type":42,"tag":226,"props":1878,"children":1879},{"style":396},[1880],{"type":48,"value":1429},{"type":42,"tag":226,"props":1882,"children":1883},{"style":239},[1884],{"type":48,"value":242},{"type":42,"tag":226,"props":1886,"children":1887},{"style":425},[1888],{"type":48,"value":1889}," 0.35",{"type":42,"tag":226,"props":1891,"children":1892},{"style":239},[1893],{"type":48,"value":1442},{"type":42,"tag":226,"props":1895,"children":1896},{"class":228,"line":471},[1897,1901,1905,1909,1913,1917,1921,1925,1929],{"type":42,"tag":226,"props":1898,"children":1899},{"style":396},[1900],{"type":48,"value":1450},{"type":42,"tag":226,"props":1902,"children":1903},{"style":239},[1904],{"type":48,"value":242},{"type":42,"tag":226,"props":1906,"children":1907},{"style":239},[1908],{"type":48,"value":393},{"type":42,"tag":226,"props":1910,"children":1911},{"style":396},[1912],{"type":48,"value":813},{"type":42,"tag":226,"props":1914,"children":1915},{"style":239},[1916],{"type":48,"value":242},{"type":42,"tag":226,"props":1918,"children":1919},{"style":351},[1920],{"type":48,"value":822},{"type":42,"tag":226,"props":1922,"children":1923},{"style":239},[1924],{"type":48,"value":359},{"type":42,"tag":226,"props":1926,"children":1927},{"style":351},[1928],{"type":48,"value":909},{"type":42,"tag":226,"props":1930,"children":1931},{"style":239},[1932],{"type":48,"value":1933},"},\n",{"type":42,"tag":226,"props":1935,"children":1936},{"class":228,"line":578},[1937,1942,1946],{"type":42,"tag":226,"props":1938,"children":1939},{"style":396},[1940],{"type":48,"value":1941},"  rectRadius",{"type":42,"tag":226,"props":1943,"children":1944},{"style":239},[1945],{"type":48,"value":242},{"type":42,"tag":226,"props":1947,"children":1948},{"style":425},[1949],{"type":48,"value":1950}," 0.15\n",{"type":42,"tag":226,"props":1952,"children":1953},{"class":228,"line":588},[1954,1958,1962],{"type":42,"tag":226,"props":1955,"children":1956},{"style":239},[1957],{"type":48,"value":836},{"type":42,"tag":226,"props":1959,"children":1960},{"style":351},[1961],{"type":48,"value":463},{"type":42,"tag":226,"props":1963,"children":1964},{"style":239},[1965],{"type":48,"value":468},{"type":42,"tag":226,"props":1967,"children":1968},{"class":228,"line":597},[1969,1973,1977,1981,1985,1989,1993,1997,2001],{"type":42,"tag":226,"props":1970,"children":1971},{"style":351},[1972],{"type":48,"value":354},{"type":42,"tag":226,"props":1974,"children":1975},{"style":239},[1976],{"type":48,"value":359},{"type":42,"tag":226,"props":1978,"children":1979},{"style":362},[1980],{"type":48,"value":365},{"type":42,"tag":226,"props":1982,"children":1983},{"style":351},[1984],{"type":48,"value":370},{"type":42,"tag":226,"props":1986,"children":1987},{"style":239},[1988],{"type":48,"value":258},{"type":42,"tag":226,"props":1990,"children":1991},{"style":250},[1992],{"type":48,"value":1302},{"type":42,"tag":226,"props":1994,"children":1995},{"style":239},[1996],{"type":48,"value":258},{"type":42,"tag":226,"props":1998,"children":1999},{"style":239},[2000],{"type":48,"value":388},{"type":42,"tag":226,"props":2002,"children":2003},{"style":239},[2004],{"type":48,"value":1367},{"type":42,"tag":226,"props":2006,"children":2007},{"class":228,"line":1607},[2008,2012,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056,2060,2064,2068],{"type":42,"tag":226,"props":2009,"children":2010},{"style":396},[2011],{"type":48,"value":1375},{"type":42,"tag":226,"props":2013,"children":2014},{"style":239},[2015],{"type":48,"value":242},{"type":42,"tag":226,"props":2017,"children":2018},{"style":425},[2019],{"type":48,"value":1838},{"type":42,"tag":226,"props":2021,"children":2022},{"style":239},[2023],{"type":48,"value":388},{"type":42,"tag":226,"props":2025,"children":2026},{"style":396},[2027],{"type":48,"value":1393},{"type":42,"tag":226,"props":2029,"children":2030},{"style":239},[2031],{"type":48,"value":242},{"type":42,"tag":226,"props":2033,"children":2034},{"style":425},[2035],{"type":48,"value":1855},{"type":42,"tag":226,"props":2037,"children":2038},{"style":239},[2039],{"type":48,"value":388},{"type":42,"tag":226,"props":2041,"children":2042},{"style":396},[2043],{"type":48,"value":1411},{"type":42,"tag":226,"props":2045,"children":2046},{"style":239},[2047],{"type":48,"value":242},{"type":42,"tag":226,"props":2049,"children":2050},{"style":425},[2051],{"type":48,"value":1872},{"type":42,"tag":226,"props":2053,"children":2054},{"style":239},[2055],{"type":48,"value":388},{"type":42,"tag":226,"props":2057,"children":2058},{"style":396},[2059],{"type":48,"value":1429},{"type":42,"tag":226,"props":2061,"children":2062},{"style":239},[2063],{"type":48,"value":242},{"type":42,"tag":226,"props":2065,"children":2066},{"style":425},[2067],{"type":48,"value":1889},{"type":42,"tag":226,"props":2069,"children":2070},{"style":239},[2071],{"type":48,"value":1442},{"type":42,"tag":226,"props":2073,"children":2074},{"class":228,"line":1653},[2075,2079,2083,2088,2092,2096,2100,2104,2108,2112],{"type":42,"tag":226,"props":2076,"children":2077},{"style":396},[2078],{"type":48,"value":1613},{"type":42,"tag":226,"props":2080,"children":2081},{"style":239},[2082],{"type":48,"value":242},{"type":42,"tag":226,"props":2084,"children":2085},{"style":425},[2086],{"type":48,"value":2087}," 11",{"type":42,"tag":226,"props":2089,"children":2090},{"style":239},[2091],{"type":48,"value":388},{"type":42,"tag":226,"props":2093,"children":2094},{"style":396},[2095],{"type":48,"value":437},{"type":42,"tag":226,"props":2097,"children":2098},{"style":239},[2099],{"type":48,"value":242},{"type":42,"tag":226,"props":2101,"children":2102},{"style":239},[2103],{"type":48,"value":247},{"type":42,"tag":226,"props":2105,"children":2106},{"style":250},[2107],{"type":48,"value":208},{"type":42,"tag":226,"props":2109,"children":2110},{"style":239},[2111],{"type":48,"value":258},{"type":42,"tag":226,"props":2113,"children":2114},{"style":239},[2115],{"type":48,"value":1442},{"type":42,"tag":226,"props":2117,"children":2118},{"class":228,"line":1699},[2119,2123,2127,2131,2135,2139,2143,2147,2151,2155],{"type":42,"tag":226,"props":2120,"children":2121},{"style":396},[2122],{"type":48,"value":1659},{"type":42,"tag":226,"props":2124,"children":2125},{"style":239},[2126],{"type":48,"value":242},{"type":42,"tag":226,"props":2128,"children":2129},{"style":239},[2130],{"type":48,"value":247},{"type":42,"tag":226,"props":2132,"children":2133},{"style":250},[2134],{"type":48,"value":1672},{"type":42,"tag":226,"props":2136,"children":2137},{"style":239},[2138],{"type":48,"value":258},{"type":42,"tag":226,"props":2140,"children":2141},{"style":239},[2142],{"type":48,"value":388},{"type":42,"tag":226,"props":2144,"children":2145},{"style":396},[2146],{"type":48,"value":399},{"type":42,"tag":226,"props":2148,"children":2149},{"style":239},[2150],{"type":48,"value":242},{"type":42,"tag":226,"props":2152,"children":2153},{"style":406},[2154],{"type":48,"value":409},{"type":42,"tag":226,"props":2156,"children":2157},{"style":239},[2158],{"type":48,"value":1442},{"type":42,"tag":226,"props":2160,"children":2161},{"class":228,"line":1752},[2162,2166,2170,2174,2178,2182,2186,2190,2194,2198,2202],{"type":42,"tag":226,"props":2163,"children":2164},{"style":396},[2165],{"type":48,"value":1705},{"type":42,"tag":226,"props":2167,"children":2168},{"style":239},[2169],{"type":48,"value":242},{"type":42,"tag":226,"props":2171,"children":2172},{"style":239},[2173],{"type":48,"value":247},{"type":42,"tag":226,"props":2175,"children":2176},{"style":250},[2177],{"type":48,"value":1718},{"type":42,"tag":226,"props":2179,"children":2180},{"style":239},[2181],{"type":48,"value":258},{"type":42,"tag":226,"props":2183,"children":2184},{"style":239},[2185],{"type":48,"value":388},{"type":42,"tag":226,"props":2187,"children":2188},{"style":396},[2189],{"type":48,"value":1731},{"type":42,"tag":226,"props":2191,"children":2192},{"style":239},[2193],{"type":48,"value":242},{"type":42,"tag":226,"props":2195,"children":2196},{"style":239},[2197],{"type":48,"value":247},{"type":42,"tag":226,"props":2199,"children":2200},{"style":250},[2201],{"type":48,"value":1744},{"type":42,"tag":226,"props":2203,"children":2204},{"style":239},[2205],{"type":48,"value":1749},{"type":42,"tag":226,"props":2207,"children":2209},{"class":228,"line":2208},11,[2210,2214,2218],{"type":42,"tag":226,"props":2211,"children":2212},{"style":239},[2213],{"type":48,"value":836},{"type":42,"tag":226,"props":2215,"children":2216},{"style":351},[2217],{"type":48,"value":463},{"type":42,"tag":226,"props":2219,"children":2220},{"style":239},[2221],{"type":48,"value":468},{"type":42,"tag":123,"props":2223,"children":2224},{},[],{"type":42,"tag":57,"props":2226,"children":2228},{"id":2227},"theme-object-contract-mandatory",[2229],{"type":48,"value":2230},"Theme Object Contract (MANDATORY)",{"type":42,"tag":51,"props":2232,"children":2233},{},[2234,2236,2241],{"type":48,"value":2235},"The compile script passes a theme object with these ",{"type":42,"tag":67,"props":2237,"children":2238},{},[2239],{"type":48,"value":2240},"exact keys",{"type":48,"value":242},{"type":42,"tag":140,"props":2243,"children":2244},{},[2245,2266],{"type":42,"tag":144,"props":2246,"children":2247},{},[2248],{"type":42,"tag":148,"props":2249,"children":2250},{},[2251,2256,2261],{"type":42,"tag":152,"props":2252,"children":2253},{},[2254],{"type":48,"value":2255},"Key",{"type":42,"tag":152,"props":2257,"children":2258},{},[2259],{"type":48,"value":2260},"Purpose",{"type":42,"tag":152,"props":2262,"children":2263},{},[2264],{"type":48,"value":2265},"Example",{"type":42,"tag":168,"props":2267,"children":2268},{},[2269,2295,2321,2347,2373],{"type":42,"tag":148,"props":2270,"children":2271},{},[2272,2281,2286],{"type":42,"tag":175,"props":2273,"children":2274},{},[2275],{"type":42,"tag":222,"props":2276,"children":2278},{"className":2277},[],[2279],{"type":48,"value":2280},"theme.primary",{"type":42,"tag":175,"props":2282,"children":2283},{},[2284],{"type":48,"value":2285},"Darkest color, titles",{"type":42,"tag":175,"props":2287,"children":2288},{},[2289],{"type":42,"tag":222,"props":2290,"children":2292},{"className":2291},[],[2293],{"type":48,"value":2294},"\"22223b\"",{"type":42,"tag":148,"props":2296,"children":2297},{},[2298,2307,2312],{"type":42,"tag":175,"props":2299,"children":2300},{},[2301],{"type":42,"tag":222,"props":2302,"children":2304},{"className":2303},[],[2305],{"type":48,"value":2306},"theme.secondary",{"type":42,"tag":175,"props":2308,"children":2309},{},[2310],{"type":48,"value":2311},"Dark accent, body text",{"type":42,"tag":175,"props":2313,"children":2314},{},[2315],{"type":42,"tag":222,"props":2316,"children":2318},{"className":2317},[],[2319],{"type":48,"value":2320},"\"4a4e69\"",{"type":42,"tag":148,"props":2322,"children":2323},{},[2324,2333,2338],{"type":42,"tag":175,"props":2325,"children":2326},{},[2327],{"type":42,"tag":222,"props":2328,"children":2330},{"className":2329},[],[2331],{"type":48,"value":2332},"theme.accent",{"type":42,"tag":175,"props":2334,"children":2335},{},[2336],{"type":48,"value":2337},"Mid-tone accent",{"type":42,"tag":175,"props":2339,"children":2340},{},[2341],{"type":42,"tag":222,"props":2342,"children":2344},{"className":2343},[],[2345],{"type":48,"value":2346},"\"9a8c98\"",{"type":42,"tag":148,"props":2348,"children":2349},{},[2350,2359,2364],{"type":42,"tag":175,"props":2351,"children":2352},{},[2353],{"type":42,"tag":222,"props":2354,"children":2356},{"className":2355},[],[2357],{"type":48,"value":2358},"theme.light",{"type":42,"tag":175,"props":2360,"children":2361},{},[2362],{"type":48,"value":2363},"Light accent",{"type":42,"tag":175,"props":2365,"children":2366},{},[2367],{"type":42,"tag":222,"props":2368,"children":2370},{"className":2369},[],[2371],{"type":48,"value":2372},"\"c9ada7\"",{"type":42,"tag":148,"props":2374,"children":2375},{},[2376,2385,2390],{"type":42,"tag":175,"props":2377,"children":2378},{},[2379],{"type":42,"tag":222,"props":2380,"children":2382},{"className":2381},[],[2383],{"type":48,"value":2384},"theme.bg",{"type":42,"tag":175,"props":2386,"children":2387},{},[2388],{"type":48,"value":2389},"Background color",{"type":42,"tag":175,"props":2391,"children":2392},{},[2393],{"type":42,"tag":222,"props":2394,"children":2396},{"className":2395},[],[2397],{"type":48,"value":2398},"\"f2e9e4\"",{"type":42,"tag":51,"props":2400,"children":2401},{},[2402,2407,2409,2415,2417,2422,2423,2429,2430,2436,2437,2443],{"type":42,"tag":67,"props":2403,"children":2404},{},[2405],{"type":48,"value":2406},"NEVER use other key names",{"type":48,"value":2408}," like ",{"type":42,"tag":222,"props":2410,"children":2412},{"className":2411},[],[2413],{"type":48,"value":2414},"background",{"type":48,"value":2416},", ",{"type":42,"tag":222,"props":2418,"children":2420},{"className":2419},[],[2421],{"type":48,"value":48},{"type":48,"value":2416},{"type":42,"tag":222,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":48,"value":2428},"muted",{"type":48,"value":2416},{"type":42,"tag":222,"props":2431,"children":2433},{"className":2432},[],[2434],{"type":48,"value":2435},"darkest",{"type":48,"value":2416},{"type":42,"tag":222,"props":2438,"children":2440},{"className":2439},[],[2441],{"type":48,"value":2442},"lightest",{"type":48,"value":359},{"type":42,"tag":123,"props":2445,"children":2446},{},[],{"type":42,"tag":57,"props":2448,"children":2450},{"id":2449},"subagent-output-format",[2451],{"type":48,"value":2452},"Subagent Output Format",{"type":42,"tag":51,"props":2454,"children":2455},{},[2456,2458,2463],{"type":48,"value":2457},"Each subagent outputs a ",{"type":42,"tag":67,"props":2459,"children":2460},{},[2461],{"type":48,"value":2462},"complete, runnable JS file",{"type":48,"value":242},{"type":42,"tag":215,"props":2465,"children":2467},{"className":217,"code":2466,"language":25,"meta":219,"style":219},"\u002F\u002F slide-01.js\nconst pptxgen = require(\"pptxgenjs\");\n\nconst slideConfig = {\n  type: 'cover',\n  index: 1,\n  title: 'Presentation Title'\n};\n\n\u002F\u002F ⚠️ MUST be synchronous (not async)\nfunction createSlide(pres, theme) {\n  const slide = pres.addSlide();\n  slide.background = { color: theme.bg };\n\n  slide.addText(slideConfig.title, {\n    x: 0.5, y: 2, w: 9, h: 1.2,\n    fontSize: 48, fontFace: \"Arial\",  \u002F\u002F English text uses Arial\n    color: theme.primary, bold: true, align: \"center\"\n  });\n\n  return slide;\n}\n\n\u002F\u002F Standalone preview - use slide-specific filename (slide-XX-preview.pptx)\nif (require.main === module) {\n  const pres = new pptxgen();\n  pres.layout = 'LAYOUT_16x9';\n  const theme = {\n    primary: \"22223b\",\n    secondary: \"4a4e69\",\n    accent: \"9a8c98\",\n    light: \"c9ada7\",\n    bg: \"f2e9e4\"\n  };\n  createSlide(pres, theme);\n  \u002F\u002F Replace XX with actual slide index (01, 02, etc.) to avoid conflicts\n  pres.writeFile({ fileName: \"slide-01-preview.pptx\" });\n}\n\nmodule.exports = { createSlide, slideConfig };\n",[2468],{"type":42,"tag":222,"props":2469,"children":2470},{"__ignoreMap":219},[2471,2479,2527,2534,2554,2585,2606,2632,2639,2646,2654,2693,2735,2786,2794,2836,2909,2960,3027,3044,3052,3070,3078,3086,3095,3138,3172,3211,3231,3261,3291,3321,3351,3377,3386,3419,3428,3488,3496,3504],{"type":42,"tag":226,"props":2472,"children":2473},{"class":228,"line":229},[2474],{"type":42,"tag":226,"props":2475,"children":2476},{"style":261},[2477],{"type":48,"value":2478},"\u002F\u002F slide-01.js\n",{"type":42,"tag":226,"props":2480,"children":2481},{"class":228,"line":267},[2482,2488,2493,2497,2502,2506,2510,2515,2519,2523],{"type":42,"tag":226,"props":2483,"children":2485},{"style":2484},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2486],{"type":48,"value":2487},"const",{"type":42,"tag":226,"props":2489,"children":2490},{"style":351},[2491],{"type":48,"value":2492}," pptxgen ",{"type":42,"tag":226,"props":2494,"children":2495},{"style":239},[2496],{"type":48,"value":1078},{"type":42,"tag":226,"props":2498,"children":2499},{"style":362},[2500],{"type":48,"value":2501}," require",{"type":42,"tag":226,"props":2503,"children":2504},{"style":351},[2505],{"type":48,"value":370},{"type":42,"tag":226,"props":2507,"children":2508},{"style":239},[2509],{"type":48,"value":258},{"type":42,"tag":226,"props":2511,"children":2512},{"style":250},[2513],{"type":48,"value":2514},"pptxgenjs",{"type":42,"tag":226,"props":2516,"children":2517},{"style":239},[2518],{"type":48,"value":258},{"type":42,"tag":226,"props":2520,"children":2521},{"style":351},[2522],{"type":48,"value":463},{"type":42,"tag":226,"props":2524,"children":2525},{"style":239},[2526],{"type":48,"value":468},{"type":42,"tag":226,"props":2528,"children":2529},{"class":228,"line":471},[2530],{"type":42,"tag":226,"props":2531,"children":2532},{"emptyLinePlaceholder":582},[2533],{"type":48,"value":585},{"type":42,"tag":226,"props":2535,"children":2536},{"class":228,"line":578},[2537,2541,2546,2550],{"type":42,"tag":226,"props":2538,"children":2539},{"style":2484},[2540],{"type":48,"value":2487},{"type":42,"tag":226,"props":2542,"children":2543},{"style":351},[2544],{"type":48,"value":2545}," slideConfig ",{"type":42,"tag":226,"props":2547,"children":2548},{"style":239},[2549],{"type":48,"value":1078},{"type":42,"tag":226,"props":2551,"children":2552},{"style":239},[2553],{"type":48,"value":1367},{"type":42,"tag":226,"props":2555,"children":2556},{"class":228,"line":588},[2557,2562,2566,2571,2576,2581],{"type":42,"tag":226,"props":2558,"children":2559},{"style":396},[2560],{"type":48,"value":2561},"  type",{"type":42,"tag":226,"props":2563,"children":2564},{"style":239},[2565],{"type":48,"value":242},{"type":42,"tag":226,"props":2567,"children":2568},{"style":239},[2569],{"type":48,"value":2570}," '",{"type":42,"tag":226,"props":2572,"children":2573},{"style":250},[2574],{"type":48,"value":2575},"cover",{"type":42,"tag":226,"props":2577,"children":2578},{"style":239},[2579],{"type":48,"value":2580},"'",{"type":42,"tag":226,"props":2582,"children":2583},{"style":239},[2584],{"type":48,"value":1442},{"type":42,"tag":226,"props":2586,"children":2587},{"class":228,"line":597},[2588,2593,2597,2602],{"type":42,"tag":226,"props":2589,"children":2590},{"style":396},[2591],{"type":48,"value":2592},"  index",{"type":42,"tag":226,"props":2594,"children":2595},{"style":239},[2596],{"type":48,"value":242},{"type":42,"tag":226,"props":2598,"children":2599},{"style":425},[2600],{"type":48,"value":2601}," 1",{"type":42,"tag":226,"props":2603,"children":2604},{"style":239},[2605],{"type":48,"value":1442},{"type":42,"tag":226,"props":2607,"children":2608},{"class":228,"line":1607},[2609,2614,2618,2622,2627],{"type":42,"tag":226,"props":2610,"children":2611},{"style":396},[2612],{"type":48,"value":2613},"  title",{"type":42,"tag":226,"props":2615,"children":2616},{"style":239},[2617],{"type":48,"value":242},{"type":42,"tag":226,"props":2619,"children":2620},{"style":239},[2621],{"type":48,"value":2570},{"type":42,"tag":226,"props":2623,"children":2624},{"style":250},[2625],{"type":48,"value":2626},"Presentation Title",{"type":42,"tag":226,"props":2628,"children":2629},{"style":239},[2630],{"type":48,"value":2631},"'\n",{"type":42,"tag":226,"props":2633,"children":2634},{"class":228,"line":1653},[2635],{"type":42,"tag":226,"props":2636,"children":2637},{"style":239},[2638],{"type":48,"value":1108},{"type":42,"tag":226,"props":2640,"children":2641},{"class":228,"line":1699},[2642],{"type":42,"tag":226,"props":2643,"children":2644},{"emptyLinePlaceholder":582},[2645],{"type":48,"value":585},{"type":42,"tag":226,"props":2647,"children":2648},{"class":228,"line":1752},[2649],{"type":42,"tag":226,"props":2650,"children":2651},{"style":261},[2652],{"type":48,"value":2653},"\u002F\u002F ⚠️ MUST be synchronous (not async)\n",{"type":42,"tag":226,"props":2655,"children":2656},{"class":228,"line":2208},[2657,2662,2667,2671,2677,2681,2685,2689],{"type":42,"tag":226,"props":2658,"children":2659},{"style":2484},[2660],{"type":48,"value":2661},"function",{"type":42,"tag":226,"props":2663,"children":2664},{"style":362},[2665],{"type":48,"value":2666}," createSlide",{"type":42,"tag":226,"props":2668,"children":2669},{"style":239},[2670],{"type":48,"value":370},{"type":42,"tag":226,"props":2672,"children":2674},{"style":2673},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[2675],{"type":48,"value":2676},"pres",{"type":42,"tag":226,"props":2678,"children":2679},{"style":239},[2680],{"type":48,"value":388},{"type":42,"tag":226,"props":2682,"children":2683},{"style":2673},[2684],{"type":48,"value":822},{"type":42,"tag":226,"props":2686,"children":2687},{"style":239},[2688],{"type":48,"value":463},{"type":42,"tag":226,"props":2690,"children":2691},{"style":239},[2692],{"type":48,"value":1367},{"type":42,"tag":226,"props":2694,"children":2696},{"class":228,"line":2695},12,[2697,2702,2707,2712,2717,2721,2726,2731],{"type":42,"tag":226,"props":2698,"children":2699},{"style":2484},[2700],{"type":48,"value":2701},"  const",{"type":42,"tag":226,"props":2703,"children":2704},{"style":351},[2705],{"type":48,"value":2706}," slide",{"type":42,"tag":226,"props":2708,"children":2709},{"style":239},[2710],{"type":48,"value":2711}," =",{"type":42,"tag":226,"props":2713,"children":2714},{"style":351},[2715],{"type":48,"value":2716}," pres",{"type":42,"tag":226,"props":2718,"children":2719},{"style":239},[2720],{"type":48,"value":359},{"type":42,"tag":226,"props":2722,"children":2723},{"style":362},[2724],{"type":48,"value":2725},"addSlide",{"type":42,"tag":226,"props":2727,"children":2728},{"style":396},[2729],{"type":48,"value":2730},"()",{"type":42,"tag":226,"props":2732,"children":2733},{"style":239},[2734],{"type":48,"value":468},{"type":42,"tag":226,"props":2736,"children":2738},{"class":228,"line":2737},13,[2739,2744,2748,2752,2756,2760,2764,2768,2772,2776,2781],{"type":42,"tag":226,"props":2740,"children":2741},{"style":351},[2742],{"type":48,"value":2743},"  slide",{"type":42,"tag":226,"props":2745,"children":2746},{"style":239},[2747],{"type":48,"value":359},{"type":42,"tag":226,"props":2749,"children":2750},{"style":351},[2751],{"type":48,"value":2414},{"type":42,"tag":226,"props":2753,"children":2754},{"style":239},[2755],{"type":48,"value":2711},{"type":42,"tag":226,"props":2757,"children":2758},{"style":239},[2759],{"type":48,"value":393},{"type":42,"tag":226,"props":2761,"children":2762},{"style":396},[2763],{"type":48,"value":813},{"type":42,"tag":226,"props":2765,"children":2766},{"style":239},[2767],{"type":48,"value":242},{"type":42,"tag":226,"props":2769,"children":2770},{"style":351},[2771],{"type":48,"value":822},{"type":42,"tag":226,"props":2773,"children":2774},{"style":239},[2775],{"type":48,"value":359},{"type":42,"tag":226,"props":2777,"children":2778},{"style":351},[2779],{"type":48,"value":2780},"bg",{"type":42,"tag":226,"props":2782,"children":2783},{"style":239},[2784],{"type":48,"value":2785}," };\n",{"type":42,"tag":226,"props":2787,"children":2789},{"class":228,"line":2788},14,[2790],{"type":42,"tag":226,"props":2791,"children":2792},{"emptyLinePlaceholder":582},[2793],{"type":48,"value":585},{"type":42,"tag":226,"props":2795,"children":2797},{"class":228,"line":2796},15,[2798,2802,2806,2810,2814,2819,2823,2828,2832],{"type":42,"tag":226,"props":2799,"children":2800},{"style":351},[2801],{"type":48,"value":2743},{"type":42,"tag":226,"props":2803,"children":2804},{"style":239},[2805],{"type":48,"value":359},{"type":42,"tag":226,"props":2807,"children":2808},{"style":362},[2809],{"type":48,"value":365},{"type":42,"tag":226,"props":2811,"children":2812},{"style":396},[2813],{"type":48,"value":370},{"type":42,"tag":226,"props":2815,"children":2816},{"style":351},[2817],{"type":48,"value":2818},"slideConfig",{"type":42,"tag":226,"props":2820,"children":2821},{"style":239},[2822],{"type":48,"value":359},{"type":42,"tag":226,"props":2824,"children":2825},{"style":351},[2826],{"type":48,"value":2827},"title",{"type":42,"tag":226,"props":2829,"children":2830},{"style":239},[2831],{"type":48,"value":388},{"type":42,"tag":226,"props":2833,"children":2834},{"style":239},[2835],{"type":48,"value":1367},{"type":42,"tag":226,"props":2837,"children":2839},{"class":228,"line":2838},16,[2840,2845,2849,2854,2858,2862,2866,2871,2875,2879,2883,2888,2892,2896,2900,2905],{"type":42,"tag":226,"props":2841,"children":2842},{"style":396},[2843],{"type":48,"value":2844},"    x",{"type":42,"tag":226,"props":2846,"children":2847},{"style":239},[2848],{"type":48,"value":242},{"type":42,"tag":226,"props":2850,"children":2851},{"style":425},[2852],{"type":48,"value":2853}," 0.5",{"type":42,"tag":226,"props":2855,"children":2856},{"style":239},[2857],{"type":48,"value":388},{"type":42,"tag":226,"props":2859,"children":2860},{"style":396},[2861],{"type":48,"value":1393},{"type":42,"tag":226,"props":2863,"children":2864},{"style":239},[2865],{"type":48,"value":242},{"type":42,"tag":226,"props":2867,"children":2868},{"style":425},[2869],{"type":48,"value":2870}," 2",{"type":42,"tag":226,"props":2872,"children":2873},{"style":239},[2874],{"type":48,"value":388},{"type":42,"tag":226,"props":2876,"children":2877},{"style":396},[2878],{"type":48,"value":1411},{"type":42,"tag":226,"props":2880,"children":2881},{"style":239},[2882],{"type":48,"value":242},{"type":42,"tag":226,"props":2884,"children":2885},{"style":425},[2886],{"type":48,"value":2887}," 9",{"type":42,"tag":226,"props":2889,"children":2890},{"style":239},[2891],{"type":48,"value":388},{"type":42,"tag":226,"props":2893,"children":2894},{"style":396},[2895],{"type":48,"value":1429},{"type":42,"tag":226,"props":2897,"children":2898},{"style":239},[2899],{"type":48,"value":242},{"type":42,"tag":226,"props":2901,"children":2902},{"style":425},[2903],{"type":48,"value":2904}," 1.2",{"type":42,"tag":226,"props":2906,"children":2907},{"style":239},[2908],{"type":48,"value":1442},{"type":42,"tag":226,"props":2910,"children":2912},{"class":228,"line":2911},17,[2913,2918,2922,2927,2931,2935,2939,2943,2947,2951,2955],{"type":42,"tag":226,"props":2914,"children":2915},{"style":396},[2916],{"type":48,"value":2917},"    fontSize",{"type":42,"tag":226,"props":2919,"children":2920},{"style":239},[2921],{"type":48,"value":242},{"type":42,"tag":226,"props":2923,"children":2924},{"style":425},[2925],{"type":48,"value":2926}," 48",{"type":42,"tag":226,"props":2928,"children":2929},{"style":239},[2930],{"type":48,"value":388},{"type":42,"tag":226,"props":2932,"children":2933},{"style":396},[2934],{"type":48,"value":437},{"type":42,"tag":226,"props":2936,"children":2937},{"style":239},[2938],{"type":48,"value":242},{"type":42,"tag":226,"props":2940,"children":2941},{"style":239},[2942],{"type":48,"value":247},{"type":42,"tag":226,"props":2944,"children":2945},{"style":250},[2946],{"type":48,"value":208},{"type":42,"tag":226,"props":2948,"children":2949},{"style":239},[2950],{"type":48,"value":258},{"type":42,"tag":226,"props":2952,"children":2953},{"style":239},[2954],{"type":48,"value":388},{"type":42,"tag":226,"props":2956,"children":2957},{"style":261},[2958],{"type":48,"value":2959},"  \u002F\u002F English text uses Arial\n",{"type":42,"tag":226,"props":2961,"children":2963},{"class":228,"line":2962},18,[2964,2969,2973,2977,2981,2986,2990,2994,2998,3002,3006,3011,3015,3019,3023],{"type":42,"tag":226,"props":2965,"children":2966},{"style":396},[2967],{"type":48,"value":2968},"    color",{"type":42,"tag":226,"props":2970,"children":2971},{"style":239},[2972],{"type":48,"value":242},{"type":42,"tag":226,"props":2974,"children":2975},{"style":351},[2976],{"type":48,"value":822},{"type":42,"tag":226,"props":2978,"children":2979},{"style":239},[2980],{"type":48,"value":359},{"type":42,"tag":226,"props":2982,"children":2983},{"style":351},[2984],{"type":48,"value":2985},"primary",{"type":42,"tag":226,"props":2987,"children":2988},{"style":239},[2989],{"type":48,"value":388},{"type":42,"tag":226,"props":2991,"children":2992},{"style":396},[2993],{"type":48,"value":399},{"type":42,"tag":226,"props":2995,"children":2996},{"style":239},[2997],{"type":48,"value":242},{"type":42,"tag":226,"props":2999,"children":3000},{"style":406},[3001],{"type":48,"value":409},{"type":42,"tag":226,"props":3003,"children":3004},{"style":239},[3005],{"type":48,"value":388},{"type":42,"tag":226,"props":3007,"children":3008},{"style":396},[3009],{"type":48,"value":3010}," align",{"type":42,"tag":226,"props":3012,"children":3013},{"style":239},[3014],{"type":48,"value":242},{"type":42,"tag":226,"props":3016,"children":3017},{"style":239},[3018],{"type":48,"value":247},{"type":42,"tag":226,"props":3020,"children":3021},{"style":250},[3022],{"type":48,"value":1718},{"type":42,"tag":226,"props":3024,"children":3025},{"style":239},[3026],{"type":48,"value":1749},{"type":42,"tag":226,"props":3028,"children":3030},{"class":228,"line":3029},19,[3031,3036,3040],{"type":42,"tag":226,"props":3032,"children":3033},{"style":239},[3034],{"type":48,"value":3035},"  }",{"type":42,"tag":226,"props":3037,"children":3038},{"style":396},[3039],{"type":48,"value":463},{"type":42,"tag":226,"props":3041,"children":3042},{"style":239},[3043],{"type":48,"value":468},{"type":42,"tag":226,"props":3045,"children":3047},{"class":228,"line":3046},20,[3048],{"type":42,"tag":226,"props":3049,"children":3050},{"emptyLinePlaceholder":582},[3051],{"type":48,"value":585},{"type":42,"tag":226,"props":3053,"children":3055},{"class":228,"line":3054},21,[3056,3062,3066],{"type":42,"tag":226,"props":3057,"children":3059},{"style":3058},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[3060],{"type":48,"value":3061},"  return",{"type":42,"tag":226,"props":3063,"children":3064},{"style":351},[3065],{"type":48,"value":2706},{"type":42,"tag":226,"props":3067,"children":3068},{"style":239},[3069],{"type":48,"value":468},{"type":42,"tag":226,"props":3071,"children":3073},{"class":228,"line":3072},22,[3074],{"type":42,"tag":226,"props":3075,"children":3076},{"style":239},[3077],{"type":48,"value":1483},{"type":42,"tag":226,"props":3079,"children":3081},{"class":228,"line":3080},23,[3082],{"type":42,"tag":226,"props":3083,"children":3084},{"emptyLinePlaceholder":582},[3085],{"type":48,"value":585},{"type":42,"tag":226,"props":3087,"children":3089},{"class":228,"line":3088},24,[3090],{"type":42,"tag":226,"props":3091,"children":3092},{"style":261},[3093],{"type":48,"value":3094},"\u002F\u002F Standalone preview - use slide-specific filename (slide-XX-preview.pptx)\n",{"type":42,"tag":226,"props":3096,"children":3098},{"class":228,"line":3097},25,[3099,3104,3109,3113,3118,3123,3128,3133],{"type":42,"tag":226,"props":3100,"children":3101},{"style":3058},[3102],{"type":48,"value":3103},"if",{"type":42,"tag":226,"props":3105,"children":3106},{"style":351},[3107],{"type":48,"value":3108}," (require",{"type":42,"tag":226,"props":3110,"children":3111},{"style":239},[3112],{"type":48,"value":359},{"type":42,"tag":226,"props":3114,"children":3115},{"style":351},[3116],{"type":48,"value":3117},"main ",{"type":42,"tag":226,"props":3119,"children":3120},{"style":239},[3121],{"type":48,"value":3122},"===",{"type":42,"tag":226,"props":3124,"children":3125},{"style":239},[3126],{"type":48,"value":3127}," module",{"type":42,"tag":226,"props":3129,"children":3130},{"style":351},[3131],{"type":48,"value":3132},") ",{"type":42,"tag":226,"props":3134,"children":3135},{"style":239},[3136],{"type":48,"value":3137},"{\n",{"type":42,"tag":226,"props":3139,"children":3141},{"class":228,"line":3140},26,[3142,3146,3150,3154,3159,3164,3168],{"type":42,"tag":226,"props":3143,"children":3144},{"style":2484},[3145],{"type":48,"value":2701},{"type":42,"tag":226,"props":3147,"children":3148},{"style":351},[3149],{"type":48,"value":2716},{"type":42,"tag":226,"props":3151,"children":3152},{"style":239},[3153],{"type":48,"value":2711},{"type":42,"tag":226,"props":3155,"children":3156},{"style":239},[3157],{"type":48,"value":3158}," new",{"type":42,"tag":226,"props":3160,"children":3161},{"style":362},[3162],{"type":48,"value":3163}," pptxgen",{"type":42,"tag":226,"props":3165,"children":3166},{"style":396},[3167],{"type":48,"value":2730},{"type":42,"tag":226,"props":3169,"children":3170},{"style":239},[3171],{"type":48,"value":468},{"type":42,"tag":226,"props":3173,"children":3175},{"class":228,"line":3174},27,[3176,3181,3185,3190,3194,3198,3203,3207],{"type":42,"tag":226,"props":3177,"children":3178},{"style":351},[3179],{"type":48,"value":3180},"  pres",{"type":42,"tag":226,"props":3182,"children":3183},{"style":239},[3184],{"type":48,"value":359},{"type":42,"tag":226,"props":3186,"children":3187},{"style":351},[3188],{"type":48,"value":3189},"layout",{"type":42,"tag":226,"props":3191,"children":3192},{"style":239},[3193],{"type":48,"value":2711},{"type":42,"tag":226,"props":3195,"children":3196},{"style":239},[3197],{"type":48,"value":2570},{"type":42,"tag":226,"props":3199,"children":3200},{"style":250},[3201],{"type":48,"value":3202},"LAYOUT_16x9",{"type":42,"tag":226,"props":3204,"children":3205},{"style":239},[3206],{"type":48,"value":2580},{"type":42,"tag":226,"props":3208,"children":3209},{"style":239},[3210],{"type":48,"value":468},{"type":42,"tag":226,"props":3212,"children":3214},{"class":228,"line":3213},28,[3215,3219,3223,3227],{"type":42,"tag":226,"props":3216,"children":3217},{"style":2484},[3218],{"type":48,"value":2701},{"type":42,"tag":226,"props":3220,"children":3221},{"style":351},[3222],{"type":48,"value":822},{"type":42,"tag":226,"props":3224,"children":3225},{"style":239},[3226],{"type":48,"value":2711},{"type":42,"tag":226,"props":3228,"children":3229},{"style":239},[3230],{"type":48,"value":1367},{"type":42,"tag":226,"props":3232,"children":3234},{"class":228,"line":3233},29,[3235,3240,3244,3248,3253,3257],{"type":42,"tag":226,"props":3236,"children":3237},{"style":396},[3238],{"type":48,"value":3239},"    primary",{"type":42,"tag":226,"props":3241,"children":3242},{"style":239},[3243],{"type":48,"value":242},{"type":42,"tag":226,"props":3245,"children":3246},{"style":239},[3247],{"type":48,"value":247},{"type":42,"tag":226,"props":3249,"children":3250},{"style":250},[3251],{"type":48,"value":3252},"22223b",{"type":42,"tag":226,"props":3254,"children":3255},{"style":239},[3256],{"type":48,"value":258},{"type":42,"tag":226,"props":3258,"children":3259},{"style":239},[3260],{"type":48,"value":1442},{"type":42,"tag":226,"props":3262,"children":3264},{"class":228,"line":3263},30,[3265,3270,3274,3278,3283,3287],{"type":42,"tag":226,"props":3266,"children":3267},{"style":396},[3268],{"type":48,"value":3269},"    secondary",{"type":42,"tag":226,"props":3271,"children":3272},{"style":239},[3273],{"type":48,"value":242},{"type":42,"tag":226,"props":3275,"children":3276},{"style":239},[3277],{"type":48,"value":247},{"type":42,"tag":226,"props":3279,"children":3280},{"style":250},[3281],{"type":48,"value":3282},"4a4e69",{"type":42,"tag":226,"props":3284,"children":3285},{"style":239},[3286],{"type":48,"value":258},{"type":42,"tag":226,"props":3288,"children":3289},{"style":239},[3290],{"type":48,"value":1442},{"type":42,"tag":226,"props":3292,"children":3294},{"class":228,"line":3293},31,[3295,3300,3304,3308,3313,3317],{"type":42,"tag":226,"props":3296,"children":3297},{"style":396},[3298],{"type":48,"value":3299},"    accent",{"type":42,"tag":226,"props":3301,"children":3302},{"style":239},[3303],{"type":48,"value":242},{"type":42,"tag":226,"props":3305,"children":3306},{"style":239},[3307],{"type":48,"value":247},{"type":42,"tag":226,"props":3309,"children":3310},{"style":250},[3311],{"type":48,"value":3312},"9a8c98",{"type":42,"tag":226,"props":3314,"children":3315},{"style":239},[3316],{"type":48,"value":258},{"type":42,"tag":226,"props":3318,"children":3319},{"style":239},[3320],{"type":48,"value":1442},{"type":42,"tag":226,"props":3322,"children":3324},{"class":228,"line":3323},32,[3325,3330,3334,3338,3343,3347],{"type":42,"tag":226,"props":3326,"children":3327},{"style":396},[3328],{"type":48,"value":3329},"    light",{"type":42,"tag":226,"props":3331,"children":3332},{"style":239},[3333],{"type":48,"value":242},{"type":42,"tag":226,"props":3335,"children":3336},{"style":239},[3337],{"type":48,"value":247},{"type":42,"tag":226,"props":3339,"children":3340},{"style":250},[3341],{"type":48,"value":3342},"c9ada7",{"type":42,"tag":226,"props":3344,"children":3345},{"style":239},[3346],{"type":48,"value":258},{"type":42,"tag":226,"props":3348,"children":3349},{"style":239},[3350],{"type":48,"value":1442},{"type":42,"tag":226,"props":3352,"children":3354},{"class":228,"line":3353},33,[3355,3360,3364,3368,3373],{"type":42,"tag":226,"props":3356,"children":3357},{"style":396},[3358],{"type":48,"value":3359},"    bg",{"type":42,"tag":226,"props":3361,"children":3362},{"style":239},[3363],{"type":48,"value":242},{"type":42,"tag":226,"props":3365,"children":3366},{"style":239},[3367],{"type":48,"value":247},{"type":42,"tag":226,"props":3369,"children":3370},{"style":250},[3371],{"type":48,"value":3372},"f2e9e4",{"type":42,"tag":226,"props":3374,"children":3375},{"style":239},[3376],{"type":48,"value":1749},{"type":42,"tag":226,"props":3378,"children":3380},{"class":228,"line":3379},34,[3381],{"type":42,"tag":226,"props":3382,"children":3383},{"style":239},[3384],{"type":48,"value":3385},"  };\n",{"type":42,"tag":226,"props":3387,"children":3389},{"class":228,"line":3388},35,[3390,3395,3399,3403,3407,3411,3415],{"type":42,"tag":226,"props":3391,"children":3392},{"style":362},[3393],{"type":48,"value":3394},"  createSlide",{"type":42,"tag":226,"props":3396,"children":3397},{"style":396},[3398],{"type":48,"value":370},{"type":42,"tag":226,"props":3400,"children":3401},{"style":351},[3402],{"type":48,"value":2676},{"type":42,"tag":226,"props":3404,"children":3405},{"style":239},[3406],{"type":48,"value":388},{"type":42,"tag":226,"props":3408,"children":3409},{"style":351},[3410],{"type":48,"value":822},{"type":42,"tag":226,"props":3412,"children":3413},{"style":396},[3414],{"type":48,"value":463},{"type":42,"tag":226,"props":3416,"children":3417},{"style":239},[3418],{"type":48,"value":468},{"type":42,"tag":226,"props":3420,"children":3422},{"class":228,"line":3421},36,[3423],{"type":42,"tag":226,"props":3424,"children":3425},{"style":261},[3426],{"type":48,"value":3427},"  \u002F\u002F Replace XX with actual slide index (01, 02, etc.) to avoid conflicts\n",{"type":42,"tag":226,"props":3429,"children":3431},{"class":228,"line":3430},37,[3432,3436,3440,3445,3449,3454,3459,3463,3467,3472,3476,3480,3484],{"type":42,"tag":226,"props":3433,"children":3434},{"style":351},[3435],{"type":48,"value":3180},{"type":42,"tag":226,"props":3437,"children":3438},{"style":239},[3439],{"type":48,"value":359},{"type":42,"tag":226,"props":3441,"children":3442},{"style":362},[3443],{"type":48,"value":3444},"writeFile",{"type":42,"tag":226,"props":3446,"children":3447},{"style":396},[3448],{"type":48,"value":370},{"type":42,"tag":226,"props":3450,"children":3451},{"style":239},[3452],{"type":48,"value":3453},"{",{"type":42,"tag":226,"props":3455,"children":3456},{"style":396},[3457],{"type":48,"value":3458}," fileName",{"type":42,"tag":226,"props":3460,"children":3461},{"style":239},[3462],{"type":48,"value":242},{"type":42,"tag":226,"props":3464,"children":3465},{"style":239},[3466],{"type":48,"value":247},{"type":42,"tag":226,"props":3468,"children":3469},{"style":250},[3470],{"type":48,"value":3471},"slide-01-preview.pptx",{"type":42,"tag":226,"props":3473,"children":3474},{"style":239},[3475],{"type":48,"value":258},{"type":42,"tag":226,"props":3477,"children":3478},{"style":239},[3479],{"type":48,"value":458},{"type":42,"tag":226,"props":3481,"children":3482},{"style":396},[3483],{"type":48,"value":463},{"type":42,"tag":226,"props":3485,"children":3486},{"style":239},[3487],{"type":48,"value":468},{"type":42,"tag":226,"props":3489,"children":3491},{"class":228,"line":3490},38,[3492],{"type":42,"tag":226,"props":3493,"children":3494},{"style":239},[3495],{"type":48,"value":1483},{"type":42,"tag":226,"props":3497,"children":3499},{"class":228,"line":3498},39,[3500],{"type":42,"tag":226,"props":3501,"children":3502},{"emptyLinePlaceholder":582},[3503],{"type":48,"value":585},{"type":42,"tag":226,"props":3505,"children":3507},{"class":228,"line":3506},40,[3508,3513,3517,3521,3525,3529,3533],{"type":42,"tag":226,"props":3509,"children":3510},{"style":239},[3511],{"type":48,"value":3512},"module.exports",{"type":42,"tag":226,"props":3514,"children":3515},{"style":239},[3516],{"type":48,"value":2711},{"type":42,"tag":226,"props":3518,"children":3519},{"style":239},[3520],{"type":48,"value":393},{"type":42,"tag":226,"props":3522,"children":3523},{"style":351},[3524],{"type":48,"value":2666},{"type":42,"tag":226,"props":3526,"children":3527},{"style":239},[3528],{"type":48,"value":388},{"type":42,"tag":226,"props":3530,"children":3531},{"style":351},[3532],{"type":48,"value":2545},{"type":42,"tag":226,"props":3534,"children":3535},{"style":239},[3536],{"type":48,"value":1108},{"type":42,"tag":123,"props":3538,"children":3539},{},[],{"type":42,"tag":57,"props":3541,"children":3543},{"id":3542},"critical-pitfalls",[3544],{"type":48,"value":3545},"Critical Pitfalls",{"type":42,"tag":133,"props":3547,"children":3549},{"id":3548},"never-use-asyncawait-in-createslide",[3550],{"type":48,"value":3551},"NEVER use async\u002Fawait in createSlide()",{"type":42,"tag":215,"props":3553,"children":3555},{"className":217,"code":3554,"language":25,"meta":219,"style":219},"\u002F\u002F ❌ WRONG - compile.js won't await\nasync function createSlide(pres, theme) { ... }\n\n\u002F\u002F ✅ CORRECT\nfunction createSlide(pres, theme) { ... }\n",[3556],{"type":42,"tag":222,"props":3557,"children":3558},{"__ignoreMap":219},[3559,3567,3618,3625,3633],{"type":42,"tag":226,"props":3560,"children":3561},{"class":228,"line":229},[3562],{"type":42,"tag":226,"props":3563,"children":3564},{"style":261},[3565],{"type":48,"value":3566},"\u002F\u002F ❌ WRONG - compile.js won't await\n",{"type":42,"tag":226,"props":3568,"children":3569},{"class":228,"line":267},[3570,3575,3580,3584,3588,3592,3596,3600,3604,3608,3613],{"type":42,"tag":226,"props":3571,"children":3572},{"style":2484},[3573],{"type":48,"value":3574},"async",{"type":42,"tag":226,"props":3576,"children":3577},{"style":2484},[3578],{"type":48,"value":3579}," function",{"type":42,"tag":226,"props":3581,"children":3582},{"style":362},[3583],{"type":48,"value":2666},{"type":42,"tag":226,"props":3585,"children":3586},{"style":239},[3587],{"type":48,"value":370},{"type":42,"tag":226,"props":3589,"children":3590},{"style":2673},[3591],{"type":48,"value":2676},{"type":42,"tag":226,"props":3593,"children":3594},{"style":239},[3595],{"type":48,"value":388},{"type":42,"tag":226,"props":3597,"children":3598},{"style":2673},[3599],{"type":48,"value":822},{"type":42,"tag":226,"props":3601,"children":3602},{"style":239},[3603],{"type":48,"value":463},{"type":42,"tag":226,"props":3605,"children":3606},{"style":239},[3607],{"type":48,"value":393},{"type":42,"tag":226,"props":3609,"children":3610},{"style":239},[3611],{"type":48,"value":3612}," ...",{"type":42,"tag":226,"props":3614,"children":3615},{"style":239},[3616],{"type":48,"value":3617}," }\n",{"type":42,"tag":226,"props":3619,"children":3620},{"class":228,"line":471},[3621],{"type":42,"tag":226,"props":3622,"children":3623},{"emptyLinePlaceholder":582},[3624],{"type":48,"value":585},{"type":42,"tag":226,"props":3626,"children":3627},{"class":228,"line":578},[3628],{"type":42,"tag":226,"props":3629,"children":3630},{"style":261},[3631],{"type":48,"value":3632},"\u002F\u002F ✅ CORRECT\n",{"type":42,"tag":226,"props":3634,"children":3635},{"class":228,"line":588},[3636,3640,3644,3648,3652,3656,3660,3664,3668,3672],{"type":42,"tag":226,"props":3637,"children":3638},{"style":2484},[3639],{"type":48,"value":2661},{"type":42,"tag":226,"props":3641,"children":3642},{"style":362},[3643],{"type":48,"value":2666},{"type":42,"tag":226,"props":3645,"children":3646},{"style":239},[3647],{"type":48,"value":370},{"type":42,"tag":226,"props":3649,"children":3650},{"style":2673},[3651],{"type":48,"value":2676},{"type":42,"tag":226,"props":3653,"children":3654},{"style":239},[3655],{"type":48,"value":388},{"type":42,"tag":226,"props":3657,"children":3658},{"style":2673},[3659],{"type":48,"value":822},{"type":42,"tag":226,"props":3661,"children":3662},{"style":239},[3663],{"type":48,"value":463},{"type":42,"tag":226,"props":3665,"children":3666},{"style":239},[3667],{"type":48,"value":393},{"type":42,"tag":226,"props":3669,"children":3670},{"style":239},[3671],{"type":48,"value":3612},{"type":42,"tag":226,"props":3673,"children":3674},{"style":239},[3675],{"type":48,"value":3617},{"type":42,"tag":133,"props":3677,"children":3679},{"id":3678},"never-use-with-hex-colors",[3680],{"type":48,"value":3681},"NEVER use \"#\" with hex colors",{"type":42,"tag":215,"props":3683,"children":3685},{"className":217,"code":3684,"language":25,"meta":219,"style":219},"color: \"FF0000\"      \u002F\u002F ✅ CORRECT\ncolor: \"#FF0000\"     \u002F\u002F ❌ CORRUPTS FILE\n",[3686],{"type":42,"tag":222,"props":3687,"children":3688},{"__ignoreMap":219},[3689,3719],{"type":42,"tag":226,"props":3690,"children":3691},{"class":228,"line":229},[3692,3697,3701,3705,3710,3714],{"type":42,"tag":226,"props":3693,"children":3694},{"style":233},[3695],{"type":48,"value":3696},"color",{"type":42,"tag":226,"props":3698,"children":3699},{"style":239},[3700],{"type":48,"value":242},{"type":42,"tag":226,"props":3702,"children":3703},{"style":239},[3704],{"type":48,"value":247},{"type":42,"tag":226,"props":3706,"children":3707},{"style":250},[3708],{"type":48,"value":3709},"FF0000",{"type":42,"tag":226,"props":3711,"children":3712},{"style":239},[3713],{"type":48,"value":258},{"type":42,"tag":226,"props":3715,"children":3716},{"style":261},[3717],{"type":48,"value":3718},"      \u002F\u002F ✅ CORRECT\n",{"type":42,"tag":226,"props":3720,"children":3721},{"class":228,"line":267},[3722,3726,3730,3734,3739,3743],{"type":42,"tag":226,"props":3723,"children":3724},{"style":233},[3725],{"type":48,"value":3696},{"type":42,"tag":226,"props":3727,"children":3728},{"style":239},[3729],{"type":48,"value":242},{"type":42,"tag":226,"props":3731,"children":3732},{"style":239},[3733],{"type":48,"value":247},{"type":42,"tag":226,"props":3735,"children":3736},{"style":250},[3737],{"type":48,"value":3738},"#FF0000",{"type":42,"tag":226,"props":3740,"children":3741},{"style":239},[3742],{"type":48,"value":258},{"type":42,"tag":226,"props":3744,"children":3745},{"style":261},[3746],{"type":48,"value":3747},"     \u002F\u002F ❌ CORRUPTS FILE\n",{"type":42,"tag":133,"props":3749,"children":3751},{"id":3750},"never-encode-opacity-in-hex-strings",[3752],{"type":48,"value":3753},"NEVER encode opacity in hex strings",{"type":42,"tag":215,"props":3755,"children":3757},{"className":217,"code":3756,"language":25,"meta":219,"style":219},"shadow: { color: \"00000020\" }              \u002F\u002F ❌ CORRUPTS FILE\nshadow: { color: \"000000\", opacity: 0.12 } \u002F\u002F ✅ CORRECT\n",[3758],{"type":42,"tag":222,"props":3759,"children":3760},{"__ignoreMap":219},[3761,3807],{"type":42,"tag":226,"props":3762,"children":3763},{"class":228,"line":229},[3764,3769,3773,3777,3781,3785,3789,3794,3798,3802],{"type":42,"tag":226,"props":3765,"children":3766},{"style":233},[3767],{"type":48,"value":3768},"shadow",{"type":42,"tag":226,"props":3770,"children":3771},{"style":239},[3772],{"type":48,"value":242},{"type":42,"tag":226,"props":3774,"children":3775},{"style":239},[3776],{"type":48,"value":393},{"type":42,"tag":226,"props":3778,"children":3779},{"style":233},[3780],{"type":48,"value":813},{"type":42,"tag":226,"props":3782,"children":3783},{"style":239},[3784],{"type":48,"value":242},{"type":42,"tag":226,"props":3786,"children":3787},{"style":239},[3788],{"type":48,"value":247},{"type":42,"tag":226,"props":3790,"children":3791},{"style":250},[3792],{"type":48,"value":3793},"00000020",{"type":42,"tag":226,"props":3795,"children":3796},{"style":239},[3797],{"type":48,"value":258},{"type":42,"tag":226,"props":3799,"children":3800},{"style":239},[3801],{"type":48,"value":458},{"type":42,"tag":226,"props":3803,"children":3804},{"style":261},[3805],{"type":48,"value":3806},"              \u002F\u002F ❌ CORRUPTS FILE\n",{"type":42,"tag":226,"props":3808,"children":3809},{"class":228,"line":267},[3810,3814,3818,3822,3826,3830,3834,3839,3843,3847,3852,3856,3861,3865],{"type":42,"tag":226,"props":3811,"children":3812},{"style":233},[3813],{"type":48,"value":3768},{"type":42,"tag":226,"props":3815,"children":3816},{"style":239},[3817],{"type":48,"value":242},{"type":42,"tag":226,"props":3819,"children":3820},{"style":239},[3821],{"type":48,"value":393},{"type":42,"tag":226,"props":3823,"children":3824},{"style":233},[3825],{"type":48,"value":813},{"type":42,"tag":226,"props":3827,"children":3828},{"style":239},[3829],{"type":48,"value":242},{"type":42,"tag":226,"props":3831,"children":3832},{"style":239},[3833],{"type":48,"value":247},{"type":42,"tag":226,"props":3835,"children":3836},{"style":250},[3837],{"type":48,"value":3838},"000000",{"type":42,"tag":226,"props":3840,"children":3841},{"style":239},[3842],{"type":48,"value":258},{"type":42,"tag":226,"props":3844,"children":3845},{"style":239},[3846],{"type":48,"value":388},{"type":42,"tag":226,"props":3848,"children":3849},{"style":233},[3850],{"type":48,"value":3851}," opacity",{"type":42,"tag":226,"props":3853,"children":3854},{"style":239},[3855],{"type":48,"value":242},{"type":42,"tag":226,"props":3857,"children":3858},{"style":425},[3859],{"type":48,"value":3860}," 0.12",{"type":42,"tag":226,"props":3862,"children":3863},{"style":239},[3864],{"type":48,"value":458},{"type":42,"tag":226,"props":3866,"children":3867},{"style":261},[3868],{"type":48,"value":3869}," \u002F\u002F ✅ CORRECT\n",{"type":42,"tag":133,"props":3871,"children":3873},{"id":3872},"prevent-text-wrapping-in-titles",[3874],{"type":48,"value":3875},"Prevent text wrapping in titles",{"type":42,"tag":215,"props":3877,"children":3879},{"className":217,"code":3878,"language":25,"meta":219,"style":219},"\u002F\u002F ✅ Use fit:'shrink' for long titles\nslide.addText(\"Long Title Here\", {\n  x: 0.5, y: 2, w: 9, h: 1,\n  fontSize: 48, fit: \"shrink\"\n});\n",[3880],{"type":42,"tag":222,"props":3881,"children":3882},{"__ignoreMap":219},[3883,3891,3931,3998,4039],{"type":42,"tag":226,"props":3884,"children":3885},{"class":228,"line":229},[3886],{"type":42,"tag":226,"props":3887,"children":3888},{"style":261},[3889],{"type":48,"value":3890},"\u002F\u002F ✅ Use fit:'shrink' for long titles\n",{"type":42,"tag":226,"props":3892,"children":3893},{"class":228,"line":267},[3894,3898,3902,3906,3910,3914,3919,3923,3927],{"type":42,"tag":226,"props":3895,"children":3896},{"style":351},[3897],{"type":48,"value":354},{"type":42,"tag":226,"props":3899,"children":3900},{"style":239},[3901],{"type":48,"value":359},{"type":42,"tag":226,"props":3903,"children":3904},{"style":362},[3905],{"type":48,"value":365},{"type":42,"tag":226,"props":3907,"children":3908},{"style":351},[3909],{"type":48,"value":370},{"type":42,"tag":226,"props":3911,"children":3912},{"style":239},[3913],{"type":48,"value":258},{"type":42,"tag":226,"props":3915,"children":3916},{"style":250},[3917],{"type":48,"value":3918},"Long Title Here",{"type":42,"tag":226,"props":3920,"children":3921},{"style":239},[3922],{"type":48,"value":258},{"type":42,"tag":226,"props":3924,"children":3925},{"style":239},[3926],{"type":48,"value":388},{"type":42,"tag":226,"props":3928,"children":3929},{"style":239},[3930],{"type":48,"value":1367},{"type":42,"tag":226,"props":3932,"children":3933},{"class":228,"line":471},[3934,3938,3942,3946,3950,3954,3958,3962,3966,3970,3974,3978,3982,3986,3990,3994],{"type":42,"tag":226,"props":3935,"children":3936},{"style":396},[3937],{"type":48,"value":1375},{"type":42,"tag":226,"props":3939,"children":3940},{"style":239},[3941],{"type":48,"value":242},{"type":42,"tag":226,"props":3943,"children":3944},{"style":425},[3945],{"type":48,"value":2853},{"type":42,"tag":226,"props":3947,"children":3948},{"style":239},[3949],{"type":48,"value":388},{"type":42,"tag":226,"props":3951,"children":3952},{"style":396},[3953],{"type":48,"value":1393},{"type":42,"tag":226,"props":3955,"children":3956},{"style":239},[3957],{"type":48,"value":242},{"type":42,"tag":226,"props":3959,"children":3960},{"style":425},[3961],{"type":48,"value":2870},{"type":42,"tag":226,"props":3963,"children":3964},{"style":239},[3965],{"type":48,"value":388},{"type":42,"tag":226,"props":3967,"children":3968},{"style":396},[3969],{"type":48,"value":1411},{"type":42,"tag":226,"props":3971,"children":3972},{"style":239},[3973],{"type":48,"value":242},{"type":42,"tag":226,"props":3975,"children":3976},{"style":425},[3977],{"type":48,"value":2887},{"type":42,"tag":226,"props":3979,"children":3980},{"style":239},[3981],{"type":48,"value":388},{"type":42,"tag":226,"props":3983,"children":3984},{"style":396},[3985],{"type":48,"value":1429},{"type":42,"tag":226,"props":3987,"children":3988},{"style":239},[3989],{"type":48,"value":242},{"type":42,"tag":226,"props":3991,"children":3992},{"style":425},[3993],{"type":48,"value":2601},{"type":42,"tag":226,"props":3995,"children":3996},{"style":239},[3997],{"type":48,"value":1442},{"type":42,"tag":226,"props":3999,"children":4000},{"class":228,"line":578},[4001,4005,4009,4013,4017,4022,4026,4030,4035],{"type":42,"tag":226,"props":4002,"children":4003},{"style":396},[4004],{"type":48,"value":1613},{"type":42,"tag":226,"props":4006,"children":4007},{"style":239},[4008],{"type":48,"value":242},{"type":42,"tag":226,"props":4010,"children":4011},{"style":425},[4012],{"type":48,"value":2926},{"type":42,"tag":226,"props":4014,"children":4015},{"style":239},[4016],{"type":48,"value":388},{"type":42,"tag":226,"props":4018,"children":4019},{"style":396},[4020],{"type":48,"value":4021}," fit",{"type":42,"tag":226,"props":4023,"children":4024},{"style":239},[4025],{"type":48,"value":242},{"type":42,"tag":226,"props":4027,"children":4028},{"style":239},[4029],{"type":48,"value":247},{"type":42,"tag":226,"props":4031,"children":4032},{"style":250},[4033],{"type":48,"value":4034},"shrink",{"type":42,"tag":226,"props":4036,"children":4037},{"style":239},[4038],{"type":48,"value":1749},{"type":42,"tag":226,"props":4040,"children":4041},{"class":228,"line":588},[4042,4046,4050],{"type":42,"tag":226,"props":4043,"children":4044},{"style":239},[4045],{"type":48,"value":836},{"type":42,"tag":226,"props":4047,"children":4048},{"style":351},[4049],{"type":48,"value":463},{"type":42,"tag":226,"props":4051,"children":4052},{"style":239},[4053],{"type":48,"value":468},{"type":42,"tag":123,"props":4055,"children":4056},{},[],{"type":42,"tag":57,"props":4058,"children":4060},{"id":4059},"quick-reference",[4061],{"type":48,"value":4062},"Quick Reference",{"type":42,"tag":83,"props":4064,"children":4065},{},[4066,4076,4093,4103,4113],{"type":42,"tag":87,"props":4067,"children":4068},{},[4069,4074],{"type":42,"tag":67,"props":4070,"children":4071},{},[4072],{"type":48,"value":4073},"Dimensions",{"type":48,"value":4075},": 10\" × 5.625\" (LAYOUT_16x9)",{"type":42,"tag":87,"props":4077,"children":4078},{},[4079,4084,4086,4092],{"type":42,"tag":67,"props":4080,"children":4081},{},[4082],{"type":48,"value":4083},"Colors",{"type":48,"value":4085},": 6-char hex without # (e.g., ",{"type":42,"tag":222,"props":4087,"children":4089},{"className":4088},[],[4090],{"type":48,"value":4091},"\"FF0000\"",{"type":48,"value":463},{"type":42,"tag":87,"props":4094,"children":4095},{},[4096,4101],{"type":42,"tag":67,"props":4097,"children":4098},{},[4099],{"type":48,"value":4100},"English font",{"type":48,"value":4102},": Arial (default), or approved alternatives",{"type":42,"tag":87,"props":4104,"children":4105},{},[4106,4111],{"type":42,"tag":67,"props":4107,"children":4108},{},[4109],{"type":48,"value":4110},"Chinese font",{"type":48,"value":4112},": Microsoft YaHei",{"type":42,"tag":87,"props":4114,"children":4115},{},[4116,4121],{"type":42,"tag":67,"props":4117,"children":4118},{},[4119],{"type":48,"value":4120},"Page badge position",{"type":48,"value":1283},{"type":42,"tag":123,"props":4123,"children":4124},{},[],{"type":42,"tag":57,"props":4126,"children":4128},{"id":4127},"qa-required",[4129],{"type":48,"value":4130},"QA (Required)",{"type":42,"tag":51,"props":4132,"children":4133},{},[4134],{"type":42,"tag":67,"props":4135,"children":4136},{},[4137],{"type":48,"value":4138},"Assume there are problems. Your job is to find them.",{"type":42,"tag":51,"props":4140,"children":4141},{},[4142],{"type":48,"value":4143},"Your first render is almost never correct. Approach QA as a bug hunt, not a confirmation step. If you found zero issues on first inspection, you weren't looking hard enough.",{"type":42,"tag":133,"props":4145,"children":4147},{"id":4146},"content-qa",[4148],{"type":48,"value":4149},"Content QA",{"type":42,"tag":215,"props":4151,"children":4155},{"className":4152,"code":4153,"language":4154,"meta":219,"style":219},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","python -m markitdown slide-XX-preview.pptx\n","bash",[4156],{"type":42,"tag":222,"props":4157,"children":4158},{"__ignoreMap":219},[4159],{"type":42,"tag":226,"props":4160,"children":4161},{"class":228,"line":229},[4162,4167,4172,4177],{"type":42,"tag":226,"props":4163,"children":4164},{"style":233},[4165],{"type":48,"value":4166},"python",{"type":42,"tag":226,"props":4168,"children":4169},{"style":250},[4170],{"type":48,"value":4171}," -m",{"type":42,"tag":226,"props":4173,"children":4174},{"style":250},[4175],{"type":48,"value":4176}," markitdown",{"type":42,"tag":226,"props":4178,"children":4179},{"style":250},[4180],{"type":48,"value":4181}," slide-XX-preview.pptx\n",{"type":42,"tag":51,"props":4183,"children":4184},{},[4185],{"type":48,"value":4186},"Check for missing content, typos, wrong order.",{"type":42,"tag":51,"props":4188,"children":4189},{},[4190],{"type":42,"tag":67,"props":4191,"children":4192},{},[4193],{"type":48,"value":4194},"Check for leftover placeholder text:",{"type":42,"tag":215,"props":4196,"children":4198},{"className":4152,"code":4197,"language":4154,"meta":219,"style":219},"python -m markitdown slide-XX-preview.pptx | grep -iE \"xxxx|lorem|ipsum|placeholder\"\n",[4199],{"type":42,"tag":222,"props":4200,"children":4201},{"__ignoreMap":219},[4202],{"type":42,"tag":226,"props":4203,"children":4204},{"class":228,"line":229},[4205,4209,4213,4217,4222,4227,4232,4237,4241,4246],{"type":42,"tag":226,"props":4206,"children":4207},{"style":233},[4208],{"type":48,"value":4166},{"type":42,"tag":226,"props":4210,"children":4211},{"style":250},[4212],{"type":48,"value":4171},{"type":42,"tag":226,"props":4214,"children":4215},{"style":250},[4216],{"type":48,"value":4176},{"type":42,"tag":226,"props":4218,"children":4219},{"style":250},[4220],{"type":48,"value":4221}," slide-XX-preview.pptx",{"type":42,"tag":226,"props":4223,"children":4224},{"style":239},[4225],{"type":48,"value":4226}," |",{"type":42,"tag":226,"props":4228,"children":4229},{"style":233},[4230],{"type":48,"value":4231}," grep",{"type":42,"tag":226,"props":4233,"children":4234},{"style":250},[4235],{"type":48,"value":4236}," -iE",{"type":42,"tag":226,"props":4238,"children":4239},{"style":239},[4240],{"type":48,"value":247},{"type":42,"tag":226,"props":4242,"children":4243},{"style":250},[4244],{"type":48,"value":4245},"xxxx|lorem|ipsum|placeholder",{"type":42,"tag":226,"props":4247,"children":4248},{"style":239},[4249],{"type":48,"value":1749},{"type":42,"tag":51,"props":4251,"children":4252},{},[4253],{"type":48,"value":4254},"If grep returns results, fix them before declaring success.",{"type":42,"tag":133,"props":4256,"children":4258},{"id":4257},"verification-loop",[4259],{"type":48,"value":4260},"Verification Loop",{"type":42,"tag":4262,"props":4263,"children":4264},"ol",{},[4265,4278,4288,4293,4303],{"type":42,"tag":87,"props":4266,"children":4267},{},[4268,4270,4276],{"type":48,"value":4269},"Generate slide → Extract text with ",{"type":42,"tag":222,"props":4271,"children":4273},{"className":4272},[],[4274],{"type":48,"value":4275},"python -m markitdown slide-XX-preview.pptx",{"type":48,"value":4277}," → Review content",{"type":42,"tag":87,"props":4279,"children":4280},{},[4281,4286],{"type":42,"tag":67,"props":4282,"children":4283},{},[4284],{"type":48,"value":4285},"List issues found",{"type":48,"value":4287}," (if none found, look again more critically)",{"type":42,"tag":87,"props":4289,"children":4290},{},[4291],{"type":48,"value":4292},"Fix issues",{"type":42,"tag":87,"props":4294,"children":4295},{},[4296,4301],{"type":42,"tag":67,"props":4297,"children":4298},{},[4299],{"type":48,"value":4300},"Re-verify",{"type":48,"value":4302}," — one fix often creates another problem",{"type":42,"tag":87,"props":4304,"children":4305},{},[4306],{"type":48,"value":4307},"Repeat until verification reveals no new issues",{"type":42,"tag":51,"props":4309,"children":4310},{},[4311],{"type":42,"tag":67,"props":4312,"children":4313},{},[4314],{"type":48,"value":4315},"Do not declare success until you've completed at least one fix-and-verify cycle.",{"type":42,"tag":123,"props":4317,"children":4318},{},[],{"type":42,"tag":4320,"props":4321,"children":4322},"style",{},[4323],{"type":48,"value":4324},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4326,"total":3072},[4327,4349,4363,4380,4393,4413,4431],{"slug":4328,"name":4328,"fn":4329,"description":4330,"org":4331,"tags":4332,"stars":26,"repoUrl":27,"updatedAt":4348},"android-native-dev","develop Android native applications","Android native application development and UI design guide. Covers Material Design 3, Kotlin\u002FCompose development, project configuration, accessibility, and build troubleshooting. Read this before Android native application development.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4333,4336,4339,4342,4345],{"name":4334,"slug":4335,"type":16},"Accessibility","accessibility",{"name":4337,"slug":4338,"type":16},"Android","android",{"name":4340,"slug":4341,"type":16},"Kotlin","kotlin",{"name":4343,"slug":4344,"type":16},"Mobile","mobile",{"name":4346,"slug":4347,"type":16},"UI Components","ui-components","2026-07-13T06:16:54.247834",{"slug":4350,"name":4350,"fn":4351,"description":4352,"org":4353,"tags":4354,"stars":26,"repoUrl":27,"updatedAt":4362},"buddy-sings","generate singing performances for AI companions","Use when user wants their Claude Code pet (\u002Fbuddy) to sing a song. Triggers on any request that combines the concept of their Claude Code buddy, pet, or companion with singing or music. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4355,4358,4361],{"name":4356,"slug":4357,"type":16},"Agents","agents",{"name":4359,"slug":4360,"type":16},"Audio","audio",{"name":21,"slug":22,"type":16},"2026-07-13T06:16:35.130644",{"slug":4364,"name":4364,"fn":4365,"description":4366,"org":4367,"tags":4368,"stars":26,"repoUrl":27,"updatedAt":4379},"color-font-skill","select color palettes and font pairings","Choose presentation-ready color palettes and font pairings for PPT\u002Fdesign tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: 配色, 色板, 字体, color palette, font, PPT配色, 字体搭配.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4369,4372,4373,4376],{"name":4370,"slug":4371,"type":16},"Design","design",{"name":14,"slug":15,"type":16},{"name":4374,"slug":4375,"type":16},"Themes","themes",{"name":4377,"slug":4378,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":4381,"name":4381,"fn":4382,"description":4383,"org":4384,"tags":4385,"stars":26,"repoUrl":27,"updatedAt":4392},"design-style-skill","select visual design systems for presentations","Select a consistent visual design system for PPT slides using radius\u002Fspacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp\u002FSoft\u002FRounded\u002FPill recipes, component mappings, typography\u002Fspacing rules, and mixing guidance. Triggers: 风格, style, radius, spacing, 圆角, 间距, PPT风格, 视觉风格, design style, component style.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4386,4387,4390,4391],{"name":4370,"slug":4371,"type":16},{"name":4388,"slug":4389,"type":16},"Design System","design-system",{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},"2026-07-13T06:17:10.398389",{"slug":4394,"name":4394,"fn":4395,"description":4396,"org":4397,"tags":4398,"stars":26,"repoUrl":27,"updatedAt":4412},"flutter-dev","build cross-platform apps with Flutter","Flutter cross-platform development guide covering widget patterns, Riverpod\u002FBloc state management, GoRouter navigation, performance optimization, and platform-specific implementations. Includes const optimization, responsive layouts, testing strategies, and DevTools profiling.\nUse when: building Flutter apps, implementing state management (Riverpod\u002FBloc), setting up GoRouter navigation, creating custom widgets, optimizing performance, writing widget tests, cross-platform development.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4399,4402,4405,4406,4409],{"name":4400,"slug":4401,"type":16},"Dart","dart",{"name":4403,"slug":4404,"type":16},"Flutter","flutter",{"name":4343,"slug":4344,"type":16},{"name":4407,"slug":4408,"type":16},"Performance","performance",{"name":4410,"slug":4411,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":4414,"name":4414,"fn":4415,"description":4416,"org":4417,"tags":4418,"stars":26,"repoUrl":27,"updatedAt":4430},"frontend-dev","build visually striking frontend web pages","Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with real media, advanced motion, and compelling copy.\nUse when: building landing pages, marketing sites, product pages, dashboards,\ngenerating media assets (image\u002Fvideo\u002Faudio\u002Fmusic), writing conversion copy,\ncreating generative art, or implementing cinematic scroll animations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4419,4422,4423,4424,4427],{"name":4420,"slug":4421,"type":16},"Animation","animation",{"name":21,"slug":22,"type":16},{"name":4370,"slug":4371,"type":16},{"name":4425,"slug":4426,"type":16},"Frontend","frontend",{"name":4428,"slug":4429,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":4432,"name":4432,"fn":4433,"description":4434,"org":4435,"tags":4436,"stars":26,"repoUrl":27,"updatedAt":4448},"fullstack-dev","build full-stack web applications","Full-stack backend architecture and frontend-backend integration guide.\nTRIGGER when: building a full-stack app, creating REST API with frontend, scaffolding backend service,\nbuilding todo app, building CRUD app, building real-time app, building chat app,\nExpress + React, Next.js API, Node.js backend, Python backend, Go backend,\ndesigning service layers, implementing error handling, managing config\u002Fauth,\nsetting up API clients, implementing auth flows, handling file uploads,\nadding real-time features (SSE\u002FWebSocket), hardening for production.\nDO NOT TRIGGER when: pure frontend UI work, pure CSS\u002Fstyling, database schema only.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4437,4440,4441,4444,4447],{"name":4438,"slug":4439,"type":16},"Backend","backend",{"name":4425,"slug":4426,"type":16},{"name":4442,"slug":4443,"type":16},"Full-stack","full-stack",{"name":4445,"slug":4446,"type":16},"REST API","rest-api",{"name":4428,"slug":4429,"type":16},"2026-07-13T06:16:43.219005",{"items":4450,"total":3430},[4451,4459,4465,4472,4479,4487,4495,4503,4518,4534,4553,4563],{"slug":4328,"name":4328,"fn":4329,"description":4330,"org":4452,"tags":4453,"stars":26,"repoUrl":27,"updatedAt":4348},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4454,4455,4456,4457,4458],{"name":4334,"slug":4335,"type":16},{"name":4337,"slug":4338,"type":16},{"name":4340,"slug":4341,"type":16},{"name":4343,"slug":4344,"type":16},{"name":4346,"slug":4347,"type":16},{"slug":4350,"name":4350,"fn":4351,"description":4352,"org":4460,"tags":4461,"stars":26,"repoUrl":27,"updatedAt":4362},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4462,4463,4464],{"name":4356,"slug":4357,"type":16},{"name":4359,"slug":4360,"type":16},{"name":21,"slug":22,"type":16},{"slug":4364,"name":4364,"fn":4365,"description":4366,"org":4466,"tags":4467,"stars":26,"repoUrl":27,"updatedAt":4379},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4468,4469,4470,4471],{"name":4370,"slug":4371,"type":16},{"name":14,"slug":15,"type":16},{"name":4374,"slug":4375,"type":16},{"name":4377,"slug":4378,"type":16},{"slug":4381,"name":4381,"fn":4382,"description":4383,"org":4473,"tags":4474,"stars":26,"repoUrl":27,"updatedAt":4392},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4475,4476,4477,4478],{"name":4370,"slug":4371,"type":16},{"name":4388,"slug":4389,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"slug":4394,"name":4394,"fn":4395,"description":4396,"org":4480,"tags":4481,"stars":26,"repoUrl":27,"updatedAt":4412},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4482,4483,4484,4485,4486],{"name":4400,"slug":4401,"type":16},{"name":4403,"slug":4404,"type":16},{"name":4343,"slug":4344,"type":16},{"name":4407,"slug":4408,"type":16},{"name":4410,"slug":4411,"type":16},{"slug":4414,"name":4414,"fn":4415,"description":4416,"org":4488,"tags":4489,"stars":26,"repoUrl":27,"updatedAt":4430},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4490,4491,4492,4493,4494],{"name":4420,"slug":4421,"type":16},{"name":21,"slug":22,"type":16},{"name":4370,"slug":4371,"type":16},{"name":4425,"slug":4426,"type":16},{"name":4428,"slug":4429,"type":16},{"slug":4432,"name":4432,"fn":4433,"description":4434,"org":4496,"tags":4497,"stars":26,"repoUrl":27,"updatedAt":4448},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4498,4499,4500,4501,4502],{"name":4438,"slug":4439,"type":16},{"name":4425,"slug":4426,"type":16},{"name":4442,"slug":4443,"type":16},{"name":4445,"slug":4446,"type":16},{"name":4428,"slug":4429,"type":16},{"slug":4504,"name":4504,"fn":4505,"description":4506,"org":4507,"tags":4508,"stars":26,"repoUrl":27,"updatedAt":4517},"gif-sticker-maker","create animated GIF stickers from photos","Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert photos to Funko Pop \u002F Pop Mart blind box style animations.\nTriggers: sticker, GIF, cartoon, emoji, expression pack, avatar animation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4509,4510,4511,4514],{"name":4420,"slug":4421,"type":16},{"name":21,"slug":22,"type":16},{"name":4512,"slug":4513,"type":16},"Images","images",{"name":4515,"slug":4516,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":4519,"name":4519,"fn":4520,"description":4521,"org":4522,"tags":4523,"stars":26,"repoUrl":27,"updatedAt":4533},"ios-application-dev","develop iOS applications with SwiftUI and UIKit","iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI components, and SwiftUI design guidelines. For detailed references on specific topics, see the reference files.\nUse when: developing iOS apps, implementing UI, reviewing iOS code, working with UIKit\u002FSnapKit\u002FSwiftUI layouts, building iPhone interfaces, Swift mobile development, Apple HIG compliance, iOS accessibility implementation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4524,4525,4528,4529,4532],{"name":4334,"slug":4335,"type":16},{"name":4526,"slug":4527,"type":16},"iOS","ios",{"name":4343,"slug":4344,"type":16},{"name":4530,"slug":4531,"type":16},"SwiftUI","swiftui",{"name":4346,"slug":4347,"type":16},"2026-07-13T06:16:55.686092",{"slug":4535,"name":4535,"fn":4536,"description":4537,"org":4538,"tags":4539,"stars":26,"repoUrl":27,"updatedAt":4552},"minimax-docx","create and edit DOCX documents","Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill\u002Fedit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say \"write a report\", \"draft a proposal\", \"make a contract\", \"fill in this form\", \"reformat to match this template\", or any task whose final output is a .docx file. Even if the user doesn't mention \"docx\" explicitly, if the task implies a printable\u002Fformal document, use this skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4540,4543,4546,4549],{"name":4541,"slug":4542,"type":16},"Documents","documents",{"name":4544,"slug":4545,"type":16},"DOCX","docx",{"name":4547,"slug":4548,"type":16},"Office","office",{"name":4550,"slug":4551,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":4554,"name":4554,"fn":4555,"description":4556,"org":4557,"tags":4558,"stars":26,"repoUrl":27,"updatedAt":4562},"minimax-music-gen","generate music and audio tracks","Use when user wants to generate music, songs, or audio tracks. Triggers on any request involving music creation, song writing, lyrics generation, audio production, or covers. Also triggers when user provides lyrics and wants them turned into a song, or describes a mood\u002Fscene and wants background music. Supports multilingual triggers — match equivalent phrases in any language. Do NOT use for music playback of existing files, music theory questions, or music recommendation without generation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4559,4560,4561],{"name":4359,"slug":4360,"type":16},{"name":21,"slug":22,"type":16},{"name":4515,"slug":4516,"type":16},"2026-07-13T06:16:50.381758",{"slug":4564,"name":4564,"fn":4565,"description":4566,"org":4567,"tags":4568,"stars":26,"repoUrl":27,"updatedAt":4572},"minimax-music-playlist","generate personalized music playlists","Generate personalized music playlists by analyzing the user's music taste and generation feedback history. Triggers on any request involving playlist generation, music taste profiling, or personalized music recommendations. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[4569,4570,4571],{"name":4359,"slug":4360,"type":16},{"name":21,"slug":22,"type":16},{"name":4515,"slug":4516,"type":16},"2026-07-13T06:16:57.002997"]