@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
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
# Slide Page Types
|
|
2
|
+
|
|
3
|
+
Classify **every slide** as **exactly one** of these 5 types:
|
|
4
|
+
|
|
5
|
+
## 1. Cover Page
|
|
6
|
+
|
|
7
|
+
- **Use for**: Opening + tone setting
|
|
8
|
+
- **Content**: Big title, subtitle/presenter, date/occasion, strong background/motif
|
|
9
|
+
|
|
10
|
+
### Layout Options
|
|
11
|
+
|
|
12
|
+
**Asymmetric Left-Right Layout**
|
|
13
|
+
- Text concentrated on one side, image on the opposite
|
|
14
|
+
- Best for: Corporate presentations, product launches, professional reports
|
|
15
|
+
```
|
|
16
|
+
| Title & Subtitle | Visual/Image |
|
|
17
|
+
| Description | |
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
**Center-Aligned Layout**
|
|
21
|
+
- Content centered with background image
|
|
22
|
+
- Best for: Inspirational talks, event presentations, creative pitches
|
|
23
|
+
```
|
|
24
|
+
| |
|
|
25
|
+
| [Background Image] |
|
|
26
|
+
| MAIN TITLE |
|
|
27
|
+
| Subtitle |
|
|
28
|
+
| |
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Font Size Hierarchy
|
|
32
|
+
|
|
33
|
+
| Element | Recommended Size | Ratio to Base |
|
|
34
|
+
|---------|-----------------|---------------|
|
|
35
|
+
| Main Title | 72-120px | 3x-5x |
|
|
36
|
+
| Subtitle | 28-40px | 1.5x-2x |
|
|
37
|
+
| Supporting Text | 18-24px | 1x (base) |
|
|
38
|
+
| Meta Info (date, name) | 14-18px | 0.7x-1x |
|
|
39
|
+
|
|
40
|
+
**Key Principles:**
|
|
41
|
+
1. **Dramatic Contrast**: Main title should be at least 2-3x larger than subtitle
|
|
42
|
+
2. **Visual Anchor**: The largest text becomes the focal point
|
|
43
|
+
3. **Readable Hierarchy**: Viewers should instantly understand what's most important
|
|
44
|
+
4. **Avoid Similarity**: Never let adjacent text elements be within 20% of each other's size
|
|
45
|
+
|
|
46
|
+
### Content Elements
|
|
47
|
+
|
|
48
|
+
1. **Main Title** — Always required, largest font
|
|
49
|
+
2. **Subtitle** — When additional context is needed (clearly smaller than title)
|
|
50
|
+
3. **Icons** — When they reinforce the theme
|
|
51
|
+
4. **Date/Event Info** — When relevant (smallest text)
|
|
52
|
+
5. **Company/Brand Logo** — When representing an organization
|
|
53
|
+
6. **Presenter Name** — For keynotes (small, subtle)
|
|
54
|
+
|
|
55
|
+
### Design Decisions
|
|
56
|
+
|
|
57
|
+
Consider: Purpose (corporate/educational/creative), Audience, Tone, Content Volume, Visual Assets needed.
|
|
58
|
+
|
|
59
|
+
### Workflow
|
|
60
|
+
|
|
61
|
+
1. **Analyze**: Understand topic, audience, purpose
|
|
62
|
+
2. **Choose Layout**: Select based on content
|
|
63
|
+
3. **Write Slide**: Use PptxGenJS. Use shapes and SVG elements for visual interest.
|
|
64
|
+
4. **Verify**: Generate preview as `slide-XX-preview.pptx`. Extract text with `python -m markitdown slide-XX-preview.pptx`, verify all content present and no placeholder text remains.
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## 2. Table of Contents
|
|
69
|
+
|
|
70
|
+
- **Use for**: Navigation + expectation setting (3-5 sections)
|
|
71
|
+
- **Content**: Section list (optional icons / page numbers)
|
|
72
|
+
|
|
73
|
+
### Layout Options
|
|
74
|
+
|
|
75
|
+
**Numbered Vertical List** — Best for 3-5 sections, straightforward presentations
|
|
76
|
+
```
|
|
77
|
+
| TABLE OF CONTENTS |
|
|
78
|
+
| |
|
|
79
|
+
| 01 Section Title One |
|
|
80
|
+
| 02 Section Title Two |
|
|
81
|
+
| 03 Section Title Three |
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Two-Column Grid** — Best for 4-6 sections, content-rich presentations
|
|
85
|
+
```
|
|
86
|
+
| TABLE OF CONTENTS |
|
|
87
|
+
| |
|
|
88
|
+
| 01 Section One 02 Section Two |
|
|
89
|
+
| Description Description |
|
|
90
|
+
| 03 Section Three 04 Section Four |
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
**Sidebar Navigation** — Best for 3-5 sections, modern/corporate
|
|
94
|
+
```
|
|
95
|
+
| ▌01 | Section Title One |
|
|
96
|
+
| ▌02 | Section Title Two |
|
|
97
|
+
| ▌03 | Section Title Three |
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**Card-Based** — Best for 3-4 sections, creative/modern
|
|
101
|
+
```
|
|
102
|
+
| TABLE OF CONTENTS |
|
|
103
|
+
| ┌─────┐ ┌─────┐ ┌─────┐ ┌─────┐ |
|
|
104
|
+
| │ 01 │ │ 02 │ │ 03 │ │ 04 │ |
|
|
105
|
+
| │Title│ │Title│ │Title│ │Title│ |
|
|
106
|
+
| └─────┘ └─────┘ └─────┘ └─────┘ |
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### Font Size Hierarchy
|
|
110
|
+
|
|
111
|
+
| Element | Recommended Size | Ratio to Base |
|
|
112
|
+
|---------|-----------------|---------------|
|
|
113
|
+
| Page Title ("Table of Contents" / "Agenda") | 36-44px | 2.5x-3x |
|
|
114
|
+
| Section Number | 28-36px | 2x-2.5x |
|
|
115
|
+
| Section Title | 20-28px | 1.5x-2x |
|
|
116
|
+
| Section Description | 14-16px | 1x (base) |
|
|
117
|
+
|
|
118
|
+
**Key Principles:**
|
|
119
|
+
1. **Clear Numbering**: Section numbers should be visually prominent — bold, accent color, or larger size
|
|
120
|
+
2. **Scannable Structure**: Viewer should scan all sections in 2-3 seconds
|
|
121
|
+
3. **Consistent Spacing**: Equal vertical spacing between sections
|
|
122
|
+
4. **Visual Markers**: Colored dots, lines, numbers, or icons to anchor each section
|
|
123
|
+
5. **Avoid Clutter**: Descriptions one line max or omit entirely
|
|
124
|
+
|
|
125
|
+
### Content Elements
|
|
126
|
+
|
|
127
|
+
1. **Page Title** — Always required ("Table of Contents", "Agenda", "Overview")
|
|
128
|
+
2. **Section Numbers** — Consistent format (01, 02... or I, II...)
|
|
129
|
+
3. **Section Titles** — Clear and concise
|
|
130
|
+
4. **Section Descriptions** — Optional one-line summaries
|
|
131
|
+
5. **Visual Separators** — SVG dividers or spacing
|
|
132
|
+
6. **Decorative Elements** — Subtle accent shapes
|
|
133
|
+
7. **Page Number Badge** — **MANDATORY**
|
|
134
|
+
|
|
135
|
+
### Design Decisions
|
|
136
|
+
|
|
137
|
+
1. **Section Count**: 3 → vertical list; 4-6 → grid or compact; 7+ → multi-column
|
|
138
|
+
2. **Description Length**: Long → vertical list; None → compact grid/cards
|
|
139
|
+
3. **Tone**: Corporate → numbered list; Creative → card-based; Academic → Roman numerals
|
|
140
|
+
4. **Consistency**: Match visual style of cover page
|
|
141
|
+
|
|
142
|
+
### Workflow
|
|
143
|
+
|
|
144
|
+
1. **Analyze**: Section list, count, presentation context
|
|
145
|
+
2. **Choose Layout**: Based on section count and content
|
|
146
|
+
3. **Plan Visual Hierarchy**: Numbering style, font sizes, spacing
|
|
147
|
+
4. **Write Slide**: Use PptxGenJS. Use shapes for decorative elements. **MUST include page number badge.**
|
|
148
|
+
5. **Verify**: Generate preview, extract text with markitdown, verify content and badge.
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## 3. Section Divider
|
|
153
|
+
|
|
154
|
+
- **Use for**: Clear transitions between major parts
|
|
155
|
+
- **Content**: Section number + title (+ optional 1-2 line intro)
|
|
156
|
+
|
|
157
|
+
### Layout Options
|
|
158
|
+
|
|
159
|
+
**Bold Center** — Best for minimal, modern presentations
|
|
160
|
+
```
|
|
161
|
+
| 02 |
|
|
162
|
+
| SECTION TITLE |
|
|
163
|
+
| Optional intro line |
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
**Left-Aligned with Accent Block** — Best for corporate, structured presentations
|
|
167
|
+
```
|
|
168
|
+
| ████ | 02 |
|
|
169
|
+
| ████ | SECTION TITLE |
|
|
170
|
+
| ████ | Optional intro line |
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
**Split Background** — Best for high-contrast, dramatic transitions
|
|
174
|
+
```
|
|
175
|
+
| ██████████ | SECTION TITLE |
|
|
176
|
+
| ██ 02 ██ | Optional intro |
|
|
177
|
+
| ██████████ | |
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
**Full-Bleed Background with Overlay** — Best for creative, bold presentations
|
|
181
|
+
```
|
|
182
|
+
| ████████████████████████████████████ |
|
|
183
|
+
| ████ large 02 █████████ |
|
|
184
|
+
| ████ SECTION TITLE █████████ |
|
|
185
|
+
| ████████████████████████████████████ |
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
### Font Size Hierarchy
|
|
189
|
+
|
|
190
|
+
| Element | Recommended Size | Notes |
|
|
191
|
+
|---------|-----------------|-------|
|
|
192
|
+
| Section Number | 72-120px | Bold, accent color or semi-transparent |
|
|
193
|
+
| Section Title | 36-48px | Bold, clear, primary text color |
|
|
194
|
+
| Intro Text | 16-20px | Light weight, muted color, optional |
|
|
195
|
+
|
|
196
|
+
**Key Principles:**
|
|
197
|
+
1. **Dramatic Number**: Section number = most prominent visual element
|
|
198
|
+
2. **Strong Title**: Large but clearly secondary to the number
|
|
199
|
+
3. **Minimal Content**: Just number + title + optional one-liner
|
|
200
|
+
4. **Breathing Room**: Leave generous whitespace — dividers are pause moments
|
|
201
|
+
|
|
202
|
+
### Content Elements
|
|
203
|
+
|
|
204
|
+
1. **Section Number** — Always required. Format: `01`, `02`... or `I`, `II`... Match TOC style.
|
|
205
|
+
2. **Section Title** — Always required. Clear, concise.
|
|
206
|
+
3. **Intro Text** — Optional 1-2 line description.
|
|
207
|
+
4. **Decorative Elements** — SVG accent shapes (bars, lines, geometric blocks).
|
|
208
|
+
5. **Page Number Badge** — **MANDATORY**.
|
|
209
|
+
|
|
210
|
+
### Design Decisions
|
|
211
|
+
|
|
212
|
+
1. **Tone**: Corporate → accent block; Creative → full-bleed; Minimal → bold center
|
|
213
|
+
2. **Color**: Strong palette color for background/accent; high-contrast text
|
|
214
|
+
3. **Consistency**: Same divider style across all dividers in one presentation
|
|
215
|
+
4. **Contrast with content slides**: Visually distinct (different background color, more whitespace)
|
|
216
|
+
|
|
217
|
+
### Workflow
|
|
218
|
+
|
|
219
|
+
1. **Analyze**: Section number, title, optional intro
|
|
220
|
+
2. **Choose Layout**: Based on content and tone
|
|
221
|
+
3. **Write Slide**: Use PptxGenJS. Use shapes for decorative elements. **MUST include page number badge.**
|
|
222
|
+
4. **Verify**: Generate preview, extract text, verify content and badge.
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
## 4. Content Page
|
|
227
|
+
|
|
228
|
+
Pick a subtype based on the content. Each content slide belongs to exactly ONE subtype:
|
|
229
|
+
|
|
230
|
+
### Subtypes
|
|
231
|
+
|
|
232
|
+
**Text** — Bullets, quotes, or short paragraphs
|
|
233
|
+
- Must still include icons or SVG shapes — never plain text only
|
|
234
|
+
```
|
|
235
|
+
| SLIDE TITLE |
|
|
236
|
+
| * Bullet point one |
|
|
237
|
+
| * Bullet point two |
|
|
238
|
+
| * Bullet point three |
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
**Mixed Media** — Two-column or half-bleed image + text
|
|
242
|
+
```
|
|
243
|
+
| SLIDE TITLE |
|
|
244
|
+
| Text content | [Image/Visual] |
|
|
245
|
+
| and bullets | |
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
**Data Visualization** — Chart (SVG bar/progress/ring) + takeaways
|
|
249
|
+
- Must include data source
|
|
250
|
+
```
|
|
251
|
+
| SLIDE TITLE |
|
|
252
|
+
| [SVG Chart] | Key Takeaway 1 |
|
|
253
|
+
| | Key Takeaway 2 |
|
|
254
|
+
| Source: xxx |
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
**Comparison** — Side-by-side columns or cards (A vs B, pros/cons)
|
|
258
|
+
```
|
|
259
|
+
| SLIDE TITLE |
|
|
260
|
+
| ┌─ Option A ─┐ ┌─ Option B ─┐ |
|
|
261
|
+
| │ Detail 1 │ │ Detail 1 │ |
|
|
262
|
+
| └────────────┘ └────────────┘ |
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
**Timeline / Process** — Steps with arrows, journey, phases
|
|
266
|
+
```
|
|
267
|
+
| SLIDE TITLE |
|
|
268
|
+
| [1] ──→ [2] ──→ [3] ──→ [4] |
|
|
269
|
+
| Step Step Step Step |
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
**Image Showcase** — Hero image, gallery, visual-first layout
|
|
273
|
+
```
|
|
274
|
+
| SLIDE TITLE |
|
|
275
|
+
| ┌────────────────────────────────┐ |
|
|
276
|
+
| │ [Hero Image] │ |
|
|
277
|
+
| └────────────────────────────────┘ |
|
|
278
|
+
| Caption or supporting text |
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
### Font Size Hierarchy
|
|
282
|
+
|
|
283
|
+
| Element | Recommended Size | Notes |
|
|
284
|
+
|---------|-----------------|-------|
|
|
285
|
+
| Slide Title | 36-44px | Bold, top of slide |
|
|
286
|
+
| Section Header | 20-24px | Bold, for sub-sections within slide |
|
|
287
|
+
| Body Text | 14-16px | Regular weight, left-aligned |
|
|
288
|
+
| Captions / Source | 10-12px | Muted color, smallest text |
|
|
289
|
+
| Stat Callout | 60-72px | Large bold numbers for key statistics |
|
|
290
|
+
|
|
291
|
+
**Key Principles:**
|
|
292
|
+
1. **Left-align body text** — never center paragraphs or bullet lists
|
|
293
|
+
2. **Size contrast** — title must be 36pt+ to stand out from 14-16pt body
|
|
294
|
+
3. **Visual elements required** — every content slide must have at least one non-text element
|
|
295
|
+
4. **Breathing room** — 0.5" minimum margins, 0.3-0.5" between content blocks
|
|
296
|
+
|
|
297
|
+
### Content Elements
|
|
298
|
+
|
|
299
|
+
1. **Slide Title** — Always required, top of slide
|
|
300
|
+
2. **Body Content** — Text, bullets, data, or comparisons based on subtype
|
|
301
|
+
3. **Visual Element** — Image, chart, icon, or SVG shape — always required
|
|
302
|
+
4. **Source / Caption** — When showing data or external content
|
|
303
|
+
5. **Page Number Badge** — **MANDATORY**
|
|
304
|
+
|
|
305
|
+
### Design Decisions
|
|
306
|
+
|
|
307
|
+
1. **Subtype**: Determine first — drives the entire layout
|
|
308
|
+
2. **Content Volume**: Dense → multi-column or smaller font; Light → larger elements with more whitespace
|
|
309
|
+
3. **Data vs Narrative**: Data-heavy → charts + stat callouts; Story-driven → images + quotes
|
|
310
|
+
4. **Variety**: Each content slide should use a different layout from the previous one
|
|
311
|
+
5. **Consistency**: Typography, colors, and spacing must match the rest of the presentation
|
|
312
|
+
|
|
313
|
+
### Workflow
|
|
314
|
+
|
|
315
|
+
1. **Analyze**: Content, determine subtype, plan layout
|
|
316
|
+
2. **Choose Layout**: Best fit for subtype and content volume
|
|
317
|
+
3. **Write Slide**: Use PptxGenJS. Use shapes for charts, decorative elements, icons. **MUST include page number badge.**
|
|
318
|
+
4. **Verify**: Generate preview as `slide-XX-preview.pptx`. Extract text with markitdown, verify all content present, no placeholder text, badge included.
|
|
319
|
+
|
|
320
|
+
---
|
|
321
|
+
|
|
322
|
+
## 5. Summary / Closing Page
|
|
323
|
+
|
|
324
|
+
- **Use for**: Wrap-up + action
|
|
325
|
+
- **Content**: Key takeaways, CTA/next steps, contact/QR, thank-you
|
|
326
|
+
|
|
327
|
+
### Layout Options
|
|
328
|
+
|
|
329
|
+
**Key Takeaways** — Best for educational, corporate, data-driven presentations
|
|
330
|
+
```
|
|
331
|
+
| KEY TAKEAWAYS |
|
|
332
|
+
| ✓ Takeaway one |
|
|
333
|
+
| ✓ Takeaway two |
|
|
334
|
+
| ✓ Takeaway three |
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
**CTA / Next Steps** — Best for sales pitches, proposals, project kick-offs
|
|
338
|
+
```
|
|
339
|
+
| NEXT STEPS |
|
|
340
|
+
| [1] Action item one |
|
|
341
|
+
| [2] Action item two |
|
|
342
|
+
| Contact: email@example.com |
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
**Thank You / Contact** — Best for conference talks, keynotes
|
|
346
|
+
```
|
|
347
|
+
| THANK YOU |
|
|
348
|
+
| name@company.com |
|
|
349
|
+
| @handle | website.com |
|
|
350
|
+
```
|
|
351
|
+
|
|
352
|
+
**Split Recap** — Best for presentations needing both recap and action
|
|
353
|
+
```
|
|
354
|
+
| SUMMARY | NEXT STEPS |
|
|
355
|
+
| * Point one | Contact us at |
|
|
356
|
+
| * Point two | email@co.com |
|
|
357
|
+
| * Point three | [QR Code] |
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
### Font Size Hierarchy
|
|
361
|
+
|
|
362
|
+
| Element | Recommended Size | Notes |
|
|
363
|
+
|---------|-----------------|-------|
|
|
364
|
+
| Closing Title ("Thank You" / "Summary") | 48-72px | Bold, commanding |
|
|
365
|
+
| Takeaway / Action Item | 18-24px | Clear, scannable |
|
|
366
|
+
| Supporting Text | 14-16px | Regular weight |
|
|
367
|
+
| Contact Info | 14-16px | Muted color |
|
|
368
|
+
|
|
369
|
+
**Key Principles:**
|
|
370
|
+
1. **Strong closing statement**: Main message should be largest, most prominent
|
|
371
|
+
2. **Scannable items**: Takeaways/action items concise (one line each)
|
|
372
|
+
3. **Contact clarity**: Legible but not dominant
|
|
373
|
+
4. **Memorable finish**: Confident, polished ending
|
|
374
|
+
|
|
375
|
+
### Content Elements
|
|
376
|
+
|
|
377
|
+
1. **Closing Title** — Always required
|
|
378
|
+
2. **Takeaway Points** — 3-5 concise summary points (if applicable)
|
|
379
|
+
3. **Call to Action** — Clear next steps (if applicable)
|
|
380
|
+
4. **Contact Info** — Email, website, social handles (if provided)
|
|
381
|
+
5. **Decorative Elements** — SVG accents for visual consistency
|
|
382
|
+
6. **Page Number Badge** — **MANDATORY**
|
|
383
|
+
|
|
384
|
+
### Design Decisions
|
|
385
|
+
|
|
386
|
+
1. **Closing Type**: Recap, CTA, thank-you, or combination
|
|
387
|
+
2. **Content Volume**: Many takeaways → list; Simple closing → centered thank-you
|
|
388
|
+
3. **Audience Action**: Audience needs to do something → CTA; Informational → takeaways
|
|
389
|
+
4. **Tone Consistency**: Match energy of cover page
|
|
390
|
+
5. **Visual Distinction**: Special but not disconnected from the rest
|
|
391
|
+
|
|
392
|
+
### Workflow
|
|
393
|
+
|
|
394
|
+
1. **Analyze**: Closing content — takeaways, CTA, contact, thank-you
|
|
395
|
+
2. **Choose Layout**: Based on content type
|
|
396
|
+
3. **Write Slide**: Use PptxGenJS. Use shapes for decorative elements. **MUST include page number badge.**
|
|
397
|
+
4. **Verify**: Generate preview, extract text, verify content and badge.
|
|
398
|
+
|
|
399
|
+
---
|
|
400
|
+
|
|
401
|
+
## Additional Layout Patterns
|
|
402
|
+
|
|
403
|
+
Use these across content slides for visual variety:
|
|
404
|
+
|
|
405
|
+
- **Two-column** (text left, illustration right)
|
|
406
|
+
- **Icon + text rows** (icon in colored circle, bold header, description below)
|
|
407
|
+
- **2x2 or 2x3 grid** (image on one side, grid of content blocks on other)
|
|
408
|
+
- **Half-bleed image** (full left or right side) with content overlay
|
|
409
|
+
- **Large stat callouts** (big numbers 60-72pt with small labels below)
|
|
410
|
+
- **Comparison columns** (before/after, pros/cons)
|
|
411
|
+
- **Timeline or process flow** (numbered steps, arrows)
|
|
412
|
+
- **Icons in small colored circles** next to section headers
|
|
413
|
+
- **Italic accent text** for key stats or taglines
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: tutorial-video-expert
|
|
3
|
+
description: Specialized in creating high-converting instructional videos and software tutorials using structured scripts and automated production.
|
|
4
|
+
allowed-tools: Read, RunCommand, Write
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Tutorial Video Expert - Mastering Instructional Design
|
|
8
|
+
|
|
9
|
+
> Build videos that don't just "show," but **teach**. This skill focuses on the educational psychology and technical automation required for world-class tutorials.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## 1. Instructional Frameworks (The "How-to" Science)
|
|
14
|
+
|
|
15
|
+
Follow the **PAS-T (Problem-Agitation-Solution-Tutorial)** framework for maximum retention:
|
|
16
|
+
|
|
17
|
+
| Phase | Purpose | Remotion Tip |
|
|
18
|
+
|-------|---------|--------------|
|
|
19
|
+
| **1. Hook/Problem** | Identify the specific pain point. | Fast-paced, high-contrast text. |
|
|
20
|
+
| **2. Solution** | Briefly show the intended result. | Final result montage (30fps+). |
|
|
21
|
+
| **3. Steps** | Break the process into 3-5 logical chunks. | Use `<Series>` for sequential steps. |
|
|
22
|
+
| **4. Deep Dive** | Specific details/pitfalls. | Zoom-in on UI elements (`interpolate`). |
|
|
23
|
+
| **5. CTA** | Next steps (Download, Subscribe, Try). | Glossy brand-colored buttons. |
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## 2. Visual Visual Vocabulary (The Look)
|
|
28
|
+
|
|
29
|
+
Tutorials require specific visual cues to guide the viewer's eye:
|
|
30
|
+
|
|
31
|
+
| Element | Best Practice | Technical Detail |
|
|
32
|
+
|---------|---------------|------------------|
|
|
33
|
+
| **Focus Highlight** | Dim everything except the target area. | Overlay black with 50% opacity + `clipPath`. |
|
|
34
|
+
| **Callouts** | Rounded boxes with brand neon borders. | Glassmorphism (`backdropFilter`). |
|
|
35
|
+
| **Progress Bar** | Show stage progress at the bottom. | Map `frame` to width % in a full-width div. |
|
|
36
|
+
| **Keystroke Overlays** | Show shortcuts as they are mentioned. | Neon keys in the bottom-left corner. |
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## 3. Remotion Implementation (The Code)
|
|
41
|
+
|
|
42
|
+
Use these specialized tutorial components:
|
|
43
|
+
|
|
44
|
+
### Screen Recording Wrapper
|
|
45
|
+
```tsx
|
|
46
|
+
const TutorialFrame = ({ children, title }) => (
|
|
47
|
+
<div style={{ padding: 40, background: '#0a0a0c' }}>
|
|
48
|
+
<div style={{ borderRadius: 20, overflow: 'hidden', border: '2px solid #48B69A' }}>
|
|
49
|
+
{children}
|
|
50
|
+
</div>
|
|
51
|
+
<div className="label">{title}</div>
|
|
52
|
+
</div>
|
|
53
|
+
);
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Dynamic Zoom Component
|
|
57
|
+
```tsx
|
|
58
|
+
const ZoomArea = ({ frame, start, duration, factor }) => {
|
|
59
|
+
const scale = interpolate(frame, [start, start + duration], [1, factor], {
|
|
60
|
+
extrapolateRight: 'clamp',
|
|
61
|
+
});
|
|
62
|
+
return <div style={{ transform: `scale(${scale})` }}>...</div>;
|
|
63
|
+
};
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## 4. Voiceover & Scripting (The Voice)
|
|
69
|
+
|
|
70
|
+
- **Clarity > Speed**: Maintain a pace of 130-150 words per minute.
|
|
71
|
+
- **Micro-Pauses**: Insert 0.5s silence after a complex instruction.
|
|
72
|
+
- **Action Verbs**: Use "Click," "Navigate," "Select," "Type" - avoid "Maybe go here."
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## 5. Usage Command
|
|
77
|
+
|
|
78
|
+
To generate a tutorial structure:
|
|
79
|
+
```bash
|
|
80
|
+
ag-marketing-kit tutorial "Set up a Stripe Payment Link" --platform="reels"
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## Credits
|
|
86
|
+
- **Instructional Design**: Gagne's Nine Events of Instruction
|
|
87
|
+
- **Code Engine**: Official Remotion Best Practices
|
|
88
|
+
- **Aesthetics**: Antigravity Marketing Kit (Teal-Coral palette)
|