@nguyenphp/antigravity-marketing 1.0.2 → 1.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nguyenphp/antigravity-marketing",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Marketing-focused AI agent skills kit for Gemini CLI",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",
@@ -70,6 +70,70 @@ Create campaign assets:
70
70
  - Tracking setup
71
71
  - Results report
72
72
 
73
+ ## Step 6: Presentation Builder (Optional)
74
+
75
+ Ask the user: **"Bạn có muốn tạo file thuyết trình HTML cho campaign này không?"**
76
+
77
+ If YES, follow these steps:
78
+
79
+ ### 6.1 Build HTML Presentation
80
+
81
+ Use the `ui-ux-pro-max` skill to create a stunning HTML presentation:
82
+
83
+ 1. Create a single-file HTML presentation with:
84
+ - Modern dark theme with gradient accents
85
+ - Slide-based navigation (arrow keys + click)
86
+ - Progress bar
87
+ - Touch/swipe support for mobile
88
+ - All CSS inline (no external dependencies)
89
+
90
+ 2. Content slides should include:
91
+ - Title slide with campaign name
92
+ - Goals & KPIs
93
+ - Target audience
94
+ - Key messaging
95
+ - Marketing channels
96
+ - Timeline
97
+ - Content plan
98
+ - Success metrics
99
+ - CTA / Next steps
100
+
101
+ 3. Save to `docs/campaign-presentation.html`
102
+
103
+ ### 6.2 Preview Locally
104
+
105
+ Open the presentation in browser:
106
+
107
+ ```bash
108
+ # macOS
109
+ open docs/campaign-presentation.html
110
+
111
+ # Linux
112
+ xdg-open docs/campaign-presentation.html
113
+
114
+ # Windows
115
+ start docs/campaign-presentation.html
116
+ ```
117
+
118
+ ### 6.3 Deploy to Internet (Optional)
119
+
120
+ Ask the user: **"Bạn có muốn đẩy lên internet để chia sẻ không?"**
121
+
122
+ If YES, use nport to create a public URL:
123
+
124
+ ```bash
125
+ # Install nport if not installed
126
+ npm install -g nport
127
+
128
+ # Start a local server and expose it
129
+ npx serve docs -l 3000 &
130
+ nport 3000 -s <campaign-name>
131
+ ```
132
+
133
+ This will create a public URL like: `https://<campaign-name>.nport.link`
134
+
135
+ **Note**: The tunnel remains active for ~4 hours. Perfect for sharing presentations in meetings!
136
+
73
137
  ## Skills Used
74
138
 
75
139
  - marketing-strategist
@@ -78,3 +142,4 @@ Create campaign assets:
78
142
  - social-media-expert
79
143
  - email-marketing
80
144
  - analytics-marketing
145
+ - ui-ux-pro-max