@nguyenphp/antigravity-marketing 1.0.18 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (231) hide show
  1. package/README.md +130 -78
  2. package/package.json +4 -3
  3. package/templates/.agent/skills/marketing-report-expert/SKILL.md +70 -0
  4. package/templates/.agent/skills/minimax-docx/LICENSE +21 -0
  5. package/templates/.agent/skills/minimax-docx/SKILL.md +274 -0
  6. package/templates/.agent/skills/minimax-docx/assets/styles/academic_styles.xml +250 -0
  7. package/templates/.agent/skills/minimax-docx/assets/styles/corporate_styles.xml +284 -0
  8. package/templates/.agent/skills/minimax-docx/assets/styles/default_styles.xml +449 -0
  9. package/templates/.agent/skills/minimax-docx/assets/xsd/aesthetic-rules.xsd +470 -0
  10. package/templates/.agent/skills/minimax-docx/assets/xsd/business-rules.xsd +130 -0
  11. package/templates/.agent/skills/minimax-docx/assets/xsd/common-types.xsd +159 -0
  12. package/templates/.agent/skills/minimax-docx/assets/xsd/wml-subset.xsd +589 -0
  13. package/templates/.agent/skills/minimax-docx/references/cjk_typography.md +357 -0
  14. package/templates/.agent/skills/minimax-docx/references/cjk_university_template_guide.md +184 -0
  15. package/templates/.agent/skills/minimax-docx/references/comments_guide.md +191 -0
  16. package/templates/.agent/skills/minimax-docx/references/design_good_bad_examples.md +829 -0
  17. package/templates/.agent/skills/minimax-docx/references/design_principles.md +819 -0
  18. package/templates/.agent/skills/minimax-docx/references/openxml_element_order.md +308 -0
  19. package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part1.md +4061 -0
  20. package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part2.md +2820 -0
  21. package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part3.md +3381 -0
  22. package/templates/.agent/skills/minimax-docx/references/openxml_namespaces.md +82 -0
  23. package/templates/.agent/skills/minimax-docx/references/openxml_units.md +72 -0
  24. package/templates/.agent/skills/minimax-docx/references/scenario_a_create.md +284 -0
  25. package/templates/.agent/skills/minimax-docx/references/scenario_b_edit_content.md +295 -0
  26. package/templates/.agent/skills/minimax-docx/references/scenario_c_apply_template.md +456 -0
  27. package/templates/.agent/skills/minimax-docx/references/track_changes_guide.md +200 -0
  28. package/templates/.agent/skills/minimax-docx/references/troubleshooting.md +506 -0
  29. package/templates/.agent/skills/minimax-docx/references/typography_guide.md +294 -0
  30. package/templates/.agent/skills/minimax-docx/references/xsd_validation_guide.md +158 -0
  31. package/templates/.agent/skills/minimax-docx/scripts/doc_to_docx.sh +40 -0
  32. package/templates/.agent/skills/minimax-docx/scripts/docx_preview.sh +37 -0
  33. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj +19 -0
  34. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs +18 -0
  35. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/AnalyzeCommand.cs +147 -0
  36. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ApplyTemplateCommand.cs +322 -0
  37. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/CreateCommand.cs +324 -0
  38. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/DiffCommand.cs +155 -0
  39. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/EditContentCommand.cs +487 -0
  40. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/FixOrderCommand.cs +108 -0
  41. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/MergeRunsCommand.cs +122 -0
  42. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ValidateCommand.cs +107 -0
  43. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj +15 -0
  44. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/CommentSynchronizer.cs +169 -0
  45. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/ElementOrder.cs +80 -0
  46. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/NamespaceConstants.cs +42 -0
  47. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/RunMerger.cs +81 -0
  48. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/StyleAnalyzer.cs +81 -0
  49. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/TrackChangesHelper.cs +99 -0
  50. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/UnitConverter.cs +23 -0
  51. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples.cs +1832 -0
  52. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch1.cs +910 -0
  53. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch2.cs +999 -0
  54. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch3.cs +1048 -0
  55. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch4.cs +1038 -0
  56. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/CharacterFormattingSamples.cs +1020 -0
  57. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/DocumentCreationSamples.cs +1121 -0
  58. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FieldAndTocSamples.cs +624 -0
  59. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FootnoteAndCommentSamples.cs +675 -0
  60. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/HeaderFooterSamples.cs +838 -0
  61. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ImageSamples.cs +917 -0
  62. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ListAndNumberingSamples.cs +826 -0
  63. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ParagraphFormattingSamples.cs +1199 -0
  64. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/StyleSystemSamples.cs +1487 -0
  65. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TableSamples.cs +1163 -0
  66. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TrackChangesSamples.cs +595 -0
  67. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/CjkHelper.cs +39 -0
  68. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/FontDefaults.cs +24 -0
  69. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/PageSizes.cs +20 -0
  70. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/BusinessRuleValidator.cs +224 -0
  71. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/GateCheckValidator.cs +148 -0
  72. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/ValidationResult.cs +23 -0
  73. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/XsdValidator.cs +69 -0
  74. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.slnx +4 -0
  75. package/templates/.agent/skills/minimax-docx/scripts/env_check.sh +196 -0
  76. package/templates/.agent/skills/minimax-docx/scripts/setup.ps1 +274 -0
  77. package/templates/.agent/skills/minimax-docx/scripts/setup.sh +504 -0
  78. package/templates/.agent/skills/minimax-multimodal-toolkit/SKILL.md +359 -0
  79. package/templates/.agent/skills/minimax-pdf/README.md +222 -0
  80. package/templates/.agent/skills/minimax-pdf/SKILL.md +201 -0
  81. package/templates/.agent/skills/minimax-pdf/design/design.md +381 -0
  82. package/templates/.agent/skills/minimax-pdf/scripts/cover.py +1579 -0
  83. package/templates/.agent/skills/minimax-pdf/scripts/fill_inspect.py +200 -0
  84. package/templates/.agent/skills/minimax-pdf/scripts/fill_write.py +242 -0
  85. package/templates/.agent/skills/minimax-pdf/scripts/make.sh +491 -0
  86. package/templates/.agent/skills/minimax-pdf/scripts/merge.py +112 -0
  87. package/templates/.agent/skills/minimax-pdf/scripts/palette.py +559 -0
  88. package/templates/.agent/skills/minimax-pdf/scripts/reformat_parse.py +374 -0
  89. package/templates/.agent/skills/minimax-pdf/scripts/render_body.py +1055 -0
  90. package/templates/.agent/skills/minimax-pdf/scripts/render_cover.cjs +111 -0
  91. package/templates/.agent/skills/minimax-xlsx/SKILL.md +138 -0
  92. package/templates/.agent/skills/minimax-xlsx/references/create.md +691 -0
  93. package/templates/.agent/skills/minimax-xlsx/references/edit.md +684 -0
  94. package/templates/.agent/skills/minimax-xlsx/references/fix.md +37 -0
  95. package/templates/.agent/skills/minimax-xlsx/references/format.md +768 -0
  96. package/templates/.agent/skills/minimax-xlsx/references/ooxml-cheatsheet.md +231 -0
  97. package/templates/.agent/skills/minimax-xlsx/references/read-analyze.md +97 -0
  98. package/templates/.agent/skills/minimax-xlsx/references/validate.md +772 -0
  99. package/templates/.agent/skills/minimax-xlsx/scripts/formula_check.py +422 -0
  100. package/templates/.agent/skills/minimax-xlsx/scripts/libreoffice_recalc.py +248 -0
  101. package/templates/.agent/skills/minimax-xlsx/scripts/shared_strings_builder.py +163 -0
  102. package/templates/.agent/skills/minimax-xlsx/scripts/style_audit.py +575 -0
  103. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_add_column.py +395 -0
  104. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_insert_row.py +274 -0
  105. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_pack.py +87 -0
  106. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_reader.py +362 -0
  107. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_shift_rows.py +396 -0
  108. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_unpack.py +130 -0
  109. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/[Content_Types].xml +9 -0
  110. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/_rels/.rels +6 -0
  111. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/_rels/workbook.xml.rels +19 -0
  112. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/sharedStrings.xml +33 -0
  113. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/styles.xml +160 -0
  114. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/workbook.xml +30 -0
  115. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/worksheets/sheet1.xml +70 -0
  116. package/templates/.agent/skills/pptx-generator/SKILL.md +249 -0
  117. package/templates/.agent/skills/pptx-generator/references/design-system.md +392 -0
  118. package/templates/.agent/skills/pptx-generator/references/editing.md +162 -0
  119. package/templates/.agent/skills/pptx-generator/references/pitfalls.md +112 -0
  120. package/templates/.agent/skills/pptx-generator/references/pptxgenjs.md +420 -0
  121. package/templates/.agent/skills/pptx-generator/references/slide-types.md +413 -0
  122. package/templates/.agent/skills/tutorial-video-expert/SKILL.md +88 -0
  123. package/templates/.agent/skills/ui-ux-pro-max/SKILL.md +170 -585
  124. package/templates/.agent/skills/vision-analysis/SKILL.md +174 -0
  125. package/templates/.agent/workflows/analyze.md +3 -0
  126. package/templates/.agent/workflows/brand-report.md +44 -0
  127. package/templates/.agent/workflows/report.md +49 -0
  128. package/templates/.agent/agents/backend-specialist.md +0 -263
  129. package/templates/.agent/agents/database-architect.md +0 -226
  130. package/templates/.agent/agents/debugger.md +0 -225
  131. package/templates/.agent/agents/devops-engineer.md +0 -242
  132. package/templates/.agent/agents/frontend-specialist.md +0 -527
  133. package/templates/.agent/agents/game-developer.md +0 -162
  134. package/templates/.agent/agents/mobile-developer.md +0 -377
  135. package/templates/.agent/agents/penetration-tester.md +0 -188
  136. package/templates/.agent/agents/security-auditor.md +0 -170
  137. package/templates/.agent/agents/test-engineer.md +0 -158
  138. package/templates/.agent/skills/api-patterns/SKILL.md +0 -81
  139. package/templates/.agent/skills/api-patterns/api-style.md +0 -42
  140. package/templates/.agent/skills/api-patterns/auth.md +0 -24
  141. package/templates/.agent/skills/api-patterns/documentation.md +0 -26
  142. package/templates/.agent/skills/api-patterns/graphql.md +0 -41
  143. package/templates/.agent/skills/api-patterns/rate-limiting.md +0 -31
  144. package/templates/.agent/skills/api-patterns/response.md +0 -37
  145. package/templates/.agent/skills/api-patterns/rest.md +0 -40
  146. package/templates/.agent/skills/api-patterns/scripts/api_validator.py +0 -211
  147. package/templates/.agent/skills/api-patterns/security-testing.md +0 -122
  148. package/templates/.agent/skills/api-patterns/trpc.md +0 -41
  149. package/templates/.agent/skills/api-patterns/versioning.md +0 -22
  150. package/templates/.agent/skills/app-builder/SKILL.md +0 -75
  151. package/templates/.agent/skills/app-builder/agent-coordination.md +0 -71
  152. package/templates/.agent/skills/app-builder/feature-building.md +0 -53
  153. package/templates/.agent/skills/app-builder/project-detection.md +0 -34
  154. package/templates/.agent/skills/app-builder/scaffolding.md +0 -118
  155. package/templates/.agent/skills/app-builder/tech-stack.md +0 -40
  156. package/templates/.agent/skills/app-builder/templates/SKILL.md +0 -39
  157. package/templates/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +0 -76
  158. package/templates/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +0 -92
  159. package/templates/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +0 -88
  160. package/templates/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +0 -88
  161. package/templates/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +0 -83
  162. package/templates/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +0 -90
  163. package/templates/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +0 -90
  164. package/templates/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +0 -82
  165. package/templates/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +0 -100
  166. package/templates/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +0 -106
  167. package/templates/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +0 -101
  168. package/templates/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +0 -83
  169. package/templates/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +0 -93
  170. package/templates/.agent/skills/architecture/SKILL.md +0 -55
  171. package/templates/.agent/skills/architecture/context-discovery.md +0 -43
  172. package/templates/.agent/skills/architecture/examples.md +0 -94
  173. package/templates/.agent/skills/architecture/pattern-selection.md +0 -68
  174. package/templates/.agent/skills/architecture/patterns-reference.md +0 -50
  175. package/templates/.agent/skills/architecture/trade-off-analysis.md +0 -77
  176. package/templates/.agent/skills/bash-linux/SKILL.md +0 -199
  177. package/templates/.agent/skills/behavioral-modes/SKILL.md +0 -242
  178. package/templates/.agent/skills/clean-code/SKILL.md +0 -201
  179. package/templates/.agent/skills/code-review-checklist/SKILL.md +0 -109
  180. package/templates/.agent/skills/database-design/SKILL.md +0 -52
  181. package/templates/.agent/skills/database-design/database-selection.md +0 -43
  182. package/templates/.agent/skills/database-design/indexing.md +0 -39
  183. package/templates/.agent/skills/database-design/migrations.md +0 -48
  184. package/templates/.agent/skills/database-design/optimization.md +0 -36
  185. package/templates/.agent/skills/database-design/orm-selection.md +0 -30
  186. package/templates/.agent/skills/database-design/schema-design.md +0 -56
  187. package/templates/.agent/skills/database-design/scripts/schema_validator.py +0 -172
  188. package/templates/.agent/skills/deployment-procedures/SKILL.md +0 -241
  189. package/templates/.agent/skills/docker-expert/SKILL.md +0 -409
  190. package/templates/.agent/skills/game-development/2d-games/SKILL.md +0 -119
  191. package/templates/.agent/skills/game-development/3d-games/SKILL.md +0 -135
  192. package/templates/.agent/skills/game-development/SKILL.md +0 -167
  193. package/templates/.agent/skills/game-development/game-art/SKILL.md +0 -185
  194. package/templates/.agent/skills/game-development/game-audio/SKILL.md +0 -190
  195. package/templates/.agent/skills/game-development/game-design/SKILL.md +0 -129
  196. package/templates/.agent/skills/game-development/mobile-games/SKILL.md +0 -108
  197. package/templates/.agent/skills/game-development/multiplayer/SKILL.md +0 -132
  198. package/templates/.agent/skills/game-development/pc-games/SKILL.md +0 -144
  199. package/templates/.agent/skills/game-development/vr-ar/SKILL.md +0 -123
  200. package/templates/.agent/skills/game-development/web-games/SKILL.md +0 -150
  201. package/templates/.agent/skills/lint-and-validate/SKILL.md +0 -45
  202. package/templates/.agent/skills/lint-and-validate/scripts/lint_runner.py +0 -172
  203. package/templates/.agent/skills/lint-and-validate/scripts/type_coverage.py +0 -173
  204. package/templates/.agent/skills/mcp-builder/SKILL.md +0 -176
  205. package/templates/.agent/skills/nestjs-expert/SKILL.md +0 -552
  206. package/templates/.agent/skills/nextjs-best-practices/SKILL.md +0 -203
  207. package/templates/.agent/skills/nodejs-best-practices/SKILL.md +0 -333
  208. package/templates/.agent/skills/parallel-agents/SKILL.md +0 -175
  209. package/templates/.agent/skills/performance-profiling/SKILL.md +0 -143
  210. package/templates/.agent/skills/performance-profiling/scripts/lighthouse_audit.py +0 -76
  211. package/templates/.agent/skills/powershell-windows/SKILL.md +0 -167
  212. package/templates/.agent/skills/prisma-expert/SKILL.md +0 -355
  213. package/templates/.agent/skills/python-patterns/SKILL.md +0 -441
  214. package/templates/.agent/skills/react-patterns/SKILL.md +0 -198
  215. package/templates/.agent/skills/red-team-tactics/SKILL.md +0 -199
  216. package/templates/.agent/skills/server-management/SKILL.md +0 -161
  217. package/templates/.agent/skills/systematic-debugging/SKILL.md +0 -109
  218. package/templates/.agent/skills/tdd-workflow/SKILL.md +0 -149
  219. package/templates/.agent/skills/testing-patterns/SKILL.md +0 -178
  220. package/templates/.agent/skills/testing-patterns/scripts/test_runner.py +0 -219
  221. package/templates/.agent/skills/typescript-expert/SKILL.md +0 -429
  222. package/templates/.agent/skills/vue-expert/SKILL.md +0 -374
  223. package/templates/.agent/skills/vulnerability-scanner/SKILL.md +0 -276
  224. package/templates/.agent/skills/vulnerability-scanner/checklists.md +0 -121
  225. package/templates/.agent/skills/vulnerability-scanner/scripts/security_scan.py +0 -458
  226. package/templates/.agent/skills/webapp-testing/SKILL.md +0 -187
  227. package/templates/.agent/skills/webapp-testing/scripts/playwright_runner.py +0 -173
  228. package/templates/.agent/workflows/debug.md +0 -103
  229. package/templates/.agent/workflows/deploy.md +0 -176
  230. package/templates/.agent/workflows/enhance.md +0 -63
  231. package/templates/.agent/workflows/test.md +0 -144
@@ -0,0 +1,420 @@
1
+ # PptxGenJS Tutorial
2
+
3
+ ## Setup & Basic Structure
4
+
5
+ ```javascript
6
+ const pptxgen = require("pptxgenjs");
7
+
8
+ let pres = new pptxgen();
9
+ pres.layout = 'LAYOUT_16x9'; // or 'LAYOUT_16x10', 'LAYOUT_4x3', 'LAYOUT_WIDE'
10
+ pres.author = 'Your Name';
11
+ pres.title = 'Presentation Title';
12
+
13
+ let slide = pres.addSlide();
14
+ slide.addText("Hello World!", { x: 0.5, y: 0.5, fontSize: 36, color: "363636" });
15
+
16
+ pres.writeFile({ fileName: "Presentation.pptx" });
17
+ ```
18
+
19
+ ## Layout Dimensions
20
+
21
+ Slide dimensions (coordinates in inches):
22
+ - `LAYOUT_16x9`: 10" x 5.625" (default)
23
+ - `LAYOUT_16x10`: 10" x 6.25"
24
+ - `LAYOUT_4x3`: 10" x 7.5"
25
+ - `LAYOUT_WIDE`: 13.3" x 7.5"
26
+
27
+ ---
28
+
29
+ ## Text & Formatting
30
+
31
+ ```javascript
32
+ // Basic text
33
+ slide.addText("Simple Text", {
34
+ x: 1, y: 1, w: 8, h: 2, fontSize: 24, fontFace: "Arial",
35
+ color: "363636", bold: true, align: "center", valign: "middle"
36
+ });
37
+
38
+ // Character spacing (use charSpacing, not letterSpacing which is silently ignored)
39
+ slide.addText("SPACED TEXT", { x: 1, y: 1, w: 8, h: 1, charSpacing: 6 });
40
+
41
+ // Rich text arrays
42
+ slide.addText([
43
+ { text: "Bold ", options: { bold: true } },
44
+ { text: "Italic ", options: { italic: true } }
45
+ ], { x: 1, y: 3, w: 8, h: 1 });
46
+
47
+ // Multi-line text (requires breakLine: true)
48
+ slide.addText([
49
+ { text: "Line 1", options: { breakLine: true } },
50
+ { text: "Line 2", options: { breakLine: true } },
51
+ { text: "Line 3" } // Last item doesn't need breakLine
52
+ ], { x: 0.5, y: 0.5, w: 8, h: 2 });
53
+
54
+ // Text box margin (internal padding)
55
+ slide.addText("Title", {
56
+ x: 0.5, y: 0.3, w: 9, h: 0.6,
57
+ margin: 0 // Use 0 when aligning text with other elements like shapes or icons
58
+ });
59
+ ```
60
+
61
+ **Tip:** Text boxes have internal margin by default. Set `margin: 0` when you need text to align precisely with shapes, lines, or icons at the same x-position.
62
+
63
+ ---
64
+
65
+ ## Lists & Bullets
66
+
67
+ ```javascript
68
+ // CORRECT: Multiple bullets
69
+ slide.addText([
70
+ { text: "First item", options: { bullet: true, breakLine: true } },
71
+ { text: "Second item", options: { bullet: true, breakLine: true } },
72
+ { text: "Third item", options: { bullet: true } }
73
+ ], { x: 0.5, y: 0.5, w: 8, h: 3 });
74
+
75
+ // WRONG: Never use unicode bullets
76
+ slide.addText("* First item", { ... }); // Creates double bullets
77
+
78
+ // Sub-items and numbered lists
79
+ { text: "Sub-item", options: { bullet: true, indentLevel: 1 } }
80
+ { text: "First", options: { bullet: { type: "number" }, breakLine: true } }
81
+ ```
82
+
83
+ ---
84
+
85
+ ## Shapes
86
+
87
+ ```javascript
88
+ slide.addShape(pres.shapes.RECTANGLE, {
89
+ x: 0.5, y: 0.8, w: 1.5, h: 3.0,
90
+ fill: { color: "FF0000" }, line: { color: "000000", width: 2 }
91
+ });
92
+
93
+ slide.addShape(pres.shapes.OVAL, { x: 4, y: 1, w: 2, h: 2, fill: { color: "0000FF" } });
94
+
95
+ slide.addShape(pres.shapes.LINE, {
96
+ x: 1, y: 3, w: 5, h: 0, line: { color: "FF0000", width: 3, dashType: "dash" }
97
+ });
98
+
99
+ // With transparency
100
+ slide.addShape(pres.shapes.RECTANGLE, {
101
+ x: 1, y: 1, w: 3, h: 2,
102
+ fill: { color: "0088CC", transparency: 50 }
103
+ });
104
+
105
+ // Rounded rectangle (rectRadius only works with ROUNDED_RECTANGLE, not RECTANGLE)
106
+ // Don't pair with rectangular accent overlays -- they won't cover rounded corners. Use RECTANGLE instead.
107
+ slide.addShape(pres.shapes.ROUNDED_RECTANGLE, {
108
+ x: 1, y: 1, w: 3, h: 2,
109
+ fill: { color: "FFFFFF" }, rectRadius: 0.1
110
+ });
111
+
112
+ // With shadow
113
+ slide.addShape(pres.shapes.RECTANGLE, {
114
+ x: 1, y: 1, w: 3, h: 2,
115
+ fill: { color: "FFFFFF" },
116
+ shadow: { type: "outer", color: "000000", blur: 6, offset: 2, angle: 135, opacity: 0.15 }
117
+ });
118
+ ```
119
+
120
+ Shadow options:
121
+
122
+ | Property | Type | Range | Notes |
123
+ |----------|------|-------|-------|
124
+ | `type` | string | `"outer"`, `"inner"` | |
125
+ | `color` | string | 6-char hex (e.g. `"000000"`) | No `#` prefix, no 8-char hex -- see Common Pitfalls |
126
+ | `blur` | number | 0-100 pt | |
127
+ | `offset` | number | 0-200 pt | **Must be non-negative** -- negative values corrupt the file |
128
+ | `angle` | number | 0-359 degrees | Direction the shadow falls (135 = bottom-right, 270 = upward) |
129
+ | `opacity` | number | 0.0-1.0 | Use this for transparency, never encode in color string |
130
+
131
+ To cast a shadow upward (e.g. on a footer bar), use `angle: 270` with a positive offset -- do **not** use a negative offset.
132
+
133
+ **Note**: Gradient fills are not natively supported. Use a gradient image as a background instead.
134
+
135
+ ---
136
+
137
+ ## Images
138
+
139
+ ### Image Sources
140
+
141
+ ```javascript
142
+ // From file path
143
+ slide.addImage({ path: "images/chart.png", x: 1, y: 1, w: 5, h: 3 });
144
+
145
+ // From URL
146
+ slide.addImage({ path: "https://example.com/image.jpg", x: 1, y: 1, w: 5, h: 3 });
147
+
148
+ // From base64 (faster, no file I/O)
149
+ slide.addImage({ data: "image/png;base64,iVBORw0KGgo...", x: 1, y: 1, w: 5, h: 3 });
150
+ ```
151
+
152
+ ### Image Options
153
+
154
+ ```javascript
155
+ slide.addImage({
156
+ path: "image.png",
157
+ x: 1, y: 1, w: 5, h: 3,
158
+ rotate: 45, // 0-359 degrees
159
+ rounding: true, // Circular crop
160
+ transparency: 50, // 0-100
161
+ flipH: true, // Horizontal flip
162
+ flipV: false, // Vertical flip
163
+ altText: "Description", // Accessibility
164
+ hyperlink: { url: "https://example.com" }
165
+ });
166
+ ```
167
+
168
+ ### Image Sizing Modes
169
+
170
+ ```javascript
171
+ // Contain - fit inside, preserve ratio
172
+ { sizing: { type: 'contain', w: 4, h: 3 } }
173
+
174
+ // Cover - fill area, preserve ratio (may crop)
175
+ { sizing: { type: 'cover', w: 4, h: 3 } }
176
+
177
+ // Crop - cut specific portion
178
+ { sizing: { type: 'crop', x: 0.5, y: 0.5, w: 2, h: 2 } }
179
+ ```
180
+
181
+ ### Calculate Dimensions (preserve aspect ratio)
182
+
183
+ ```javascript
184
+ const origWidth = 1978, origHeight = 923, maxHeight = 3.0;
185
+ const calcWidth = maxHeight * (origWidth / origHeight);
186
+ const centerX = (10 - calcWidth) / 2;
187
+
188
+ slide.addImage({ path: "image.png", x: centerX, y: 1.2, w: calcWidth, h: maxHeight });
189
+ ```
190
+
191
+ ### Supported Formats
192
+
193
+ - **Standard**: PNG, JPG, GIF (animated GIFs work in Microsoft 365)
194
+ - **SVG**: Works in modern PowerPoint/Microsoft 365
195
+
196
+ ---
197
+
198
+ ## Icons
199
+
200
+ Use react-icons to generate SVG icons, then rasterize to PNG for universal compatibility.
201
+
202
+ ### Setup
203
+
204
+ ```javascript
205
+ const React = require("react");
206
+ const ReactDOMServer = require("react-dom/server");
207
+ const sharp = require("sharp");
208
+ const { FaCheckCircle, FaChartLine } = require("react-icons/fa");
209
+
210
+ function renderIconSvg(IconComponent, color = "#000000", size = 256) {
211
+ return ReactDOMServer.renderToStaticMarkup(
212
+ React.createElement(IconComponent, { color, size: String(size) })
213
+ );
214
+ }
215
+
216
+ async function iconToBase64Png(IconComponent, color, size = 256) {
217
+ const svg = renderIconSvg(IconComponent, color, size);
218
+ const pngBuffer = await sharp(Buffer.from(svg)).png().toBuffer();
219
+ return "image/png;base64," + pngBuffer.toString("base64");
220
+ }
221
+ ```
222
+
223
+ ### Add Icon to Slide
224
+
225
+ ```javascript
226
+ const iconData = await iconToBase64Png(FaCheckCircle, "#4472C4", 256);
227
+
228
+ slide.addImage({
229
+ data: iconData,
230
+ x: 1, y: 1, w: 0.5, h: 0.5 // Size in inches
231
+ });
232
+ ```
233
+
234
+ **Note**: Use size 256 or higher for crisp icons. The size parameter controls the rasterization resolution, not the display size on the slide (which is set by `w` and `h` in inches).
235
+
236
+ ### Icon Libraries
237
+
238
+ Install: `npm install -g react-icons react react-dom sharp`
239
+
240
+ Popular icon sets in react-icons:
241
+ - `react-icons/fa` - Font Awesome
242
+ - `react-icons/md` - Material Design
243
+ - `react-icons/hi` - Heroicons
244
+ - `react-icons/bi` - Bootstrap Icons
245
+
246
+ ---
247
+
248
+ ## Slide Backgrounds
249
+
250
+ ```javascript
251
+ // Solid color
252
+ slide.background = { color: "F1F1F1" };
253
+
254
+ // Color with transparency
255
+ slide.background = { color: "FF3399", transparency: 50 };
256
+
257
+ // Image from URL
258
+ slide.background = { path: "https://example.com/bg.jpg" };
259
+
260
+ // Image from base64
261
+ slide.background = { data: "image/png;base64,iVBORw0KGgo..." };
262
+ ```
263
+
264
+ ---
265
+
266
+ ## Tables
267
+
268
+ ```javascript
269
+ slide.addTable([
270
+ ["Header 1", "Header 2"],
271
+ ["Cell 1", "Cell 2"]
272
+ ], {
273
+ x: 1, y: 1, w: 8, h: 2,
274
+ border: { pt: 1, color: "999999" }, fill: { color: "F1F1F1" }
275
+ });
276
+
277
+ // Advanced with merged cells
278
+ let tableData = [
279
+ [{ text: "Header", options: { fill: { color: "6699CC" }, color: "FFFFFF", bold: true } }, "Cell"],
280
+ [{ text: "Merged", options: { colspan: 2 } }]
281
+ ];
282
+ slide.addTable(tableData, { x: 1, y: 3.5, w: 8, colW: [4, 4] });
283
+ ```
284
+
285
+ ---
286
+
287
+ ## Charts
288
+
289
+ ```javascript
290
+ // Bar chart
291
+ slide.addChart(pres.charts.BAR, [{
292
+ name: "Sales", labels: ["Q1", "Q2", "Q3", "Q4"], values: [4500, 5500, 6200, 7100]
293
+ }], {
294
+ x: 0.5, y: 0.6, w: 6, h: 3, barDir: 'col',
295
+ showTitle: true, title: 'Quarterly Sales'
296
+ });
297
+
298
+ // Line chart
299
+ slide.addChart(pres.charts.LINE, [{
300
+ name: "Temp", labels: ["Jan", "Feb", "Mar"], values: [32, 35, 42]
301
+ }], { x: 0.5, y: 4, w: 6, h: 3, lineSize: 3, lineSmooth: true });
302
+
303
+ // Pie chart
304
+ slide.addChart(pres.charts.PIE, [{
305
+ name: "Share", labels: ["A", "B", "Other"], values: [35, 45, 20]
306
+ }], { x: 7, y: 1, w: 5, h: 4, showPercent: true });
307
+ ```
308
+
309
+ ### Better-Looking Charts
310
+
311
+ Default charts look dated. Apply these options for a modern, clean appearance:
312
+
313
+ ```javascript
314
+ slide.addChart(pres.charts.BAR, chartData, {
315
+ x: 0.5, y: 1, w: 9, h: 4, barDir: "col",
316
+
317
+ // Custom colors (match your presentation palette)
318
+ chartColors: ["0D9488", "14B8A6", "5EEAD4"],
319
+
320
+ // Clean background
321
+ chartArea: { fill: { color: "FFFFFF" }, roundedCorners: true },
322
+
323
+ // Muted axis labels
324
+ catAxisLabelColor: "64748B",
325
+ valAxisLabelColor: "64748B",
326
+
327
+ // Subtle grid (value axis only)
328
+ valGridLine: { color: "E2E8F0", size: 0.5 },
329
+ catGridLine: { style: "none" },
330
+
331
+ // Data labels on bars
332
+ showValue: true,
333
+ dataLabelPosition: "outEnd",
334
+ dataLabelColor: "1E293B",
335
+
336
+ // Hide legend for single series
337
+ showLegend: false,
338
+ });
339
+ ```
340
+
341
+ **Key styling options:**
342
+ - `chartColors: [...]` - hex colors for series/segments
343
+ - `chartArea: { fill, border, roundedCorners }` - chart background
344
+ - `catGridLine/valGridLine: { color, style, size }` - grid lines (`style: "none"` to hide)
345
+ - `lineSmooth: true` - curved lines (line charts)
346
+ - `legendPos: "r"` - legend position: "b", "t", "l", "r", "tr"
347
+
348
+ ---
349
+
350
+ ## Slide Masters
351
+
352
+ ```javascript
353
+ pres.defineSlideMaster({
354
+ title: 'TITLE_SLIDE', background: { color: '283A5E' },
355
+ objects: [{
356
+ placeholder: { options: { name: 'title', type: 'title', x: 1, y: 2, w: 8, h: 2 } }
357
+ }]
358
+ });
359
+
360
+ let titleSlide = pres.addSlide({ masterName: "TITLE_SLIDE" });
361
+ titleSlide.addText("My Title", { placeholder: "title" });
362
+ ```
363
+
364
+ ---
365
+
366
+ ## Common Pitfalls
367
+
368
+ These issues cause file corruption, visual bugs, or broken output. Avoid them.
369
+
370
+ 1. **NEVER use "#" with hex colors** - causes file corruption
371
+ ```javascript
372
+ color: "FF0000" // CORRECT
373
+ color: "#FF0000" // WRONG
374
+ ```
375
+
376
+ 2. **NEVER encode opacity in hex color strings** - 8-char colors (e.g., `"00000020"`) corrupt the file. Use the `opacity` property instead.
377
+ ```javascript
378
+ shadow: { type: "outer", blur: 6, offset: 2, color: "00000020" } // CORRUPTS FILE
379
+ shadow: { type: "outer", blur: 6, offset: 2, color: "000000", opacity: 0.12 } // CORRECT
380
+ ```
381
+
382
+ 3. **Use `bullet: true`** - NEVER unicode symbols like "o" (creates double bullets)
383
+
384
+ 4. **Use `breakLine: true`** between array items or text runs together
385
+
386
+ 5. **Avoid `lineSpacing` with bullets** - causes excessive gaps; use `paraSpaceAfter` instead
387
+
388
+ 6. **Each presentation needs fresh instance** - don't reuse `pptxgen()` objects
389
+
390
+ 7. **NEVER reuse option objects across calls** - PptxGenJS mutates objects in-place (e.g. converting shadow values to EMU). Sharing one object between multiple calls corrupts the second shape.
391
+ ```javascript
392
+ const shadow = { type: "outer", blur: 6, offset: 2, color: "000000", opacity: 0.15 };
393
+ slide.addShape(pres.shapes.RECTANGLE, { shadow, ... }); // second call gets already-converted values
394
+ slide.addShape(pres.shapes.RECTANGLE, { shadow, ... });
395
+
396
+ const makeShadow = () => ({ type: "outer", blur: 6, offset: 2, color: "000000", opacity: 0.15 });
397
+ slide.addShape(pres.shapes.RECTANGLE, { shadow: makeShadow(), ... }); // fresh object each time
398
+ slide.addShape(pres.shapes.RECTANGLE, { shadow: makeShadow(), ... });
399
+ ```
400
+
401
+ 8. **Don't use `ROUNDED_RECTANGLE` with accent borders** - rectangular overlay bars won't cover rounded corners. Use `RECTANGLE` instead.
402
+ ```javascript
403
+ // WRONG: Accent bar doesn't cover rounded corners
404
+ slide.addShape(pres.shapes.ROUNDED_RECTANGLE, { x: 1, y: 1, w: 3, h: 1.5, fill: { color: "FFFFFF" } });
405
+ slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 0.08, h: 1.5, fill: { color: "0891B2" } });
406
+
407
+ // CORRECT: Use RECTANGLE for clean alignment
408
+ slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 3, h: 1.5, fill: { color: "FFFFFF" } });
409
+ slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 0.08, h: 1.5, fill: { color: "0891B2" } });
410
+ ```
411
+
412
+ ---
413
+
414
+ ## Quick Reference
415
+
416
+ - **Shapes**: RECTANGLE, OVAL, LINE, ROUNDED_RECTANGLE
417
+ - **Charts**: BAR, LINE, PIE, DOUGHNUT, SCATTER, BUBBLE, RADAR
418
+ - **Layouts**: LAYOUT_16x9 (10"x5.625"), LAYOUT_16x10, LAYOUT_4x3, LAYOUT_WIDE
419
+ - **Alignment**: "left", "center", "right"
420
+ - **Chart data labels**: "outEnd", "inEnd", "center"