@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.
- package/README.md +130 -78
- package/package.json +4 -3
- package/templates/.agent/skills/marketing-report-expert/SKILL.md +70 -0
- package/templates/.agent/skills/minimax-docx/LICENSE +21 -0
- package/templates/.agent/skills/minimax-docx/SKILL.md +274 -0
- package/templates/.agent/skills/minimax-docx/assets/styles/academic_styles.xml +250 -0
- package/templates/.agent/skills/minimax-docx/assets/styles/corporate_styles.xml +284 -0
- package/templates/.agent/skills/minimax-docx/assets/styles/default_styles.xml +449 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/aesthetic-rules.xsd +470 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/business-rules.xsd +130 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/common-types.xsd +159 -0
- package/templates/.agent/skills/minimax-docx/assets/xsd/wml-subset.xsd +589 -0
- package/templates/.agent/skills/minimax-docx/references/cjk_typography.md +357 -0
- package/templates/.agent/skills/minimax-docx/references/cjk_university_template_guide.md +184 -0
- package/templates/.agent/skills/minimax-docx/references/comments_guide.md +191 -0
- package/templates/.agent/skills/minimax-docx/references/design_good_bad_examples.md +829 -0
- package/templates/.agent/skills/minimax-docx/references/design_principles.md +819 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_element_order.md +308 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part1.md +4061 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part2.md +2820 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part3.md +3381 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_namespaces.md +82 -0
- package/templates/.agent/skills/minimax-docx/references/openxml_units.md +72 -0
- package/templates/.agent/skills/minimax-docx/references/scenario_a_create.md +284 -0
- package/templates/.agent/skills/minimax-docx/references/scenario_b_edit_content.md +295 -0
- package/templates/.agent/skills/minimax-docx/references/scenario_c_apply_template.md +456 -0
- package/templates/.agent/skills/minimax-docx/references/track_changes_guide.md +200 -0
- package/templates/.agent/skills/minimax-docx/references/troubleshooting.md +506 -0
- package/templates/.agent/skills/minimax-docx/references/typography_guide.md +294 -0
- package/templates/.agent/skills/minimax-docx/references/xsd_validation_guide.md +158 -0
- package/templates/.agent/skills/minimax-docx/scripts/doc_to_docx.sh +40 -0
- package/templates/.agent/skills/minimax-docx/scripts/docx_preview.sh +37 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj +19 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs +18 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/AnalyzeCommand.cs +147 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ApplyTemplateCommand.cs +322 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/CreateCommand.cs +324 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/DiffCommand.cs +155 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/EditContentCommand.cs +487 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/FixOrderCommand.cs +108 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/MergeRunsCommand.cs +122 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ValidateCommand.cs +107 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj +15 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/CommentSynchronizer.cs +169 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/ElementOrder.cs +80 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/NamespaceConstants.cs +42 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/RunMerger.cs +81 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/StyleAnalyzer.cs +81 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/TrackChangesHelper.cs +99 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/UnitConverter.cs +23 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples.cs +1832 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch1.cs +910 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch2.cs +999 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch3.cs +1048 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch4.cs +1038 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/CharacterFormattingSamples.cs +1020 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/DocumentCreationSamples.cs +1121 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FieldAndTocSamples.cs +624 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FootnoteAndCommentSamples.cs +675 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/HeaderFooterSamples.cs +838 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ImageSamples.cs +917 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ListAndNumberingSamples.cs +826 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ParagraphFormattingSamples.cs +1199 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/StyleSystemSamples.cs +1487 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TableSamples.cs +1163 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TrackChangesSamples.cs +595 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/CjkHelper.cs +39 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/FontDefaults.cs +24 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/PageSizes.cs +20 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/BusinessRuleValidator.cs +224 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/GateCheckValidator.cs +148 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/ValidationResult.cs +23 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/XsdValidator.cs +69 -0
- package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.slnx +4 -0
- package/templates/.agent/skills/minimax-docx/scripts/env_check.sh +196 -0
- package/templates/.agent/skills/minimax-docx/scripts/setup.ps1 +274 -0
- package/templates/.agent/skills/minimax-docx/scripts/setup.sh +504 -0
- package/templates/.agent/skills/minimax-multimodal-toolkit/SKILL.md +359 -0
- package/templates/.agent/skills/minimax-pdf/README.md +222 -0
- package/templates/.agent/skills/minimax-pdf/SKILL.md +201 -0
- package/templates/.agent/skills/minimax-pdf/design/design.md +381 -0
- package/templates/.agent/skills/minimax-pdf/scripts/cover.py +1579 -0
- package/templates/.agent/skills/minimax-pdf/scripts/fill_inspect.py +200 -0
- package/templates/.agent/skills/minimax-pdf/scripts/fill_write.py +242 -0
- package/templates/.agent/skills/minimax-pdf/scripts/make.sh +491 -0
- package/templates/.agent/skills/minimax-pdf/scripts/merge.py +112 -0
- package/templates/.agent/skills/minimax-pdf/scripts/palette.py +559 -0
- package/templates/.agent/skills/minimax-pdf/scripts/reformat_parse.py +374 -0
- package/templates/.agent/skills/minimax-pdf/scripts/render_body.py +1055 -0
- package/templates/.agent/skills/minimax-pdf/scripts/render_cover.cjs +111 -0
- package/templates/.agent/skills/minimax-xlsx/SKILL.md +138 -0
- package/templates/.agent/skills/minimax-xlsx/references/create.md +691 -0
- package/templates/.agent/skills/minimax-xlsx/references/edit.md +684 -0
- package/templates/.agent/skills/minimax-xlsx/references/fix.md +37 -0
- package/templates/.agent/skills/minimax-xlsx/references/format.md +768 -0
- package/templates/.agent/skills/minimax-xlsx/references/ooxml-cheatsheet.md +231 -0
- package/templates/.agent/skills/minimax-xlsx/references/read-analyze.md +97 -0
- package/templates/.agent/skills/minimax-xlsx/references/validate.md +772 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/formula_check.py +422 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/libreoffice_recalc.py +248 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/shared_strings_builder.py +163 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/style_audit.py +575 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_add_column.py +395 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_insert_row.py +274 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_pack.py +87 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_reader.py +362 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_shift_rows.py +396 -0
- package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_unpack.py +130 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/[Content_Types].xml +9 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/_rels/.rels +6 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/_rels/workbook.xml.rels +19 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/sharedStrings.xml +33 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/styles.xml +160 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/workbook.xml +30 -0
- package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/worksheets/sheet1.xml +70 -0
- package/templates/.agent/skills/pptx-generator/SKILL.md +249 -0
- package/templates/.agent/skills/pptx-generator/references/design-system.md +392 -0
- package/templates/.agent/skills/pptx-generator/references/editing.md +162 -0
- package/templates/.agent/skills/pptx-generator/references/pitfalls.md +112 -0
- package/templates/.agent/skills/pptx-generator/references/pptxgenjs.md +420 -0
- package/templates/.agent/skills/pptx-generator/references/slide-types.md +413 -0
- package/templates/.agent/skills/tutorial-video-expert/SKILL.md +88 -0
- package/templates/.agent/skills/ui-ux-pro-max/SKILL.md +170 -585
- package/templates/.agent/skills/vision-analysis/SKILL.md +174 -0
- package/templates/.agent/workflows/analyze.md +3 -0
- package/templates/.agent/workflows/brand-report.md +44 -0
- package/templates/.agent/workflows/report.md +49 -0
- package/templates/.agent/agents/backend-specialist.md +0 -263
- package/templates/.agent/agents/database-architect.md +0 -226
- package/templates/.agent/agents/debugger.md +0 -225
- package/templates/.agent/agents/devops-engineer.md +0 -242
- package/templates/.agent/agents/frontend-specialist.md +0 -527
- package/templates/.agent/agents/game-developer.md +0 -162
- package/templates/.agent/agents/mobile-developer.md +0 -377
- package/templates/.agent/agents/penetration-tester.md +0 -188
- package/templates/.agent/agents/security-auditor.md +0 -170
- package/templates/.agent/agents/test-engineer.md +0 -158
- package/templates/.agent/skills/api-patterns/SKILL.md +0 -81
- package/templates/.agent/skills/api-patterns/api-style.md +0 -42
- package/templates/.agent/skills/api-patterns/auth.md +0 -24
- package/templates/.agent/skills/api-patterns/documentation.md +0 -26
- package/templates/.agent/skills/api-patterns/graphql.md +0 -41
- package/templates/.agent/skills/api-patterns/rate-limiting.md +0 -31
- package/templates/.agent/skills/api-patterns/response.md +0 -37
- package/templates/.agent/skills/api-patterns/rest.md +0 -40
- package/templates/.agent/skills/api-patterns/scripts/api_validator.py +0 -211
- package/templates/.agent/skills/api-patterns/security-testing.md +0 -122
- package/templates/.agent/skills/api-patterns/trpc.md +0 -41
- package/templates/.agent/skills/api-patterns/versioning.md +0 -22
- package/templates/.agent/skills/app-builder/SKILL.md +0 -75
- package/templates/.agent/skills/app-builder/agent-coordination.md +0 -71
- package/templates/.agent/skills/app-builder/feature-building.md +0 -53
- package/templates/.agent/skills/app-builder/project-detection.md +0 -34
- package/templates/.agent/skills/app-builder/scaffolding.md +0 -118
- package/templates/.agent/skills/app-builder/tech-stack.md +0 -40
- package/templates/.agent/skills/app-builder/templates/SKILL.md +0 -39
- package/templates/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +0 -76
- package/templates/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +0 -92
- package/templates/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +0 -88
- package/templates/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +0 -88
- package/templates/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +0 -83
- package/templates/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +0 -90
- package/templates/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +0 -90
- package/templates/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +0 -82
- package/templates/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +0 -100
- package/templates/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +0 -106
- package/templates/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +0 -101
- package/templates/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +0 -83
- package/templates/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +0 -93
- package/templates/.agent/skills/architecture/SKILL.md +0 -55
- package/templates/.agent/skills/architecture/context-discovery.md +0 -43
- package/templates/.agent/skills/architecture/examples.md +0 -94
- package/templates/.agent/skills/architecture/pattern-selection.md +0 -68
- package/templates/.agent/skills/architecture/patterns-reference.md +0 -50
- package/templates/.agent/skills/architecture/trade-off-analysis.md +0 -77
- package/templates/.agent/skills/bash-linux/SKILL.md +0 -199
- package/templates/.agent/skills/behavioral-modes/SKILL.md +0 -242
- package/templates/.agent/skills/clean-code/SKILL.md +0 -201
- package/templates/.agent/skills/code-review-checklist/SKILL.md +0 -109
- package/templates/.agent/skills/database-design/SKILL.md +0 -52
- package/templates/.agent/skills/database-design/database-selection.md +0 -43
- package/templates/.agent/skills/database-design/indexing.md +0 -39
- package/templates/.agent/skills/database-design/migrations.md +0 -48
- package/templates/.agent/skills/database-design/optimization.md +0 -36
- package/templates/.agent/skills/database-design/orm-selection.md +0 -30
- package/templates/.agent/skills/database-design/schema-design.md +0 -56
- package/templates/.agent/skills/database-design/scripts/schema_validator.py +0 -172
- package/templates/.agent/skills/deployment-procedures/SKILL.md +0 -241
- package/templates/.agent/skills/docker-expert/SKILL.md +0 -409
- package/templates/.agent/skills/game-development/2d-games/SKILL.md +0 -119
- package/templates/.agent/skills/game-development/3d-games/SKILL.md +0 -135
- package/templates/.agent/skills/game-development/SKILL.md +0 -167
- package/templates/.agent/skills/game-development/game-art/SKILL.md +0 -185
- package/templates/.agent/skills/game-development/game-audio/SKILL.md +0 -190
- package/templates/.agent/skills/game-development/game-design/SKILL.md +0 -129
- package/templates/.agent/skills/game-development/mobile-games/SKILL.md +0 -108
- package/templates/.agent/skills/game-development/multiplayer/SKILL.md +0 -132
- package/templates/.agent/skills/game-development/pc-games/SKILL.md +0 -144
- package/templates/.agent/skills/game-development/vr-ar/SKILL.md +0 -123
- package/templates/.agent/skills/game-development/web-games/SKILL.md +0 -150
- package/templates/.agent/skills/lint-and-validate/SKILL.md +0 -45
- package/templates/.agent/skills/lint-and-validate/scripts/lint_runner.py +0 -172
- package/templates/.agent/skills/lint-and-validate/scripts/type_coverage.py +0 -173
- package/templates/.agent/skills/mcp-builder/SKILL.md +0 -176
- package/templates/.agent/skills/nestjs-expert/SKILL.md +0 -552
- package/templates/.agent/skills/nextjs-best-practices/SKILL.md +0 -203
- package/templates/.agent/skills/nodejs-best-practices/SKILL.md +0 -333
- package/templates/.agent/skills/parallel-agents/SKILL.md +0 -175
- package/templates/.agent/skills/performance-profiling/SKILL.md +0 -143
- package/templates/.agent/skills/performance-profiling/scripts/lighthouse_audit.py +0 -76
- package/templates/.agent/skills/powershell-windows/SKILL.md +0 -167
- package/templates/.agent/skills/prisma-expert/SKILL.md +0 -355
- package/templates/.agent/skills/python-patterns/SKILL.md +0 -441
- package/templates/.agent/skills/react-patterns/SKILL.md +0 -198
- package/templates/.agent/skills/red-team-tactics/SKILL.md +0 -199
- package/templates/.agent/skills/server-management/SKILL.md +0 -161
- package/templates/.agent/skills/systematic-debugging/SKILL.md +0 -109
- package/templates/.agent/skills/tdd-workflow/SKILL.md +0 -149
- package/templates/.agent/skills/testing-patterns/SKILL.md +0 -178
- package/templates/.agent/skills/testing-patterns/scripts/test_runner.py +0 -219
- package/templates/.agent/skills/typescript-expert/SKILL.md +0 -429
- package/templates/.agent/skills/vue-expert/SKILL.md +0 -374
- package/templates/.agent/skills/vulnerability-scanner/SKILL.md +0 -276
- package/templates/.agent/skills/vulnerability-scanner/checklists.md +0 -121
- package/templates/.agent/skills/vulnerability-scanner/scripts/security_scan.py +0 -458
- package/templates/.agent/skills/webapp-testing/SKILL.md +0 -187
- package/templates/.agent/skills/webapp-testing/scripts/playwright_runner.py +0 -173
- package/templates/.agent/workflows/debug.md +0 -103
- package/templates/.agent/workflows/deploy.md +0 -176
- package/templates/.agent/workflows/enhance.md +0 -63
- package/templates/.agent/workflows/test.md +0 -144
package/README.md
CHANGED
|
@@ -3,15 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
# 🚀 Antigravity Marketing Kit
|
|
5
5
|
|
|
6
|
-
> **
|
|
6
|
+
> **60 specialized skills, 10 expert agents, and 13 streamlined workflows.**
|
|
7
7
|
> Your ultimate AI-powered marketing command center for the Gemini CLI.
|
|
8
8
|
|
|
9
|
-
[](https://github.com/nguyenphp/antigravity-marketing/releases)
|
|
13
|
-
[](https://github.com/nguyenphp/antigravity-marketing/stargazers)
|
|
14
|
-
[](https://opensource.org/licenses/MIT)
|
|
9
|
+
[](https://www.npmjs.com/package/@nguyenphp/antigravity-marketing)
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
[](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**:
|
|
30
|
-
- **🤖 Specialized Agents**:
|
|
31
|
-
- **🔄 Proven Workflows**:
|
|
26
|
+
- **🧠 Domain Expertise**: 60 skills covering the entire marketing spectrum.
|
|
27
|
+
- **🤖 Specialized Agents**: 10 experts covering Content, Growth, Strategy, Analytics, and specialized domains.
|
|
28
|
+
- **🔄 Proven Workflows**: 13 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,116 @@ 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
|
-
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 🧠 Skills (60)
|
|
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
|
-
| `
|
|
52
|
-
| `
|
|
53
|
-
| `
|
|
54
|
-
| `
|
|
55
|
-
| `
|
|
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
|
-
| `
|
|
64
|
-
| `
|
|
65
|
-
| `
|
|
66
|
-
| `
|
|
67
|
-
| `
|
|
68
|
-
| `
|
|
69
|
-
| `
|
|
70
|
-
| `
|
|
71
|
-
| `
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
| `
|
|
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
|
-
| `
|
|
87
|
-
| `
|
|
88
|
-
| `
|
|
89
|
-
| `
|
|
90
|
-
| `
|
|
91
|
-
| `
|
|
92
|
-
| `
|
|
93
|
-
| `
|
|
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 &
|
|
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
|
-
| `
|
|
113
|
-
| `
|
|
114
|
-
|
|
115
|
-
| `
|
|
116
|
-
| `
|
|
117
|
-
| `
|
|
118
|
-
| `
|
|
119
|
-
|
|
120
|
-
|
|
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
|
+
| `behavioral-modes` | AI agent behavioral mode management | [Doc](templates/.agent/skills/behavioral-modes/SKILL.md) |
|
|
149
|
+
| `parallel-agents` | Multi-agent parallel execution patterns | [Doc](templates/.agent/skills/parallel-agents/SKILL.md) |
|
|
150
|
+
| `plan-writing` | Structured planning & documentation | [Doc](templates/.agent/skills/plan-writing/SKILL.md) |
|
|
151
|
+
| `systematic-debugging` | Systematic debugging methodology | [Doc](templates/.agent/skills/systematic-debugging/SKILL.md) |
|
|
152
|
+
| `game-development` | Game development patterns & engines | [Doc](templates/.agent/skills/game-development/SKILL.md) |
|
|
153
|
+
|
|
154
|
+
## 🤖 Agents (20)
|
|
121
155
|
|
|
122
156
|
| Agent | Description |
|
|
123
157
|
|-------|-------------|
|
|
@@ -125,8 +159,14 @@ Antigravity Marketing Kit is not just a tool; it's a **powerful AI strategy laye
|
|
|
125
159
|
| `content-creator` | Content creation specialist |
|
|
126
160
|
| `growth-specialist` | Growth hacking specialist |
|
|
127
161
|
| `analytics-specialist` | Data analysis and insights |
|
|
162
|
+
| `seo-specialist` | SEO optimization expert |
|
|
163
|
+
| `performance-optimizer` | Performance optimization expert |
|
|
164
|
+
| `documentation-writer` | Technical documentation specialist |
|
|
165
|
+
| `explorer-agent` | Codebase exploration & analysis |
|
|
166
|
+
| `orchestrator` | Multi-agent orchestration |
|
|
167
|
+
| `project-planner` | Project planning & management |
|
|
128
168
|
|
|
129
|
-
## 🔄 Workflows (
|
|
169
|
+
## 🔄 Workflows (17)
|
|
130
170
|
|
|
131
171
|
| Command | Description |
|
|
132
172
|
|---------|-------------|
|
|
@@ -134,6 +174,15 @@ Antigravity Marketing Kit is not just a tool; it's a **powerful AI strategy laye
|
|
|
134
174
|
| `/content` | Content creation workflow |
|
|
135
175
|
| `/analyze` | Marketing analytics workflow |
|
|
136
176
|
| `/optimize` | Conversion optimization workflow |
|
|
177
|
+
| `/report` | **📄 Professional PDF report generation** |
|
|
178
|
+
| `/brand-report` | **🎨 AI-driven brand style cloning & reporting** |
|
|
179
|
+
| `/brainstorm` | Creative ideation sessions |
|
|
180
|
+
| `/create` | General creation workflow |
|
|
181
|
+
| `/orchestrate` | Multi-agent orchestration |
|
|
182
|
+
| `/plan` | Structured planning workflow |
|
|
183
|
+
| `/preview` | Preview & review workflow |
|
|
184
|
+
| `/status` | Project status assessment |
|
|
185
|
+
| `/ui-ux-pro-max` | Design intelligence workflow |
|
|
137
186
|
|
|
138
187
|
## 📦 Installation
|
|
139
188
|
|
|
@@ -209,6 +258,8 @@ Invoke workflows with slash commands:
|
|
|
209
258
|
/content - Create content with guidance
|
|
210
259
|
/analyze - Analyze marketing metrics
|
|
211
260
|
/optimize - Run conversion optimization
|
|
261
|
+
/report - Generate professional PDF reports
|
|
262
|
+
/brand-report - AI-driven brand-styled reporting
|
|
212
263
|
```
|
|
213
264
|
|
|
214
265
|
## 🤝 Contributing
|
|
@@ -235,6 +286,7 @@ This project is built upon and includes skills from:
|
|
|
235
286
|
- 🎨 **[UI UX Pro Max](https://ui-ux-pro-max-skill.nextlevelbuilder.io/)** - Design intelligence skills (`ui-ux-pro-max`, `frontend-design`, `tailwind-patterns`)
|
|
236
287
|
- 🛠️ **[ClaudeKit](https://claudekit.cc/)** - Production-ready skills (`seo-fundamentals`, `documentation-templates`)
|
|
237
288
|
- 🎬 **[Remotion Dev Skills](https://github.com/remotion-dev/skills)** - Official Remotion best practices (`remotion-best-practices`)
|
|
289
|
+
- 📄 **[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
290
|
- 🌌 **[Antigravity Awesome Skills](https://github.com/sickn33/antigravity-awesome-skills)** - 250+ community-powered agentic skills (`marketing-ideas`, `cro-suite`, `programmatic-seo`, etc.)
|
|
239
291
|
|
|
240
292
|
## 📄 License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nguyenphp/antigravity-marketing",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
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.
|