@nguyenphp/antigravity-marketing 1.0.18 → 1.0.19

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 (127) hide show
  1. package/README.md +186 -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
package/README.md CHANGED
@@ -3,15 +3,12 @@
3
3
 
4
4
  # 🚀 Antigravity Marketing Kit
5
5
 
6
- > **66+ specialized marketing skills, 20 expert agents, and 15 streamlined workflows.**
6
+ > **90 specialized skills, 20 expert agents, and 17 streamlined workflows.**
7
7
  > Your ultimate AI-powered marketing command center for the Gemini CLI.
8
8
 
9
- [![npm version](https://img.shields.io/npm/v/@nguyenphp/antigravity-marketing.svg?style=flat-square&color=cb3837)](https://www.npmjs.com/package/@nguyenphp/antigravity-marketing)
10
- [![npm downloads](https://img.shields.io/npm/dt/@nguyenphp/antigravity-marketing.svg?style=flat-square&color=333333)](https://www.npmjs.com/package/@nguyenphp/antigravity-marketing)
11
- [![npm monthly downloads](https://img.shields.io/npm/dm/@nguyenphp/antigravity-marketing.svg?style=flat-square&color=333333)](https://www.npmjs.com/package/@nguyenphp/antigravity-marketing)
12
- [![GitHub downloads](https://img.shields.io/github/downloads/nguyenphp/antigravity-marketing/total.svg?style=flat-square&color=333333)](https://github.com/nguyenphp/antigravity-marketing/releases)
13
- [![GitHub stars](https://img.shields.io/github/stars/nguyenphp/antigravity-marketing.svg?style=flat-square&color=blue)](https://github.com/nguyenphp/antigravity-marketing/stargazers)
14
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/licenses/MIT)
9
+ [![npm version](https://img.shields.io/npm/v/@nguyenphp/antigravity-marketing.svg)](https://www.npmjs.com/package/@nguyenphp/antigravity-marketing)
10
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
+ [![GitHub stars](https://img.shields.io/github/stars/nguyenphp/antigravity-marketing.svg)](https://github.com/nguyenphp/antigravity-marketing/stargazers)
15
12
 
16
13
  ### 🌐 Official Homepage: [ag-mkt.site](https://ag-mkt.site)
17
14
 
@@ -26,10 +23,14 @@ Antigravity Marketing Kit is not just a tool; it's a **powerful AI strategy laye
26
23
  > **Built on the shoulders of giants.** Based on [Antigravity Kit](https://github.com/vudovn/antigravity-kit), the definitive framework for AI agent skills.
27
24
 
28
25
  ### Why Antigravity?
29
- - **🧠 Domain Expertise**: 66+ skills covering the entire marketing spectrum.
26
+ - **🧠 Domain Expertise**: 90 skills covering the entire marketing spectrum.
30
27
  - **🤖 Specialized Agents**: 20 experts covering Content, Growth, Strategy, Analytics, and specialized domains.
31
- - **🔄 Proven Workflows**: 15 workflows to turn complex tasks into simple commands.
28
+ - **🔄 Proven Workflows**: 17 workflows to turn complex tasks into simple commands.
29
+ - **📄 MiniMax Document Engine**: High-fidelity PDF, DOCX, XLSX, PPTX generation with professional brand styling.
32
30
  - **🎬 Video Automation**: Programmatic high-fidelity marketing videos via Remotion.
31
+ - **📊 Professional Reporting**: AI-driven brand-styled reports with Vietnamese Unicode support.
32
+ - **🇻🇳 Vietnamese Ready**: Full Unicode support for professional local reporting.
33
+ - **🎨 Brand Cloning**: Extract branding from any URL and apply to reports instantly.
33
34
 
34
35
  ---
35
36
 
@@ -41,83 +42,158 @@ Antigravity Marketing Kit is not just a tool; it's a **powerful AI strategy laye
41
42
  |:---:|:---:|
42
43
  | <video src="https://github.com/nguyenphp/antigravity-marketing/raw/main/docs/assets/videos/antigravity-promo-169.mp4" width="100%" controls></video> | <video src="https://github.com/nguyenphp/antigravity-marketing/raw/main/docs/assets/videos/antigravity-promo-916.mp4" width="100%" controls></video> |
43
44
 
44
- ## 🧠 Skills (66+)
45
+ ---
46
+
47
+ ## 🧠 Skills (90)
48
+
49
+ ### ⭐ Highlight: Reporting & Document Engine (MiniMax)
50
+ | Skill | Description | Doc |
51
+ |-------|-------------|-----|
52
+ | `marketing-report-expert` | **🏆 Master orchestrator for professional reporting & brand-styled design** | [Doc](templates/.agent/skills/marketing-report-expert/SKILL.md) |
53
+ | `minimax-pdf` | **📄 High-fidelity PDF generation from HTML/Markdown** | [Doc](templates/.agent/skills/minimax-pdf/SKILL.md) |
54
+ | `minimax-docx` | **📝 Professional Word document generation** | [Doc](templates/.agent/skills/minimax-docx/SKILL.md) |
55
+ | `minimax-xlsx` | **📊 Advanced Excel automation and data analysis** | [Doc](templates/.agent/skills/minimax-xlsx/SKILL.md) |
56
+ | `pptx-generator` | **🎭 Professional PowerPoint presentation generation** | [Doc](templates/.agent/skills/pptx-generator/SKILL.md) |
57
+ | `minimax-multimodal-toolkit` | **🔧 General purpose multimodal document toolkit** | [Doc](templates/.agent/skills/minimax-multimodal-toolkit/SKILL.md) |
58
+ | `frontend-slides` | **🖼️ Web-based interactive presentation engine** | [Doc](templates/.agent/skills/frontend-slides/SKILL.md) |
59
+
60
+ ### ⭐ Highlight: Video & Visual Production
61
+ | Skill | Description | Doc |
62
+ |-------|-------------|-----|
63
+ | `video-automation` | **🎬 Automated marketing videos via Remotion** | [Doc](templates/.agent/skills/video-automation/SKILL.md) |
64
+ | `video-marketing` | **📹 Video strategy, YouTube SEO, short-form content** | [Doc](templates/.agent/skills/video-marketing/SKILL.md) |
65
+ | `tutorial-video-expert` | **🎓 Professional tutorial video creation** | [Doc](templates/.agent/skills/tutorial-video-expert/SKILL.md) |
66
+ | `remotion-best-practices` | **🎬 Official Remotion video production rules** | [Doc](templates/.agent/skills/remotion-best-practices/SKILL.md) |
67
+ | `vision-analysis` | **👁️ AI-powered image and ad creative analysis** | [Doc](templates/.agent/skills/vision-analysis/SKILL.md) |
68
+ | `banner-design` | **🖼️ Specialized marketing banner design intelligence** | [Doc](templates/.agent/skills/banner-design/SKILL.md) |
69
+
70
+ ### Marketing Strategy & Coordination
71
+ | Skill | Description | Doc |
72
+ |-------|-------------|-----|
73
+ | `marketing-strategist` | Overall marketing strategy orchestrator | [Doc](templates/.agent/skills/marketing-strategist/SKILL.md) |
74
+ | `marketing-ideas` | Brainstormer for creative SaaS campaigns | [Doc](templates/.agent/skills/marketing-ideas/SKILL.md) |
75
+ | `marketing-psychology` | Behavioral economics & growth triggers | [Doc](templates/.agent/skills/marketing-psychology/SKILL.md) |
76
+ | `brainstorming` | Creative ideation and mind-mapping | [Doc](templates/.agent/skills/brainstorming/SKILL.md) |
45
77
 
46
78
  ### Content & Creative
47
- | Skill | Description |
48
- |-------|-------------|
49
- | `content-marketing` | Content strategy, copywriting, storytelling |
50
- | `branding-expert` | Brand identity, voice & tone, style guides |
51
- | `video-marketing` | Video strategy, YouTube SEO, short-form content |
52
- | `video-automation` | **Automated marketing videos via Remotion** |
53
- | `content-repurposing` | Transform content into multiple formats |
54
- | `marketing-ideas` | **Brainstormer for creative SaaS campaigns** |
55
- | `marketing-psychology` | **Behavioral economics & growth triggers** |
56
- | `copywriting` | **High-converting text principles & PAS/BAB frameworks** |
57
- | `growth-engine` | **Complete growth strategy & acquisition engine** |
79
+ | Skill | Description | Doc |
80
+ |-------|-------------|-----|
81
+ | `content-marketing` | Content strategy, copywriting, storytelling | [Doc](templates/.agent/skills/content-marketing/SKILL.md) |
82
+ | `branding-expert` | Brand identity, voice & tone, style guides | [Doc](templates/.agent/skills/branding-expert/SKILL.md) |
83
+ | `content-repurposing` | Transform content into multiple formats | [Doc](templates/.agent/skills/content-repurposing/SKILL.md) |
84
+ | `copywriting` | High-converting text principles & PAS/BAB frameworks | [Doc](templates/.agent/skills/copywriting/SKILL.md) |
85
+ | `brand` | Brand consistency & visual identity system | [Doc](templates/.agent/skills/brand/SKILL.md) |
86
+ | `brand-guidelines-anthropic` | Official Anthropic look & feel | [Doc](templates/.agent/skills/brand-guidelines-anthropic/SKILL.md) |
87
+ | `brand-guidelines-community` | Modern community styling presets | [Doc](templates/.agent/skills/brand-guidelines-community/SKILL.md) |
58
88
 
59
89
  ### Growth & Acquisition
60
- | Skill | Description |
61
- |-------|-------------|
62
- | `growth-hacking` | Viral loops, referral programs, AARRR framework |
63
- | `ppc-advertising` | Google Ads, Meta Ads, campaign optimization |
64
- | `influencer-marketing` | Influencer outreach, KOL partnerships |
65
- | `affiliate-marketing` | Affiliate programs, partner networks |
66
- | `lead-gen-scraper` | Lead generation, prospect research |
67
- | `launch-strategy` | **ORB framework for product launches** |
68
- | `referral-program` | **Viral growth loops & affiliate design** |
69
- | `programmatic-seo` | **Large-scale SEO automation strategy** |
70
- | `app-store-optimization`| **ASO for App Store & Play Store** |
71
- | `viral-generator` | **Viral quiz & calculator engineering** |
72
-
73
- ### Channels
74
- | Skill | Description |
75
- |-------|-------------|
76
- | `social-media-expert` | Platform strategies (FB, IG, TikTok, LinkedIn) |
77
- | `email-marketing` | Campaigns, sequences, automation, newsletters |
90
+ | Skill | Description | Doc |
91
+ |-------|-------------|-----|
92
+ | `growth-hacking` | Viral loops, referral programs, AARRR framework | [Doc](templates/.agent/skills/growth-hacking/SKILL.md) |
93
+ | `growth-engine` | Complete growth strategy & acquisition engine | [Doc](templates/.agent/skills/growth-engine/SKILL.md) |
94
+ | `ppc-advertising` | Google Ads, Meta Ads, campaign optimization | [Doc](templates/.agent/skills/ppc-advertising/SKILL.md) |
95
+ | `influencer-marketing` | Influencer outreach, KOL partnerships | [Doc](templates/.agent/skills/influencer-marketing/SKILL.md) |
96
+ | `affiliate-marketing` | Affiliate programs, partner networks | [Doc](templates/.agent/skills/affiliate-marketing/SKILL.md) |
97
+ | `lead-gen-scraper` | Lead generation, prospect research | [Doc](templates/.agent/skills/lead-gen-scraper/SKILL.md) |
98
+ | `launch-strategy` | ORB framework for product launches | [Doc](templates/.agent/skills/launch-strategy/SKILL.md) |
99
+ | `referral-program` | Viral growth loops & affiliate design | [Doc](templates/.agent/skills/referral-program/SKILL.md) |
100
+ | `programmatic-seo` | Large-scale SEO automation strategy | [Doc](templates/.agent/skills/programmatic-seo/SKILL.md) |
101
+ | `app-store-optimization` | ASO for App Store & Play Store | [Doc](templates/.agent/skills/app-store-optimization/SKILL.md) |
102
+ | `viral-generator-builder` | Viral quiz & calculator engineering | [Doc](templates/.agent/skills/viral-generator-builder/SKILL.md) |
103
+
104
+ ### Channels & Automation
105
+ | Skill | Description | Doc |
106
+ |-------|-------------|-----|
107
+ | `social-media-expert` | Platform strategies (FB, IG, TikTok, LinkedIn) | [Doc](templates/.agent/skills/social-media-expert/SKILL.md) |
108
+ | `email-marketing` | Campaigns, sequences, automation, newsletters | [Doc](templates/.agent/skills/email-marketing/SKILL.md) |
109
+ | `marketing-automation` | Lead nurturing, workflows, segmentation | [Doc](templates/.agent/skills/marketing-automation/SKILL.md) |
110
+ | `i18n-localization` | Internationalization & localization strategies | [Doc](templates/.agent/skills/i18n-localization/SKILL.md) |
78
111
 
79
112
  ### Optimization & Analytics
80
- | Skill | Description |
81
- |-------|-------------|
82
- | `seo-fundamentals` | SEO best practices, E-E-A-T, Core Web Vitals |
83
- | `keyword-research-deep` | Advanced keyword research, clustering, intent |
84
- | `analytics-marketing` | KPIs, attribution, GA4, dashboards |
85
- | `conversion-optimization` | CRO, A/B testing, landing pages |
86
- | `marketing-automation` | Lead nurturing, workflows, segmentation |
87
- | `ab-test-dashboard` | A/B test analysis, statistical significance |
88
- | `onboarding-cro` | **User activation & TTV optimization** |
89
- | `page-cro` | **Landing page conversion diagnostics** |
90
- | `popup-cro` | **Engagement trigger optimization** |
91
- | `signup-flow-cro` | **Registration friction reduction** |
92
- | `paywall-upgrade-cro` | **Monetization & upsell psychology** |
93
- | `pricing-strategy` | **Value-based pricing & tier design** |
113
+ | Skill | Description | Doc |
114
+ |-------|-------------|-----|
115
+ | `seo-fundamentals` | SEO best practices, E-E-A-T, Core Web Vitals | [Doc](templates/.agent/skills/seo-fundamentals/SKILL.md) |
116
+ | `keyword-research-deep` | Advanced keyword research, clustering, intent | [Doc](templates/.agent/skills/keyword-research-deep/SKILL.md) |
117
+ | `analytics-marketing` | KPIs, attribution, GA4, dashboards | [Doc](templates/.agent/skills/analytics-marketing/SKILL.md) |
118
+ | `conversion-optimization` | CRO, A/B testing, landing pages | [Doc](templates/.agent/skills/conversion-optimization/SKILL.md) |
119
+ | `ab-test-dashboard` | A/B test analysis, statistical significance | [Doc](templates/.agent/skills/ab-test-dashboard/SKILL.md) |
120
+ | `onboarding-cro` | User activation & TTV optimization | [Doc](templates/.agent/skills/onboarding-cro/SKILL.md) |
121
+ | `page-cro` | Landing page conversion diagnostics | [Doc](templates/.agent/skills/page-cro/SKILL.md) |
122
+ | `popup-cro` | Engagement trigger optimization | [Doc](templates/.agent/skills/popup-cro/SKILL.md) |
123
+ | `signup-flow-cro` | Registration friction reduction | [Doc](templates/.agent/skills/signup-flow-cro/SKILL.md) |
124
+ | `paywall-upgrade-cro` | Monetization & upsell psychology | [Doc](templates/.agent/skills/paywall-upgrade-cro/SKILL.md) |
125
+ | `pricing-strategy` | Value-based pricing & tier design | [Doc](templates/.agent/skills/pricing-strategy/SKILL.md) |
126
+ | `geo-fundamentals` | Geo-targeting & location-based strategies | [Doc](templates/.agent/skills/geo-fundamentals/SKILL.md) |
94
127
 
95
128
  ### Ads & Creative
96
- | Skill | Description |
97
- |-------|-------------|
98
- | `ad-creative-variations` | Mass ad copy variations for Meta/Google/TikTok |
129
+ | Skill | Description | Doc |
130
+ |-------|-------------|-----|
131
+ | `ad-creative-variations` | Mass ad copy variations for Meta/Google/TikTok | [Doc](templates/.agent/skills/ad-creative-variations/SKILL.md) |
99
132
 
100
133
  ### Competitor Intelligence
101
- | Skill | Description |
102
- |-------|-------------|
103
- | `competitor-teardown` | Analyze competitor websites, ads, strategies |
104
- | `competitor-monitor` | Monitor competitor changes and alerts |
105
-
106
- ### Design & Development
107
- | Skill | Description |
108
- |-------|-------------|
109
- | `ui-ux-pro-max` | Design intelligence for marketing |
110
- | `frontend-design` | Landing page & web design |
111
- | `tailwind-patterns` | Utility-first CSS patterns |
112
- | `documentation-templates` | Marketing documentation templates |
113
- | `remotion-best-practices` | **Official Remotion video production rules** |
114
- | `banner-design` | **Specialized marketing banner design intelligence** |
115
- | `brand` | **Brand consistency & visual identity system** |
116
- | `ui-styling` | **Advanced UI component styling & token generation** |
117
- | `brand-guidelines-anthropic`| **Official Anthropic look & feel** |
118
- | `brand-guidelines-community`| **Modern community styling presets** |
119
-
120
- ## 🤖 Agents (4)
134
+ | Skill | Description | Doc |
135
+ |-------|-------------|-----|
136
+ | `competitor-teardown` | Analyze competitor websites, ads, strategies | [Doc](templates/.agent/skills/competitor-teardown/SKILL.md) |
137
+ | `competitor-monitor` | Monitor competitor changes and alerts | [Doc](templates/.agent/skills/competitor-monitor/SKILL.md) |
138
+
139
+ ### Design & UI/UX
140
+ | Skill | Description | Doc |
141
+ |-------|-------------|-----|
142
+ | `ui-ux-pro-max` | Design intelligence for marketing | [Doc](templates/.agent/skills/ui-ux-pro-max/SKILL.md) |
143
+ | `frontend-design` | Landing page & web design | [Doc](templates/.agent/skills/frontend-design/SKILL.md) |
144
+ | `tailwind-patterns` | Utility-first CSS patterns | [Doc](templates/.agent/skills/tailwind-patterns/SKILL.md) |
145
+ | `mobile-design` | Mobile-first responsive design patterns | [Doc](templates/.agent/skills/mobile-design/SKILL.md) |
146
+ | `documentation-templates` | Marketing documentation templates | [Doc](templates/.agent/skills/documentation-templates/SKILL.md) |
147
+
148
+ ### Development & Engineering
149
+ | Skill | Description | Doc |
150
+ |-------|-------------|-----|
151
+ | `api-patterns` | API design patterns & best practices | [Doc](templates/.agent/skills/api-patterns/SKILL.md) |
152
+ | `app-builder` | Full-stack application builder | [Doc](templates/.agent/skills/app-builder/SKILL.md) |
153
+ | `architecture` | Software architecture patterns | [Doc](templates/.agent/skills/architecture/SKILL.md) |
154
+ | `clean-code` | Clean code principles & refactoring | [Doc](templates/.agent/skills/clean-code/SKILL.md) |
155
+ | `code-review-checklist` | Comprehensive code review checklist | [Doc](templates/.agent/skills/code-review-checklist/SKILL.md) |
156
+ | `database-design` | Database schema design & optimization | [Doc](templates/.agent/skills/database-design/SKILL.md) |
157
+ | `docker-expert` | Docker containerization best practices | [Doc](templates/.agent/skills/docker-expert/SKILL.md) |
158
+ | `nestjs-expert` | NestJS framework expertise | [Doc](templates/.agent/skills/nestjs-expert/SKILL.md) |
159
+ | `nextjs-best-practices` | Next.js best practices & patterns | [Doc](templates/.agent/skills/nextjs-best-practices/SKILL.md) |
160
+ | `nodejs-best-practices` | Node.js production best practices | [Doc](templates/.agent/skills/nodejs-best-practices/SKILL.md) |
161
+ | `prisma-expert` | Prisma ORM patterns & optimization | [Doc](templates/.agent/skills/prisma-expert/SKILL.md) |
162
+ | `python-patterns` | Python design patterns & best practices | [Doc](templates/.agent/skills/python-patterns/SKILL.md) |
163
+ | `react-patterns` | React component patterns & hooks | [Doc](templates/.agent/skills/react-patterns/SKILL.md) |
164
+ | `typescript-expert` | TypeScript advanced techniques | [Doc](templates/.agent/skills/typescript-expert/SKILL.md) |
165
+ | `vue-expert` | Vue.js framework expertise | [Doc](templates/.agent/skills/vue-expert/SKILL.md) |
166
+
167
+ ### DevOps & Infrastructure
168
+ | Skill | Description | Doc |
169
+ |-------|-------------|-----|
170
+ | `bash-linux` | Shell scripting & Linux administration | [Doc](templates/.agent/skills/bash-linux/SKILL.md) |
171
+ | `powershell-windows` | PowerShell scripting for Windows | [Doc](templates/.agent/skills/powershell-windows/SKILL.md) |
172
+ | `deployment-procedures` | Production deployment strategies | [Doc](templates/.agent/skills/deployment-procedures/SKILL.md) |
173
+ | `server-management` | Server administration & monitoring | [Doc](templates/.agent/skills/server-management/SKILL.md) |
174
+ | `performance-profiling` | Application performance profiling | [Doc](templates/.agent/skills/performance-profiling/SKILL.md) |
175
+
176
+ ### Testing & Security
177
+ | Skill | Description | Doc |
178
+ |-------|-------------|-----|
179
+ | `tdd-workflow` | Test-driven development workflow | [Doc](templates/.agent/skills/tdd-workflow/SKILL.md) |
180
+ | `testing-patterns` | Testing patterns & strategies | [Doc](templates/.agent/skills/testing-patterns/SKILL.md) |
181
+ | `webapp-testing` | Web application testing automation | [Doc](templates/.agent/skills/webapp-testing/SKILL.md) |
182
+ | `lint-and-validate` | Code linting & validation automation | [Doc](templates/.agent/skills/lint-and-validate/SKILL.md) |
183
+ | `red-team-tactics` | Security red team assessment tactics | [Doc](templates/.agent/skills/red-team-tactics/SKILL.md) |
184
+ | `vulnerability-scanner` | Automated vulnerability scanning | [Doc](templates/.agent/skills/vulnerability-scanner/SKILL.md) |
185
+
186
+ ### Agent & Workflow Tools
187
+ | Skill | Description | Doc |
188
+ |-------|-------------|-----|
189
+ | `behavioral-modes` | AI agent behavioral mode management | [Doc](templates/.agent/skills/behavioral-modes/SKILL.md) |
190
+ | `mcp-builder` | MCP server builder toolkit | [Doc](templates/.agent/skills/mcp-builder/SKILL.md) |
191
+ | `parallel-agents` | Multi-agent parallel execution patterns | [Doc](templates/.agent/skills/parallel-agents/SKILL.md) |
192
+ | `plan-writing` | Structured planning & documentation | [Doc](templates/.agent/skills/plan-writing/SKILL.md) |
193
+ | `systematic-debugging` | Systematic debugging methodology | [Doc](templates/.agent/skills/systematic-debugging/SKILL.md) |
194
+ | `game-development` | Game development patterns & engines | [Doc](templates/.agent/skills/game-development/SKILL.md) |
195
+
196
+ ## 🤖 Agents (20)
121
197
 
122
198
  | Agent | Description |
123
199
  |-------|-------------|
@@ -125,8 +201,24 @@ Antigravity Marketing Kit is not just a tool; it's a **powerful AI strategy laye
125
201
  | `content-creator` | Content creation specialist |
126
202
  | `growth-specialist` | Growth hacking specialist |
127
203
  | `analytics-specialist` | Data analysis and insights |
128
-
129
- ## 🔄 Workflows (4)
204
+ | `seo-specialist` | SEO optimization expert |
205
+ | `frontend-specialist` | Frontend development expert |
206
+ | `backend-specialist` | Backend development expert |
207
+ | `database-architect` | Database design & optimization |
208
+ | `devops-engineer` | DevOps and deployment automation |
209
+ | `mobile-developer` | Mobile application development |
210
+ | `test-engineer` | Testing & QA automation |
211
+ | `security-auditor` | Security assessment & auditing |
212
+ | `penetration-tester` | Security penetration testing |
213
+ | `performance-optimizer` | Performance optimization expert |
214
+ | `documentation-writer` | Technical documentation specialist |
215
+ | `game-developer` | Game development specialist |
216
+ | `debugger` | Systematic debugging expert |
217
+ | `explorer-agent` | Codebase exploration & analysis |
218
+ | `orchestrator` | Multi-agent orchestration |
219
+ | `project-planner` | Project planning & management |
220
+
221
+ ## 🔄 Workflows (17)
130
222
 
131
223
  | Command | Description |
132
224
  |---------|-------------|
@@ -134,6 +226,19 @@ Antigravity Marketing Kit is not just a tool; it's a **powerful AI strategy laye
134
226
  | `/content` | Content creation workflow |
135
227
  | `/analyze` | Marketing analytics workflow |
136
228
  | `/optimize` | Conversion optimization workflow |
229
+ | `/report` | **📄 Professional PDF report generation** |
230
+ | `/brand-report` | **🎨 AI-driven brand style cloning & reporting** |
231
+ | `/brainstorm` | Creative ideation sessions |
232
+ | `/create` | General creation workflow |
233
+ | `/debug` | Systematic debugging workflow |
234
+ | `/deploy` | Production deployment workflow |
235
+ | `/enhance` | Code enhancement & refactoring |
236
+ | `/orchestrate` | Multi-agent orchestration |
237
+ | `/plan` | Structured planning workflow |
238
+ | `/preview` | Preview & review workflow |
239
+ | `/status` | Project status assessment |
240
+ | `/test` | Testing automation workflow |
241
+ | `/ui-ux-pro-max` | Design intelligence workflow |
137
242
 
138
243
  ## 📦 Installation
139
244
 
@@ -209,6 +314,8 @@ Invoke workflows with slash commands:
209
314
  /content - Create content with guidance
210
315
  /analyze - Analyze marketing metrics
211
316
  /optimize - Run conversion optimization
317
+ /report - Generate professional PDF reports
318
+ /brand-report - AI-driven brand-styled reporting
212
319
  ```
213
320
 
214
321
  ## 🤝 Contributing
@@ -235,6 +342,7 @@ This project is built upon and includes skills from:
235
342
  - 🎨 **[UI UX Pro Max](https://ui-ux-pro-max-skill.nextlevelbuilder.io/)** - Design intelligence skills (`ui-ux-pro-max`, `frontend-design`, `tailwind-patterns`)
236
343
  - 🛠️ **[ClaudeKit](https://claudekit.cc/)** - Production-ready skills (`seo-fundamentals`, `documentation-templates`)
237
344
  - 🎬 **[Remotion Dev Skills](https://github.com/remotion-dev/skills)** - Official Remotion best practices (`remotion-best-practices`)
345
+ - 📄 **[MiniMax AI Skills](https://github.com/MiniMax-AI/skills)** - High-fidelity document generation engine (`minimax-pdf`, `minimax-docx`, `minimax-xlsx`, `pptx-generator`, `minimax-multimodal-toolkit`, `vision-analysis`, `tutorial-video-expert`)
238
346
  - 🌌 **[Antigravity Awesome Skills](https://github.com/sickn33/antigravity-awesome-skills)** - 250+ community-powered agentic skills (`marketing-ideas`, `cro-suite`, `programmatic-seo`, etc.)
239
347
 
240
348
  ## 📄 License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nguyenphp/antigravity-marketing",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Marketing-focused AI agent skills kit for Gemini CLI",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",
@@ -39,9 +39,10 @@
39
39
  "commander": "^12.1.0",
40
40
  "fs-extra": "^11.3.3",
41
41
  "giget": "^2.0.0",
42
- "ora": "^8.2.0"
42
+ "ora": "^8.2.0",
43
+ "playwright": "^1.59.1"
43
44
  },
44
45
  "publishConfig": {
45
46
  "access": "public"
46
47
  }
47
- }
48
+ }
@@ -0,0 +1,70 @@
1
+ ---
2
+ name: marketing-report-expert
3
+ description: Orchestrates a professional reporting workflow by combining design system intelligence with high-fidelity PDF generation.
4
+ allowed-tools: Read, RunCommand, Write
5
+ ---
6
+
7
+ # Marketing Report Expert - The Orchestrator
8
+
9
+ Use this skill when the user wants to create any kind of marketing report, proposal, or presentation through natural conversation.
10
+
11
+ ## 1. Trigger Sequence
12
+
13
+ When a report request is detected:
14
+
15
+ 0. **Phase 0: Style Choice (The "Consultant" Step)**
16
+ - **ACT**: IF the user hasn't specified a style/URL, **ASK**:
17
+ > "Bạn muốn tạo báo cáo theo phong cách chuyên nghiệp mặc định hay 'clone' phong cách từ website của một công ty/thương hiệu cụ thể?"
18
+ - IF user provides a URL -> Proceed to **Phase 1: Brand Cloning**.
19
+ - IF user chooses default -> Proceed to **Phase 2: Design Consultation**.
20
+
21
+ 1. **Phase 1: Brand Cloning (The "One-Prompt" Engine)**
22
+ - If a URL is provided, use `browser_subagent` to visit the site.
23
+ - Extract: Logo URL, primary/secondary colors (HEX), and font styles.
24
+ - Analyze the site's "vibe" (e.g., "SaaS Modern", "Traditional Finance").
25
+
26
+ 2. **Phase 1: Design Consultation**
27
+ - Invoke `ui-ux-pro-max` using the data from Phase 0.
28
+ - No need to ask the user if the data from Phase 0 is sufficient.
29
+ - Output: A design spec including `--accent` hex, typography choice, and spacing tokens.
30
+
31
+ ## 2. One-Prompt Automation Rule
32
+
33
+ To achieve the desired "One-Prompt" result, you MUST follow this chain without pausing for user feedback:
34
+ 1. **Crawl**: Visit the provided URL with `browser_subagent`.
35
+ 2. **Extract Style**: Get Logo, Brand Color, and Font.
36
+ 3. **Map Content**: Read the provided text file and map it to `content.json`.
37
+ 4. **Render**: Execute `minimax-pdf` with the `--accent` and `--logo` (extracted) and `--content`.
38
+
39
+ **Example Prompt**: "Tạo báo cáo từ file data.txt theo style của website https://apple.com"
40
+ **Action**: AI visits apple.com -> picks white/SF Pro/minimal style -> uses apple logo -> renders data.txt to PDF.
41
+
42
+ 2. **Phase 2: Content Structuring**
43
+ - Invoke `frontend-design` to layout the **Sections**.
44
+ - Map the content into the supported blocks of `minimax-pdf` (h1, h2, callout, table, chart).
45
+
46
+ 3. **Phase 3: High-Fidelity Rendering**
47
+ - Use `minimax-pdf` to generate the final document.
48
+ - Pass the tokens from Phase 1 and the structure from Phase 2.
49
+
50
+ ## 2. Integrated Patterns
51
+
52
+ ### Professional Analytical Report
53
+ - **UI UX Strategy**: Use "Corporate" palette (Slate/Navy).
54
+ - **Frontend Strategy**: Hero summary -> Deep dive charts -> Recommendations.
55
+ - **PDF Export**: `type: report`.
56
+
57
+ ### Creative Brand Proposal
58
+ - **UI UX Strategy**: High-contrast, vibrant accents.
59
+ - **Frontend Strategy**: Visual-heavy, atmospheric sections.
60
+ - **PDF Export**: `type: proposal` or `type: magazine`.
61
+
62
+ ## 3. Collaboration Rules
63
+
64
+ - **ALWAYS** check `ui-ux-pro-max` for the latest design tokens before starting a PDF export.
65
+ - **ALWAYS** suggest a "Dry run" or "Preview" of the design before the final merge.
66
+ - If the document is for a specific industry, use the `frontend-design` color psychology guide to pick the accent.
67
+
68
+ ---
69
+
70
+ > **Mission**: Turn raw data and ideas into a premium, board-ready document without the user needing to manually style anything.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 MiniMaxAI
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.