@pipyl/antigravity-marketing-workflows 1.0.0

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 ADDED
@@ -0,0 +1,105 @@
1
+ # 📣 Marketing Workflows
2
+
3
+ Bộ **6 marketing workflows** cho **Antigravity IDE**, giúp tự động hóa quy trình marketing.
4
+
5
+ ## ⚡ Quick Start
6
+
7
+ ```bash
8
+ # Cài đặt marketing workflows vào project
9
+ npx @pipyl/antigravity-marketing-workflows init
10
+ ```
11
+
12
+ Sau khi cài đặt, sử dụng các slash commands trong Antigravity IDE:
13
+
14
+ ```bash
15
+ /marketing-campaign # Lập kế hoạch campaign
16
+ /content-create # Tạo content marketing
17
+ /ads-optimize # Tối ưu hóa quảng cáo
18
+ /lead-generate # Thu hút leads
19
+ /seo-audit # SEO audit
20
+ /social-engage # Social media engagement
21
+ ```
22
+
23
+ ## 📦 Cài Đặt
24
+
25
+ ### Cách 1: Dùng npx (Khuyến nghị)
26
+
27
+ ```bash
28
+ cd your-project
29
+ npx @pipyl/antigravity-marketing-workflows init
30
+ ```
31
+
32
+ ### Cách 2: Install global
33
+
34
+ ```bash
35
+ npm install -g @pipyl/antigravity-marketing-workflows
36
+ marketing-workflows init
37
+ ```
38
+
39
+ ## 🛠️ Commands
40
+
41
+ | Command | Mô tả |
42
+ |---------|-------|
43
+ | `init` | Cài đặt workflows vào `.agent/workflows/` |
44
+ | `list` | Xem danh sách workflows có sẵn |
45
+ | `update` | Cập nhật workflows (ghi đè tất cả) |
46
+ | `remove` | Xóa workflows khỏi project |
47
+ | `help` | Hiển thị trợ giúp |
48
+
49
+ ## ⚙️ Options
50
+
51
+ | Option | Mô tả |
52
+ |--------|-------|
53
+ | `--force`, `-f` | Ghi đè workflows đã tồn tại |
54
+ | `--only=a,b,c` | Chỉ cài đặt các workflows cụ thể |
55
+ | `--dir=path` | Thư mục đích (mặc định: thư mục hiện tại) |
56
+
57
+ ### Ví dụ
58
+
59
+ ```bash
60
+ # Ghi đè workflows đã tồn tại
61
+ npx @pipyl/antigravity-marketing-workflows init --force
62
+
63
+ # Chỉ cài đặt một số workflows
64
+ npx @pipyl/antigravity-marketing-workflows init --only=content-create,seo-audit
65
+
66
+ # Xem danh sách workflows
67
+ npx @pipyl/antigravity-marketing-workflows list
68
+ ```
69
+
70
+ ## 📋 Danh Sách Workflows
71
+
72
+ | Command | Mô tả | Khi nào dùng |
73
+ |---------|-------|--------------|
74
+ | `/marketing-campaign` | Lập kế hoạch campaign | Khi cần chiến lược marketing tổng thể |
75
+ | `/content-create` | Tạo content marketing | Khi cần tạo content cho nhiều platform |
76
+ | `/ads-optimize` | Tối ưu Meta/Google Ads | Khi cần tối ưu quảng cáo |
77
+ | `/lead-generate` | Thu hút leads | Khi cần tạo lead magnets, email sequences |
78
+ | `/seo-audit` | SEO audit toàn diện | Khi cần đánh giá và cải thiện SEO |
79
+ | `/social-engage` | Social media engagement | Khi cần tối ưu engagement |
80
+
81
+ ## 📁 Cấu Trúc Sau Khi Cài Đặt
82
+
83
+ ```
84
+ your-project/
85
+ └── .agent/
86
+ └── workflows/
87
+ ├── ads-optimize.md
88
+ ├── content-create.md
89
+ ├── lead-generate.md
90
+ ├── marketing-campaign.md
91
+ ├── seo-audit.md
92
+ └── social-engage.md
93
+ ```
94
+
95
+ ## 🔗 Related Packages
96
+
97
+ - [@pipyl/antigravity-workflows](https://www.npmjs.com/package/@pipyl/antigravity-workflows) - Bộ workflows cho phát triển phần mềm
98
+
99
+ ## 📄 License
100
+
101
+ MIT License
102
+
103
+ ---
104
+
105
+ **Happy Marketing! 📣**
package/bin/cli.js ADDED
@@ -0,0 +1,264 @@
1
+ #!/usr/bin/env node
2
+
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+
6
+ // Colors for console output
7
+ const colors = {
8
+ reset: '\x1b[0m',
9
+ bright: '\x1b[1m',
10
+ dim: '\x1b[2m',
11
+ green: '\x1b[32m',
12
+ yellow: '\x1b[33m',
13
+ blue: '\x1b[34m',
14
+ magenta: '\x1b[35m',
15
+ cyan: '\x1b[36m',
16
+ red: '\x1b[31m',
17
+ };
18
+
19
+ const log = {
20
+ info: (msg) => console.log(`${colors.blue}ℹ${colors.reset} ${msg}`),
21
+ success: (msg) => console.log(`${colors.green}✓${colors.reset} ${msg}`),
22
+ warning: (msg) => console.log(`${colors.yellow}⚠${colors.reset} ${msg}`),
23
+ error: (msg) => console.log(`${colors.red}✗${colors.reset} ${msg}`),
24
+ title: (msg) => console.log(`\n${colors.bright}${colors.magenta}${msg}${colors.reset}\n`),
25
+ };
26
+
27
+ // Package info
28
+ const packageDir = path.dirname(__dirname);
29
+ const workflowsSourceDir = path.join(packageDir, 'workflows');
30
+
31
+ // Get all available workflows
32
+ function getAvailableWorkflows() {
33
+ try {
34
+ const files = fs.readdirSync(workflowsSourceDir);
35
+ return files.filter(f => f.endsWith('.md') && f !== 'README.md');
36
+ } catch (error) {
37
+ log.error(`Không thể đọc thư mục workflows: ${error.message}`);
38
+ return [];
39
+ }
40
+ }
41
+
42
+ // Parse command line arguments
43
+ function parseArgs(args) {
44
+ const options = {
45
+ command: args[0] || 'help',
46
+ force: false,
47
+ only: null,
48
+ targetDir: process.cwd(),
49
+ };
50
+
51
+ for (let i = 1; i < args.length; i++) {
52
+ const arg = args[i];
53
+ if (arg === '--force' || arg === '-f') {
54
+ options.force = true;
55
+ } else if (arg.startsWith('--only=')) {
56
+ options.only = arg.replace('--only=', '').split(',');
57
+ } else if (arg.startsWith('--dir=')) {
58
+ options.targetDir = arg.replace('--dir=', '');
59
+ }
60
+ }
61
+
62
+ return options;
63
+ }
64
+
65
+ // Init command - copy workflows to target directory
66
+ function initWorkflows(options) {
67
+ const targetDir = path.join(options.targetDir, '.agent', 'workflows');
68
+
69
+ log.title('📣 Marketing Workflows - Init');
70
+ log.info(`Target directory: ${targetDir}`);
71
+
72
+ // Create target directory if not exists
73
+ if (!fs.existsSync(targetDir)) {
74
+ fs.mkdirSync(targetDir, { recursive: true });
75
+ log.success('Đã tạo thư mục .agent/workflows/');
76
+ }
77
+
78
+ // Get workflows to copy
79
+ let workflowsToCopy = getAvailableWorkflows();
80
+
81
+ if (options.only) {
82
+ workflowsToCopy = workflowsToCopy.filter(w => {
83
+ const name = w.replace('.md', '');
84
+ return options.only.includes(name);
85
+ });
86
+ }
87
+
88
+ if (workflowsToCopy.length === 0) {
89
+ log.warning('Không có workflow nào để copy!');
90
+ return;
91
+ }
92
+
93
+ // Copy each workflow
94
+ let copied = 0;
95
+ let skipped = 0;
96
+
97
+ workflowsToCopy.forEach(workflow => {
98
+ const source = path.join(workflowsSourceDir, workflow);
99
+ const target = path.join(targetDir, workflow);
100
+
101
+ if (fs.existsSync(target) && !options.force) {
102
+ log.warning(`Bỏ qua ${workflow} (đã tồn tại, dùng --force để ghi đè)`);
103
+ skipped++;
104
+ return;
105
+ }
106
+
107
+ try {
108
+ fs.copyFileSync(source, target);
109
+ log.success(`Đã copy ${workflow}`);
110
+ copied++;
111
+ } catch (error) {
112
+ log.error(`Không thể copy ${workflow}: ${error.message}`);
113
+ }
114
+ });
115
+
116
+ // Summary
117
+ console.log('');
118
+ log.info(`Tổng kết: ${colors.green}${copied} đã copy${colors.reset}, ${colors.yellow}${skipped} bỏ qua${colors.reset}`);
119
+
120
+ if (copied > 0) {
121
+ console.log('');
122
+ log.title('📖 Hướng dẫn sử dụng');
123
+ console.log(' Trong Antigravity IDE, sử dụng các slash commands:');
124
+ console.log(` ${colors.cyan}/marketing-campaign${colors.reset} - Lập kế hoạch campaign`);
125
+ console.log(` ${colors.cyan}/content-create${colors.reset} - Tạo content marketing`);
126
+ console.log(` ${colors.cyan}/ads-optimize${colors.reset} - Tối ưu hóa quảng cáo`);
127
+ console.log(` ${colors.cyan}/lead-generate${colors.reset} - Thu hút leads`);
128
+ console.log(` ${colors.cyan}/seo-audit${colors.reset} - SEO audit`);
129
+ console.log(` ${colors.cyan}/social-engage${colors.reset} - Social media engagement`);
130
+ console.log('');
131
+ }
132
+ }
133
+
134
+ // List command - show available workflows
135
+ function listWorkflows() {
136
+ log.title('📋 Marketing Workflows có sẵn');
137
+
138
+ const workflows = getAvailableWorkflows();
139
+
140
+ workflows.forEach(w => {
141
+ const name = w.replace('.md', '');
142
+ const source = path.join(workflowsSourceDir, w);
143
+
144
+ try {
145
+ const content = fs.readFileSync(source, 'utf8');
146
+ const descMatch = content.match(/description:\s*(.+)/);
147
+ const desc = descMatch ? descMatch[1] : 'Không có mô tả';
148
+
149
+ console.log(` ${colors.cyan}/${name}${colors.reset}`);
150
+ console.log(` ${colors.dim}${desc}${colors.reset}`);
151
+ } catch (error) {
152
+ console.log(` ${colors.cyan}/${name}${colors.reset}`);
153
+ }
154
+ });
155
+
156
+ console.log('');
157
+ log.info(`Tổng cộng: ${workflows.length} marketing workflows`);
158
+ }
159
+
160
+ // Update command - update existing workflows
161
+ function updateWorkflows(options) {
162
+ options.force = true;
163
+ log.title('🔄 Marketing Workflows - Update');
164
+ initWorkflows(options);
165
+ }
166
+
167
+ // Remove command - remove workflows from project
168
+ function removeWorkflows(options) {
169
+ const targetDir = path.join(options.targetDir, '.agent', 'workflows');
170
+
171
+ log.title('🗑️ Marketing Workflows - Remove');
172
+
173
+ if (!fs.existsSync(targetDir)) {
174
+ log.warning('Thư mục .agent/workflows/ không tồn tại!');
175
+ return;
176
+ }
177
+
178
+ const workflows = getAvailableWorkflows();
179
+ let removed = 0;
180
+
181
+ workflows.forEach(workflow => {
182
+ const target = path.join(targetDir, workflow);
183
+
184
+ if (fs.existsSync(target)) {
185
+ try {
186
+ fs.unlinkSync(target);
187
+ log.success(`Đã xóa ${workflow}`);
188
+ removed++;
189
+ } catch (error) {
190
+ log.error(`Không thể xóa ${workflow}: ${error.message}`);
191
+ }
192
+ }
193
+ });
194
+
195
+ log.info(`Đã xóa ${removed} workflows`);
196
+ }
197
+
198
+ // Help command
199
+ function showHelp() {
200
+ console.log(`
201
+ ${colors.bright}${colors.magenta}📣 Marketing Workflows${colors.reset}
202
+ ${colors.dim}Bộ 6 marketing workflows cho Antigravity IDE${colors.reset}
203
+
204
+ ${colors.bright}Usage:${colors.reset}
205
+ npx @pipyl/antigravity-marketing-workflows <command> [options]
206
+
207
+ ${colors.bright}Commands:${colors.reset}
208
+ ${colors.cyan}init${colors.reset} Cài đặt marketing workflows vào project
209
+ ${colors.cyan}list${colors.reset} Xem danh sách workflows có sẵn
210
+ ${colors.cyan}update${colors.reset} Cập nhật workflows (ghi đè tất cả)
211
+ ${colors.cyan}remove${colors.reset} Xóa workflows khỏi project
212
+ ${colors.cyan}help${colors.reset} Hiển thị trợ giúp này
213
+
214
+ ${colors.bright}Options:${colors.reset}
215
+ ${colors.yellow}--force, -f${colors.reset} Ghi đè workflows đã tồn tại
216
+ ${colors.yellow}--only=a,b,c${colors.reset} Chỉ cài đặt các workflows cụ thể
217
+ ${colors.yellow}--dir=path${colors.reset} Thư mục đích (mặc định: thư mục hiện tại)
218
+
219
+ ${colors.bright}Available Workflows:${colors.reset}
220
+ ${colors.cyan}/marketing-campaign${colors.reset} - Lập kế hoạch campaign marketing
221
+ ${colors.cyan}/content-create${colors.reset} - Tạo content marketing
222
+ ${colors.cyan}/ads-optimize${colors.reset} - Tối ưu hóa Meta/Google Ads
223
+ ${colors.cyan}/lead-generate${colors.reset} - Thu hút và nuôi dưỡng leads
224
+ ${colors.cyan}/seo-audit${colors.reset} - SEO audit toàn diện
225
+ ${colors.cyan}/social-engage${colors.reset} - Social media engagement
226
+
227
+ ${colors.bright}Examples:${colors.reset}
228
+ npx @pipyl/antigravity-marketing-workflows init
229
+ npx @pipyl/antigravity-marketing-workflows init --force
230
+ npx @pipyl/antigravity-marketing-workflows init --only=content-create,seo-audit
231
+ npx @pipyl/antigravity-marketing-workflows list
232
+
233
+ ${colors.dim}Docs: https://github.com/aidevflydino/marketing-workflows${colors.reset}
234
+ `);
235
+ }
236
+
237
+ // Main
238
+ function main() {
239
+ const args = process.argv.slice(2);
240
+ const options = parseArgs(args);
241
+
242
+ switch (options.command) {
243
+ case 'init':
244
+ initWorkflows(options);
245
+ break;
246
+ case 'list':
247
+ listWorkflows();
248
+ break;
249
+ case 'update':
250
+ updateWorkflows(options);
251
+ break;
252
+ case 'remove':
253
+ removeWorkflows(options);
254
+ break;
255
+ case 'help':
256
+ case '--help':
257
+ case '-h':
258
+ default:
259
+ showHelp();
260
+ break;
261
+ }
262
+ }
263
+
264
+ main();
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@pipyl/antigravity-marketing-workflows",
3
+ "version": "1.0.0",
4
+ "description": "Bộ 6 marketing workflows cho Antigravity IDE - Tự động hóa quy trình marketing",
5
+ "author": "AIDevFlyDino",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/aidevflydino/marketing-workflows"
10
+ },
11
+ "keywords": [
12
+ "antigravity",
13
+ "marketing",
14
+ "workflows",
15
+ "ai-marketing",
16
+ "automation",
17
+ "content-marketing",
18
+ "seo",
19
+ "social-media",
20
+ "ads-optimization",
21
+ "lead-generation"
22
+ ],
23
+ "bin": {
24
+ "antigravity-marketing-workflows": "./bin/cli.js"
25
+ },
26
+ "files": [
27
+ "bin/",
28
+ "workflows/",
29
+ "README.md"
30
+ ],
31
+ "engines": {
32
+ "node": ">=14.0.0"
33
+ }
34
+ }
@@ -0,0 +1,20 @@
1
+ # Marketing Workflows
2
+
3
+ Bộ 6 marketing workflows cho Antigravity IDE.
4
+
5
+ ## Danh sách
6
+
7
+ | Workflow | Mô tả |
8
+ |----------|-------|
9
+ | `/marketing-campaign` | Lập kế hoạch campaign marketing |
10
+ | `/content-create` | Tạo content cho nhiều platform |
11
+ | `/ads-optimize` | Tối ưu Meta Ads & Google Ads |
12
+ | `/lead-generate` | Thu hút và nuôi dưỡng leads |
13
+ | `/seo-audit` | SEO audit toàn diện |
14
+ | `/social-engage` | Social media engagement |
15
+
16
+ ## Cài đặt
17
+
18
+ ```bash
19
+ npx @pipyl/marketing-workflows init
20
+ ```
@@ -0,0 +1,138 @@
1
+ ---
2
+ description: Tối ưu hóa chiến dịch quảng cáo Meta Ads và Google Ads
3
+ ---
4
+
5
+ # /ads-optimize - Tối Ưu Quảng Cáo
6
+
7
+ ## Mục đích
8
+ Tối ưu hóa chiến dịch quảng cáo trên Meta Ads và Google Ads. Workflow này giúp tạo ad copy variants, targeting suggestions, và budget allocation recommendations.
9
+
10
+ ## Input cần cung cấp
11
+ - Campaign objective (awareness, traffic, conversions, leads)
12
+ - Target audience information
13
+ - Current ad performance data (nếu có)
14
+ - Budget constraints
15
+ - Platform (Meta Ads, Google Ads, hoặc cả hai)
16
+
17
+ ## Workflow
18
+
19
+ ### Phase 1: Campaign Audit
20
+ - Review current campaign setup và structure
21
+ - Analyze targeting và placements
22
+ - Check conversion tracking implementation
23
+ - Evaluate ad creative performance
24
+
25
+ ### Phase 2: Ad Copy Optimization
26
+
27
+ #### Headlines (5 variants)
28
+ ```
29
+ Format: [Benefit] + [Action] + [Urgency/Social Proof]
30
+
31
+ Ví dụ:
32
+ 1. "Tăng 300% Leads với AI Marketing Automation"
33
+ 2. "10,000+ Marketers Đang Dùng Tool Này"
34
+ 3. "Tiết Kiệm 20 Giờ/Tuần với Marketing AI"
35
+ 4. "Free Trial: AI Marketing Assistant"
36
+ 5. "Được Tin Dùng bởi Fortune 500 Companies"
37
+ ```
38
+
39
+ #### Descriptions (5 variants)
40
+ ```
41
+ Format: [Problem] → [Solution] → [CTA]
42
+
43
+ Ví dụ:
44
+ 1. "Mệt mỏi với manual marketing tasks? AI automation giúp bạn scale 10x. Dùng thử miễn phí."
45
+ 2. "Từ lead gen đến conversion, tự động hóa toàn bộ funnel. Bắt đầu trong 5 phút."
46
+ ```
47
+
48
+ #### CTAs phù hợp
49
+ - Awareness: Learn More, Discover, Explore
50
+ - Consideration: Get Started, Try Free, See Demo
51
+ - Conversion: Buy Now, Start Trial, Sign Up
52
+
53
+ ### Phase 3: Creative Recommendations
54
+
55
+ #### Image Ads
56
+ - Format: 1:1 cho feed, 9:16 cho stories
57
+ - Elements: Product, Face, Text overlay (<20%)
58
+ - Colors: Contrast với platform UI
59
+
60
+ #### Video Ads
61
+ - Length: 15s cho awareness, 30-60s cho consideration
62
+ - Hook: First 3 seconds critical
63
+ - Captions: Always on (85% watch without sound)
64
+
65
+ #### Carousel Ads
66
+ - 3-5 cards optimal
67
+ - First card = strongest hook
68
+ - Each card = standalone value
69
+
70
+ ### Phase 4: Targeting Refinement
71
+
72
+ #### Audience Segmentation
73
+ ```
74
+ Cold Audience:
75
+ - Interest-based targeting
76
+ - Lookalike audiences (1-3%)
77
+ - Broad targeting với good creative
78
+
79
+ Warm Audience:
80
+ - Website visitors (30/60/90 days)
81
+ - Video viewers (25%, 50%, 75%)
82
+ - Engagement audiences
83
+
84
+ Hot Audience:
85
+ - Add to cart abandoners
86
+ - Past purchasers (upsell)
87
+ - Email list custom audiences
88
+ ```
89
+
90
+ #### Exclusions
91
+ - Recent purchasers (7-14 days)
92
+ - Irrelevant interests
93
+ - Low-quality placements
94
+
95
+ ### Phase 5: Budget Allocation
96
+
97
+ #### Testing Phase (Week 1-2)
98
+ - 70% budget cho proven audiences
99
+ - 30% budget cho testing new audiences
100
+ - $5-10/day per ad set minimum
101
+
102
+ #### Scaling Phase (Week 3+)
103
+ - Double budget mỗi 3-4 ngày nếu ROAS tốt
104
+ - Cut losers fast (sau 500-1000 impressions)
105
+ - Horizontal scaling > Vertical scaling
106
+
107
+ ### Phase 6: Output
108
+ 1. **Ad Copy Matrix** - Headlines x Descriptions combinations
109
+ 2. **Targeting Document** - Audience definitions và exclusions
110
+ 3. **A/B Testing Plan** - What to test và success metrics
111
+ 4. **Budget Calculator** - Allocation recommendations
112
+ 5. **Performance Benchmarks** - Industry-standard KPIs
113
+
114
+ ## KPI Benchmarks
115
+
116
+ | Metric | E-commerce | SaaS | Lead Gen |
117
+ |--------|-----------|------|----------|
118
+ | CTR | 1-2% | 0.5-1% | 1-3% |
119
+ | CPC | $0.5-2 | $2-10 | $1-5 |
120
+ | CVR | 2-4% | 1-3% | 5-10% |
121
+ | ROAS | 3-5x | N/A | N/A |
122
+ | CPL | N/A | $50-200 | $20-100 |
123
+
124
+ ## Ví dụ sử dụng
125
+
126
+ ```
127
+ User: /ads-optimize
128
+ Platform: Meta Ads
129
+ Objective: Lead Generation
130
+ Audience: B2B SaaS, Marketing teams
131
+ Budget: $3,000/month
132
+ Current CPA: $80 (want to reduce to $50)
133
+ ```
134
+
135
+ ## Related Workflows
136
+ - `/marketing-campaign` - Overall campaign strategy
137
+ - `/content-create` - Ad creative content
138
+ - `/lead-generate` - Post-click optimization
@@ -0,0 +1,90 @@
1
+ ---
2
+ description: Tạo content marketing chất lượng cao cho nhiều platform từ một ý tưởng
3
+ ---
4
+
5
+ # /content-create - Tạo Content Marketing
6
+
7
+ ## Mục đích
8
+ Tạo content chất lượng cao cho nhiều platform từ một ý tưởng gốc. Workflow này hỗ trợ repurposing content để maximize reach với minimum effort.
9
+
10
+ ## Input cần cung cấp
11
+ - Topic/Keyword chính
12
+ - Target audience
13
+ - Content type mong muốn (blog, social, email, video script)
14
+ - Tone of voice (professional, casual, friendly, technical)
15
+
16
+ ## Workflow
17
+
18
+ ### Phase 1: Research
19
+ - Keyword research và SEO opportunities
20
+ - Competitor content analysis
21
+ - Trending topics và angles trong niche
22
+ - Questions people are asking (People Also Ask, Quora, Reddit)
23
+
24
+ ### Phase 2: Content Planning
25
+ - Tạo outline và structure
26
+ - Xác định key messages và takeaways
27
+ - Planning hooks cho attention
28
+ - Define CTAs phù hợp với mục tiêu
29
+
30
+ ### Phase 3: Content Creation
31
+
32
+ #### Blog Post
33
+ - Long-form article (1500-3000 words)
34
+ - SEO-optimized với target keywords
35
+ - Internal và external linking suggestions
36
+ - Meta title và description
37
+
38
+ #### Social Media Posts
39
+ - **LinkedIn**: Professional, thought-leadership style (1300 chars max)
40
+ - **Twitter/X**: Thread format (10-15 tweets)
41
+ - **Facebook**: Engaging, conversational (500 chars)
42
+ - **Instagram**: Caption + hashtag suggestions
43
+
44
+ #### Email Content
45
+ - Subject line options (5 variants)
46
+ - Preview text
47
+ - Email body với clear CTA
48
+
49
+ #### Video Script
50
+ - Hook (first 3 seconds)
51
+ - Main content sections
52
+ - CTA và outro
53
+
54
+ ### Phase 4: Repurposing Matrix
55
+ Từ 1 blog post, tạo:
56
+ - 5 LinkedIn posts
57
+ - 1 Twitter thread
58
+ - 3 Instagram carousel ideas
59
+ - 2 email newsletter sections
60
+ - 1 video script outline
61
+
62
+ ### Phase 5: Output
63
+ 1. **Primary Content** - Blog post hoặc main content piece
64
+ 2. **Social Media Kit** - Posts cho tất cả platforms
65
+ 3. **Email Snippets** - Content cho newsletters
66
+ 4. **SEO Optimization** - Meta tags, keywords, structure
67
+ 5. **Content Calendar Entry** - Scheduled publishing plan
68
+
69
+ ## Ví dụ sử dụng
70
+
71
+ ```
72
+ User: /content-create
73
+ Topic: "AI trong Marketing Automation"
74
+ Audience: Marketing Managers, CMOs
75
+ Type: Blog + Social repurpose
76
+ Tone: Professional but accessible
77
+ ```
78
+
79
+ ## Content Quality Checklist
80
+ - [ ] Hook trong 3 giây đầu (video) hoặc câu đầu (text)
81
+ - [ ] Value proposition rõ ràng
82
+ - [ ] Scannable format (headers, bullets, short paragraphs)
83
+ - [ ] Data/examples để support claims
84
+ - [ ] Clear CTA ở cuối
85
+ - [ ] Proofread cho grammar và typos
86
+
87
+ ## Related Workflows
88
+ - `/marketing-campaign` - Campaign planning
89
+ - `/seo-audit` - SEO optimization
90
+ - `/social-engage` - Distribution strategy