@tidyfactor/marketing 1.3.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.
Files changed (50) hide show
  1. package/.tidyfactor +52 -0
  2. package/AGENTS.md +41 -0
  3. package/CHANGELOG.md +53 -0
  4. package/LICENSE +17 -0
  5. package/README.ar.md +299 -0
  6. package/README.de.md +44 -0
  7. package/README.es.md +44 -0
  8. package/README.fa.md +44 -0
  9. package/README.fr.md +44 -0
  10. package/README.md +320 -0
  11. package/README.pt.md +44 -0
  12. package/README.zh.md +44 -0
  13. package/SKILL-REGISTRY.md +36 -0
  14. package/SKILL.md +30 -0
  15. package/VISION.md +25 -0
  16. package/assets/hero-banner.png +0 -0
  17. package/assets/og-default.png +0 -0
  18. package/bin/add-skill.js +50 -0
  19. package/bin/create-kit.js +101 -0
  20. package/bin/remove-skill.js +24 -0
  21. package/brand.json +67 -0
  22. package/package.json +73 -0
  23. package/references/commands/advertising.md +27 -0
  24. package/references/commands/brief.md +17 -0
  25. package/references/commands/content.md +26 -0
  26. package/references/commands/email.md +26 -0
  27. package/references/commands/growth.md +27 -0
  28. package/references/commands/promotions.md +26 -0
  29. package/references/commands/social.md +27 -0
  30. package/references/commands/strategy.md +25 -0
  31. package/references/memory/ad-copy-templates.md +93 -0
  32. package/references/memory/arabic-writing.md +71 -0
  33. package/references/memory/decision-points.md +73 -0
  34. package/references/memory/frameworks.md +86 -0
  35. package/references/memory/lifecycle-flows.md +106 -0
  36. package/references/memory/metrics-benchmarks.md +70 -0
  37. package/references/memory/philosophy.md +16 -0
  38. package/references/memory/platform-specs.md +75 -0
  39. package/references/memory/promotions-math.md +56 -0
  40. package/references/memory/quality-bar.md +55 -0
  41. package/references/workflows/brief.md +72 -0
  42. package/references/workflows/campaign-launch.md +73 -0
  43. package/references/workflows/content-engine.md +68 -0
  44. package/references/workflows/email-lifecycle.md +55 -0
  45. package/references/workflows/paid-acquisition.md +66 -0
  46. package/references/workflows/promo-conversion.md +58 -0
  47. package/references/workflows/social-growth.md +65 -0
  48. package/references/workflows/viral-retention.md +63 -0
  49. package/tools/build-skill.js +206 -0
  50. package/tools/validate_skill.py +112 -0
@@ -0,0 +1,101 @@
1
+ #!/usr/bin/env node
2
+
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+ const readline = require('readline');
6
+
7
+ /* Lightweight Zero-Dependency ANSI formatting */
8
+ const chalk = {
9
+ cyan: (str) => `\x1b[36m${str}\x1b[0m`,
10
+ green: (str) => `\x1b[32m${str}\x1b[0m`,
11
+ yellow: (str) => `\x1b[33m${str}\x1b[0m`,
12
+ red: (str) => `\x1b[31m${str}\x1b[0m`,
13
+ bold: (str) => `\x1b[1m${str}\x1b[0m`,
14
+ dim: (str) => `\x1b[2m${str}\x1b[0m`,
15
+ };
16
+
17
+ const PACKAGE_ROOT = path.resolve(__dirname, '..');
18
+ const pkg = require(path.join(PACKAGE_ROOT, 'package.json'));
19
+
20
+ console.log(chalk.bold(chalk.cyan(`\n======================================================`)));
21
+ console.log(chalk.bold(chalk.cyan(` TidyFactor Marketing Engine — CLI Setup (v${pkg.version})`)));
22
+ console.log(chalk.bold(chalk.cyan(`======================================================\n`)));
23
+
24
+ const rl = readline.createInterface({
25
+ input: process.stdin,
26
+ output: process.stdout,
27
+ });
28
+
29
+ const ask = (query, defaultVal) =>
30
+ new Promise((resolve) => {
31
+ rl.question(chalk.yellow(`${query} `) + (defaultVal ? chalk.dim(`[${defaultVal}]: `) : ''), (answer) => {
32
+ resolve(answer.trim() || defaultVal);
33
+ });
34
+ });
35
+
36
+ async function main() {
37
+ const targetDirInput = await ask('1. Target Directory to initialize marketing engine:', './');
38
+ const targetDir = path.resolve(process.cwd(), targetDirInput);
39
+
40
+ console.log(chalk.cyan('\nSelect Primary Target Market:'));
41
+ console.log(' 1) Global / Western (English Direct Response)');
42
+ console.log(' 2) MENA / GCC (Arabic Modern Standard + Regional Payments)');
43
+ console.log(' 3) Dual Bilingual (English + Arabic Parity)');
44
+ const marketChoice = await ask('Select market (1-3):', '3');
45
+
46
+ console.log(chalk.cyan('\nSelect Primary Growth Focus:'));
47
+ console.log(' 1) B2B SaaS & Enterprise (LinkedIn, Cold InMail, Demo Funnels)');
48
+ console.log(' 2) E-Commerce & DTC (Meta/TikTok Ads, Abandoned Cart, UGC)');
49
+ console.log(' 3) High-Ticket Services / Info-Products (Webinars, VSLs, Email Drips)');
50
+ console.log(' 4) Full 360° Growth Suite (All 7 Pillars)');
51
+ const focusChoice = await ask('Select focus (1-4):', '4');
52
+
53
+ console.log(chalk.green(`\nInitializing TidyFactor Marketing Engine in: ${targetDir}...`));
54
+
55
+ // Copy references and SKILL.md to target directory .agents/skills/tidyfactor-marketing
56
+ const skillDestDir = path.join(targetDir, '.agents', 'skills', 'tidyfactor-marketing');
57
+ fs.mkdirSync(skillDestDir, { recursive: true });
58
+
59
+ const filesToCopy = ['SKILL.md', 'package.json', 'README.md', 'README.ar.md', 'LICENSE', 'brand.json', '.tidyfactor'];
60
+ for (const f of filesToCopy) {
61
+ const srcFile = path.join(PACKAGE_ROOT, f);
62
+ if (fs.existsSync(srcFile)) {
63
+ fs.copyFileSync(srcFile, path.join(skillDestDir, f));
64
+ }
65
+ }
66
+
67
+ // Copy references recursively
68
+ const copyDir = (src, dest) => {
69
+ fs.mkdirSync(dest, { recursive: true });
70
+ for (const item of fs.readdirSync(src)) {
71
+ const srcItem = path.join(src, item);
72
+ const destItem = path.join(dest, item);
73
+ if (fs.statSync(srcItem).isDirectory()) {
74
+ copyDir(srcItem, destItem);
75
+ } else {
76
+ fs.copyFileSync(srcItem, destItem);
77
+ }
78
+ }
79
+ };
80
+
81
+ copyDir(path.join(PACKAGE_ROOT, 'references'), path.join(skillDestDir, 'references'));
82
+
83
+ console.log(chalk.bold(chalk.green('\n✅ TidyFactor Marketing Engine installed successfully!')));
84
+ console.log(chalk.dim(`Installed at: ${skillDestDir}`));
85
+ console.log(chalk.cyan('\n🚀 Available Slash Commands:'));
86
+ console.log(' - /marketing strategy -> Brand Positioning & Launch Plans');
87
+ console.log(' - /marketing content -> Multi-Platform Content & SEO Topic Clusters');
88
+ console.log(' - /marketing social -> LinkedIn B2B & Instagram/TikTok Hooks');
89
+ console.log(' - /marketing email -> Welcome Drips & Cart Recovery Flows');
90
+ console.log(' - /marketing ads -> 3-Angle Ad Copy Matrices & CRO Audits');
91
+ console.log(' - /marketing promo -> 72-Hour Flash Sales & Decoy Pricing');
92
+ console.log(' - /marketing growth -> Retention, Churn Reduction & Referral Loops\n');
93
+
94
+ rl.close();
95
+ }
96
+
97
+ main().catch((err) => {
98
+ console.error(chalk.red(`\n❌ Error: ${err.message}`));
99
+ rl.close();
100
+ process.exit(1);
101
+ });
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env node
2
+
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+
6
+ /* Lightweight Zero-Dependency ANSI formatting */
7
+ const chalk = {
8
+ cyan: (str) => `\x1b[36m${str}\x1b[0m`,
9
+ green: (str) => `\x1b[32m${str}\x1b[0m`,
10
+ yellow: (str) => `\x1b[33m${str}\x1b[0m`,
11
+ red: (str) => `\x1b[31m${str}\x1b[0m`,
12
+ bold: (str) => `\x1b[1m${str}\x1b[0m`,
13
+ dim: (str) => `\x1b[2m${str}\x1b[0m`,
14
+ };
15
+
16
+ const targetDir = process.cwd();
17
+ const skillDestDir = path.join(targetDir, '.agents', 'skills', 'tidyfactor-marketing');
18
+
19
+ if (fs.existsSync(skillDestDir)) {
20
+ fs.rmSync(skillDestDir, { recursive: true, force: true });
21
+ console.log(chalk.bold(chalk.yellow(`\n🗑️ Removed TidyFactor Marketing Skill from .agents/skills/tidyfactor-marketing\n`)));
22
+ } else {
23
+ console.log(chalk.dim(`\nNo TidyFactor Marketing Skill found at: ${skillDestDir}\n`));
24
+ }
package/brand.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "TidyFactor Marketing",
3
+ "version": "1.3.0",
4
+ "schemaVersion": "brand-core-v2",
5
+ "meta": {
6
+ "product": "TidyFactor Marketing Engine",
7
+ "tagline": "AI Direct Response & 360° Growth Marketing Engine",
8
+ "description": "A production-grade, AI-native marketing and growth engine following TidyFactor Skill architecture. Handles 7 pillars and 28 capabilities with zero fluff, data-backed metrics, quantitative benchmarks, and platform-native direct-response conversion frameworks.",
9
+ "version": "1.1.1",
10
+ "lastUpdated": "2026-08-25"
11
+ },
12
+ "identity": {
13
+ "logo": {
14
+ "full": "assets/logo.svg",
15
+ "fullDark": "assets/logo-dark.svg",
16
+ "mark": "assets/logo-mark.svg",
17
+ "favicon": "assets/favicon.svg",
18
+ "minClearSpace": "1x logo-mark height on all sides",
19
+ "minSizePx": 24
20
+ },
21
+ "socialPreview": {
22
+ "ogImage": "assets/og-default.png",
23
+ "ogDimensions": "1200x630"
24
+ }
25
+ },
26
+ "voice": {
27
+ "tone": "direct, evidence-first, quantitative, authentic, teacher-practitioner",
28
+ "vocabulary": {
29
+ "preferred": [
30
+ "direct response",
31
+ "conversion rate",
32
+ "margin protection",
33
+ "CAC payback",
34
+ "LTV:CAC",
35
+ "ROAS",
36
+ "anti-cliché",
37
+ "pillar-cluster",
38
+ "search intent",
39
+ "retention loop"
40
+ ],
41
+ "banned": [
42
+ "cutting-edge",
43
+ "seamless experience",
44
+ "innovative solutions",
45
+ "take your business to the next level",
46
+ "one-stop shop",
47
+ "نسعى دائماً لتقديم الأفضل",
48
+ "فريق من الخبراء",
49
+ "حلول متكاملة ومبتكرة"
50
+ ]
51
+ },
52
+ "principles": [
53
+ "Every sentence must carry a mechanism, a concrete number, or a verifiable proof point.",
54
+ "Never price cut without calculating unit gross margin impact.",
55
+ "Respect audience attention with high-signal, zero-throat-clearing direct copy."
56
+ ]
57
+ },
58
+ "pillars": {
59
+ "1_strategy": "Brand Voice, Positioning Statement, Competitive Differentiation, Phased Launch (T-30 to T+14)",
60
+ "2_content": "Pillar + Cluster SEO, Multi-Platform Posts, Publishing Grids, Newsletters",
61
+ "3_social": "LinkedIn B2B & Founder Personal Branding, Instagram/TikTok 0-3s Hooks, 0-1k Roadmap",
62
+ "4_email": "Lead Magnet Mechanics, 5-Email Welcome Flow, 3-Stage Cart Recovery, Win-Back Sequences",
63
+ "5_advertising": "3-Angle Ad Copy Matrices, 7-Dimension CRO Landing Page Wireframes, Meta & Google Ads",
64
+ "6_promotions": "72-Hour Flash Sales, Decoy Pricing Architecture, Viral Contests, Margin-Safe Coupons",
65
+ "7_growth": "2-Sided Viral Referral Loops, Influencer Vetting & Cold Outreach, Retention & Churn Diagnosis"
66
+ }
67
+ }
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@tidyfactor/marketing",
3
+ "version": "1.3.0",
4
+ "description": "TidyFactor Marketing — AI Direct-Response Marketing, Pillar-Cluster SEO & Multi-Channel Growth Engine with Contextual Decision Layer (CDL)",
5
+ "main": "SKILL.md",
6
+ "bin": {
7
+ "tidyfactor-marketing": "./bin/create-kit.js",
8
+ "add-skill": "./bin/add-skill.js",
9
+ "remove-skill": "./bin/remove-skill.js"
10
+ },
11
+ "scripts": {
12
+ "validate": "python tools/validate_skill.py",
13
+ "build": "node tools/build-skill.js",
14
+ "release": "python ../tools/release_skill.py .",
15
+ "start": "node bin/create-kit.js",
16
+ "add-skill": "node bin/add-skill.js",
17
+ "remove-skill": "node bin/remove-skill.js"
18
+ },
19
+ "keywords": [
20
+ "tidyfactor",
21
+ "marketing",
22
+ "growth",
23
+ "direct-response",
24
+ "copywriting",
25
+ "seo",
26
+ "b2b-marketing",
27
+ "linkedin",
28
+ "retention",
29
+ "loyalty",
30
+ "pricing",
31
+ "cro",
32
+ "meta-ads",
33
+ "google-ads"
34
+ ],
35
+ "author": "TidyFactor <hello@tidyfactor.com> (https://tidyfactor.com)",
36
+ "license": "Apache-2.0",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git+https://github.com/TidyFactor/Marketing.git"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "engines": {
45
+ "node": ">=18.0.0"
46
+ },
47
+ "bugs": {
48
+ "url": "https://github.com/TidyFactor/Marketing/issues"
49
+ },
50
+ "homepage": "https://tidyfactor.com",
51
+ "files": [
52
+ ".tidyfactor",
53
+ "AGENTS.md",
54
+ "CHANGELOG.md",
55
+ "LICENSE",
56
+ "README.ar.md",
57
+ "README.de.md",
58
+ "README.es.md",
59
+ "README.fa.md",
60
+ "README.fr.md",
61
+ "README.md",
62
+ "README.pt.md",
63
+ "README.zh.md",
64
+ "SKILL-REGISTRY.md",
65
+ "SKILL.md",
66
+ "VISION.md",
67
+ "assets",
68
+ "bin",
69
+ "brand.json",
70
+ "references",
71
+ "tools"
72
+ ]
73
+ }
@@ -0,0 +1,27 @@
1
+ # Command: advertising
2
+
3
+ Runtime dispatcher for Direct Response Ad Copy (Meta/Facebook, Google Ads, TikTok), Landing Page Wireframe Messaging, and Campaign Scaling Architectures.
4
+
5
+ ---
6
+
7
+ ## Capabilities Handled
8
+
9
+ 1. **Write Ad Copy**: 3 distinct psychological angles (Pain/Loss Aversion, Logic/ROI/Efficiency, Aspirational/Social Proof) with anti-cliché replacements.
10
+ 2. **Landing Page Strategy**: 8-section high-converting wireframe messaging (Hero, Proof Bar, Contrast Table, Benefits, Reviews, Pricing Stack, FAQs, CTA).
11
+ 3. **Google Ads (RSA)**: 15 diverse headlines + 4 descriptions + negative keyword lists.
12
+ 4. **Meta Ads Plan**: Creative format mix (UGC, Statics, Carousels), Advantage+ budget scaling, and stop-loss kill rules.
13
+ 5. **First Ad Campaign**: 72-hour test budget blueprint with creative testing matrix.
14
+
15
+ ---
16
+
17
+ ## What It Loads
18
+
19
+ - **Workflow**: `../workflows/paid-acquisition.md`
20
+ - **Memory**: `../memory/decision-points.md` + `../memory/quality-bar.md` + `../memory/ad-copy-templates.md` + `../memory/metrics-benchmarks.md`
21
+
22
+ ---
23
+
24
+ ## What It Does NOT Load
25
+
26
+ - Do not load `../workflows/social-growth.md` (organic social profile growth is handled by `../commands/social.md`).
27
+ - Do not load `../workflows/email-lifecycle.md` (email onboarding sequences are handled by `../commands/email.md`).
@@ -0,0 +1,17 @@
1
+ # Marketing Brief Command (`/brief`)
2
+
3
+ > **Dispatches to**: `references/workflows/brief.md`
4
+ > **Memory Loaded**: `references/memory/decision-points.md` + `references/memory/quality-bar.md` + `references/memory/frameworks.md`
5
+
6
+ ---
7
+
8
+ ## 🎯 Command Intent
9
+ Conducts a rapid, structured 3-question marketing discovery interview to establish strategic parameters (Market, Voice, Funnel Stage, Offer) and writes `.tidyfactor/marketing-brief.md` as the authoritative baseline for all subsequent campaigns, ads, emails, and content generation.
10
+
11
+ ---
12
+
13
+ ## ⚡ Execution Protocol
14
+ 1. Load `references/memory/decision-points.md`.
15
+ 2. Execute `references/workflows/brief.md`.
16
+ 3. Save resulting decisions into `.tidyfactor/marketing-brief.md`.
17
+ 4. Conclude with a clear brief summary.
@@ -0,0 +1,26 @@
1
+ # Command: content
2
+
3
+ Runtime dispatcher for Social Media Content Batches, SEO Strategy & Pillar Pages, Content Calendars, and Newsletter Strategy.
4
+
5
+ ---
6
+
7
+ ## Capabilities Handled
8
+
9
+ 1. **Social Media Content Batch**: Multi-platform post batches with 3-second hooks, line-break rhythm, and actionable CTAs.
10
+ 2. **SEO Strategy (Pillar + Cluster)**: Pillar page architecture, long-tail cluster topics, search intent mapping (Informational, Commercial, Transactional).
11
+ 3. **Content Calendar**: Weekly/monthly scheduling grids with content pillars (Authority, Contrarian, Tactical, Culture).
12
+ 4. **Newsletter Strategy**: High-open newsletter layouts (Curiosity A/B subject lines, Hook-Story-Offer narrative, primary CTAs).
13
+
14
+ ---
15
+
16
+ ## What It Loads
17
+
18
+ - **Workflow**: `../workflows/content-engine.md`
19
+ - **Memory**: `../memory/decision-points.md` + `../memory/quality-bar.md` + `../memory/frameworks.md` + `../memory/platform-specs.md`
20
+
21
+ ---
22
+
23
+ ## What It Does NOT Load
24
+
25
+ - Do not load `../workflows/paid-acquisition.md` or `../memory/ad-copy-templates.md` (paid ad campaigns are handled by `../commands/advertising.md`).
26
+ - Do not load `../workflows/email-lifecycle.md` (automated drip onboarding sequences are handled by `../commands/email.md`).
@@ -0,0 +1,26 @@
1
+ # Command: email
2
+
3
+ Runtime dispatcher for Email List Growth, 5-Part Welcome Sequences, Abandoned Cart Recoveries, and Broadcast Campaigns.
4
+
5
+ ---
6
+
7
+ ## Capabilities Handled
8
+
9
+ 1. **Grow Email List**: High-converting lead magnet design, low-friction opt-in copy, and placement strategy (exit popup, sticky bar).
10
+ 2. **Welcome Email Sequence**: 5-part indoctrination drip (Day 0 Delivery, Day 1 Origin Story, Day 2 Myth Busting, Day 3 Case Study, Day 4 Invitation).
11
+ 3. **Abandoned Cart Emails**: 3-stage sequential recovery flow (Hour 1 Support -> Hour 24 Social Proof -> Hour 48 Urgency Discount).
12
+ 4. **Win-Back Flows**: Inactive subscriber reactivation sequences.
13
+
14
+ ---
15
+
16
+ ## What It Loads
17
+
18
+ - **Workflow**: `../workflows/email-lifecycle.md`
19
+ - **Memory**: `../memory/decision-points.md` + `../memory/quality-bar.md` + `../memory/lifecycle-flows.md` + `../memory/frameworks.md`
20
+
21
+ ---
22
+
23
+ ## What It Does NOT Load
24
+
25
+ - Do not load `../workflows/paid-acquisition.md` (paid traffic acquisition is handled by `../commands/advertising.md`).
26
+ - Do not load `../workflows/promo-conversion.md` (detailed discount unit economics are handled by `../commands/promotions.md`).
@@ -0,0 +1,27 @@
1
+ # Command: growth
2
+
3
+ Runtime dispatcher for Customer Retention, Churn Reduction, Loyalty Programs, 2-Sided Referral Programs, Influencer Outreach, and Brand Awareness.
4
+
5
+ ---
6
+
7
+ ## Capabilities Handled
8
+
9
+ 1. **Customer Retention & Reduce Churn**: Drop-off diagnosis across SaaS, E-Commerce, and Service business models.
10
+ 2. **Loyalty Program Design**: Points, Tiered Status, Cashback, or Perks-Based architectures.
11
+ 3. **2-Sided Referral Program**: "Give $X, Get $Y" customer referral loops with gamified milestone unlocks.
12
+ 4. **Influencer Outreach**: Quantitative vetting scorecard and cold outreach DM/email scripts.
13
+ 5. **Brand Awareness & Distribution**: Podcast pitching, co-marketing webinars, and 1-to-many repurposing flywheels.
14
+
15
+ ---
16
+
17
+ ## What It Loads
18
+
19
+ - **Workflow**: `../workflows/viral-retention.md`
20
+ - **Memory**: `../memory/decision-points.md` + `../memory/quality-bar.md` + `../memory/frameworks.md` + `../memory/metrics-benchmarks.md`
21
+
22
+ ---
23
+
24
+ ## What It Does NOT Load
25
+
26
+ - Do not load `../workflows/promo-conversion.md` (flash seasonal discounts are handled by `../commands/promotions.md`).
27
+ - Do not load `../workflows/content-engine.md` (organic social post writing is handled by `../commands/content.md`).
@@ -0,0 +1,26 @@
1
+ # Command: promotions
2
+
3
+ Runtime dispatcher for Flash Sales, Seasonal Promotions, Decoy Pricing Structures, Viral Contests, and Margin-Safe Coupon Strategies.
4
+
5
+ ---
6
+
7
+ ## Capabilities Handled
8
+
9
+ 1. **Plan a Sale / Flash Sales**: 72-hour countdown promotion execution timeline (Teaser, Launch Day, Momentum, Hard Close).
10
+ 2. **Margin-Safe Coupon Strategy**: Contribution margin safeguards and threshold-based bundling ("Spend $100 Get $15").
11
+ 3. **Decoy Pricing & Anchoring**: 3-tier Good/Better/Best table design with decoy placement and annual discount framing.
12
+ 4. **Giveaway / Contest Architecture**: Dream customer niche prizes, viral referral loops, and non-winner consolation offers.
13
+
14
+ ---
15
+
16
+ ## What It Loads
17
+
18
+ - **Workflow**: `../workflows/promo-conversion.md`
19
+ - **Memory**: `../memory/decision-points.md` + `../memory/quality-bar.md` + `../memory/promotions-math.md` + `../memory/frameworks.md`
20
+
21
+ ---
22
+
23
+ ## What It Does NOT Load
24
+
25
+ - Do not load `../workflows/paid-acquisition.md` (paid ad traffic management is handled by `../commands/advertising.md`).
26
+ - Do not load `../workflows/viral-retention.md` (standing affiliate loyalty loops are handled by `../commands/growth.md`).
@@ -0,0 +1,27 @@
1
+ # Command: social
2
+
3
+ Runtime dispatcher for LinkedIn B2B Thought Leadership, Founder Personal Branding, Instagram/TikTok Strategy, Social Media Audits, and Growth Sprints.
4
+
5
+ ---
6
+
7
+ ## Capabilities Handled
8
+
9
+ 1. **LinkedIn B2B & Founder Personal Branding**: Personal vs company page strategy, 4 B2B post types, 3-touch outbound outreach cadence.
10
+ 2. **Instagram & TikTok Strategy**: 5 short-form video hooks, visual directions, posting cadences, and daily Story engagement playbooks.
11
+ 3. **Social Media Audit**: Conversion audit of bio, handle, CTA links, and pinned story highlights.
12
+ 4. **First 1,000 Followers Roadmap**: 60-day cold-start organic sprint ($1.80 strategy, collaborative flywheels).
13
+ 5. **Hashtag Strategy**: 3-tier hashtag taxonomy (Broad, Niche, Micro/Branded).
14
+
15
+ ---
16
+
17
+ ## What It Loads
18
+
19
+ - **Workflow**: `../workflows/social-growth.md`
20
+ - **Memory**: `../memory/decision-points.md` + `../memory/quality-bar.md` + `../memory/platform-specs.md` + `../memory/frameworks.md`
21
+
22
+ ---
23
+
24
+ ## What It Does NOT Load
25
+
26
+ - Do not load `../workflows/paid-acquisition.md` (paid Meta/TikTok ad creative is handled by `../commands/advertising.md`).
27
+ - Do not load `../workflows/viral-retention.md` (customer referral programs are handled by `../commands/growth.md`).
@@ -0,0 +1,25 @@
1
+ # Command: strategy
2
+
3
+ Runtime dispatcher for Brand Voice, Market Positioning, Campaign Strategy, and Product Launch Plans.
4
+
5
+ ---
6
+
7
+ ## Capabilities Handled
8
+
9
+ 1. **Brand Voice & Positioning**: Core positioning statement, competitive differentiation matrix (own 1 attribute), tone-of-voice pillars by contrast, and channel tone flex.
10
+ 2. **Campaign Strategy**: Multi-channel marketing plan with target audience, channel budget distribution, messaging pillars, and target KPIs.
11
+ 3. **Product Launch Plan**: Phased timeline (Pre-launch waitlist T-30, Launch day blitz T-0, Post-launch momentum T+14).
12
+
13
+ ---
14
+
15
+ ## What It Loads
16
+
17
+ - **Workflow**: `../workflows/campaign-launch.md`
18
+ - **Memory**: `../memory/decision-points.md` + `../memory/quality-bar.md` + `../memory/frameworks.md` + `../memory/metrics-benchmarks.md`
19
+
20
+ ---
21
+
22
+ ## What It Does NOT Load
23
+
24
+ - Do not load `../workflows/paid-acquisition.md` or `../memory/ad-copy-templates.md` (detailed ad copy copywriting is handled by `../commands/advertising.md`).
25
+ - Do not load `../workflows/content-engine.md` (batch social post calendars are handled by `../commands/content.md`).
@@ -0,0 +1,93 @@
1
+ # Marketing Memory: Ad Copy Templates & Platform Matrices
2
+
3
+ Operational plug-and-play ad copy architectures for Meta, Google Search, TikTok, and LinkedIn.
4
+
5
+ ---
6
+
7
+ ## 1. Meta Ads (Facebook & Instagram) Direct Response Matrix
8
+
9
+ ### Format A: The 3-Part Micro-Story (Best for Cold TOFU & Warm MOFU)
10
+ ```
11
+ [HOOK / PATTERN INTERRUPT]:
12
+ Stop [common painful action] to achieve [desired outcome]. Most [niche/target] think [myth], but here is the truth...
13
+
14
+ [BODY / MECHANISM]:
15
+ When we tested [method] with over [number/proof], we discovered:
16
+ 👉 Benefit 1 (Speed/Simplicity)
17
+ 👉 Benefit 2 (Cost/Efficiency)
18
+ 👉 Benefit 3 (Risk Removal)
19
+
20
+ [CALL TO ACTION / OFFER]:
21
+ Get instant access to [Lead Magnet / Offer Name] today.
22
+ Tap [Learn More / Shop Now] below before [scarcity/urgency trigger].
23
+ 🔗 [Link URL]
24
+ ```
25
+
26
+ ### Format B: The Side-by-Side Comparison (Old Way vs. New Way)
27
+ ```
28
+ ❌ THE OLD WAY TO [GOAL]:
29
+ • Spend 15 hours a week on [painful task]
30
+ • Pay $2,500/mo to agencies with zero accountability
31
+ • Guess your numbers and hope for the best
32
+
33
+ ✅ THE [BRAND/PRODUCT] WAY:
34
+ • Automated in under 5 minutes a day
35
+ • Predictable, transparent [key metric/result]
36
+ • 100% money-back guarantee if not thrilled in 30 days
37
+
38
+ Ready to switch?
39
+ 👉 Tap below to see how [Product] works in 90 seconds.
40
+ ```
41
+
42
+ ---
43
+
44
+ ## 2. Google Responsive Search Ads (RSA) Matrix
45
+
46
+ Google RSA requires up to **15 Headlines** (max 30 chars each) and **4 Descriptions** (max 90 chars each).
47
+
48
+ ### Headline Distribution Rule (15 Headlines):
49
+ - **Positions 1-4 (Keywords & Solution)**: Exact match search query & primary value (e.g. `Automate Your Invoicing`, `Fast Cloud Server Hosting`).
50
+ - **Positions 5-8 (Benefits & Speed)**: Outcome & speed metrics (e.g. `Save 12+ Hours Every Week`, `Deploy in Under 60 Seconds`).
51
+ - **Positions 9-12 (Social Proof & Authority)**: Numbers & credibility (e.g. `Trusted by 10,000+ Teams`, `Rated 4.9/5 by 800+ Users`).
52
+ - **Positions 13-15 (Offers & CTAs)**: Immediacy & risk-free actions (e.g. `Start Free 14-Day Trial`, `Get 30% Off Today Only`, `No Credit Card Required`).
53
+
54
+ ### Description Distribution Rule (4 Descriptions):
55
+ - **Desc 1 (Problem -> Solution)**: Eliminate [pain point] with [Product]. Experience seamless [benefit] starting today.
56
+ - **Desc 2 (Social Proof + Offer)**: Over [X] customers trust [Brand] for [outcome]. Sign up in 60 seconds with 0 setup fees.
57
+ - **Desc 3 (Feature Breakdown)**: Includes [Feature 1], [Feature 2], and 24/7 dedicated support. Try risk-free for 30 days.
58
+ - **Desc 4 (Direct CTA)**: Ready to double your [metric]? Discover why industry leaders choose [Product]. Get started now!
59
+
60
+ ---
61
+
62
+ ## 3. TikTok & Reels Short-Form Video Script Architecture
63
+
64
+ ### Structure (15s to 45s Total Runtime):
65
+ 1. **0:00 - 0:03 (Visual & Verbal Hook)**:
66
+ - *Visual*: Show drastic before/after, unexpected movement, or screen recording.
67
+ - *Verbal*: "If you're still doing [X] in 2026, you're losing money..."
68
+ 2. **0:03 - 0:15 (The Problem & Insight)**:
69
+ - Agitate why current tools/methods fail. "Here is what no one is telling you..."
70
+ 3. **0:15 - 0:30 (The Demonstration / Proof)**:
71
+ - Screen capture or hands-on walkthrough showing product solving problem in 3 clicks.
72
+ 4. **0:30 - 0:40 (The Call to Action)**:
73
+ - "Comment '[KEYWORD]' and I'll DM you the direct link" OR "Link in bio to test it completely free."
74
+
75
+ ---
76
+
77
+ ## 4. Arabic Ad Copy Variations (نماذج الإعلانات المباشرة بالعربية)
78
+
79
+ ### نموذج إعلان تفاعلي (Direct Response Meta / TikTok):
80
+ ```
81
+ 🛑 توقف عن إهدار [المال / الوقت] على [المشكلة الشائعة]!
82
+
83
+ أغلب [أصحاب الأعمال / المستقلين / رواد الأعمال] يظنون أن الحل هو [الاعتقاد الخاطئ]، لكن الحقيقة أسهل بكثير:
84
+
85
+ مع [اسم المنتج / المنظومة] ستتمكن من:
86
+ 🔹 [الميزة الأولى + النتيجة الرقمية الملموسة]
87
+ 🔹 [الميزة الثانية + توفير الجهد أو الوقت]
88
+ 🔹 [ضمان استرداد الأموال أو تجربة مجانية]
89
+
90
+ ⚡ عرض خاص لفترة محدودة: احصل على [الخصم أو البونص] الآن!
91
+ 👇 اضغط على الرابط بالأسفل وابدأ فوراً:
92
+ [رابط العرض]
93
+ ```
@@ -0,0 +1,71 @@
1
+ # Arabic Direct-Response & Copywriting Engineering
2
+
3
+ <!-- last-verified: 2026-08-29 -->
4
+
5
+ Deterministic rules and linguistic frameworks for composing Arabic marketing, growth, and conversion copy natively without translation artifacts.
6
+
7
+ ---
8
+
9
+ ## 1. Register & Linguistic Taxonomy
10
+
11
+ Unless explicitly directed to use a localized dialect, default to **Modern Standard Arabic (الفصحى المعاصرة الرنانة)**:
12
+ - Direct, clear, modern business Arabic.
13
+ - Zero flowery classical rhetoric or archaic vocabulary.
14
+ - Active voice over passive voice.
15
+
16
+ ### Grammar & Linguistic Integrity Rules
17
+
18
+ | Category | High-Converting Standard | Slop / Failure Pattern |
19
+ |---|---|---|
20
+ | **Voice** | Active: `نساعدك على مضاعفة مبيعاتك` | Passive: `يتم تقديم المساعدة لزيادة المبيعات` ❌ |
21
+ | **Pronominal Efficiency** | Streamlined verbs: `نبني، نطور، نطلق` | Over-indexing on `نحن`: `نحن نبني ونحن نطور` ❌ |
22
+ | **Agreement** | Proper gender/number agreement (`الشركات الرائدة`) | Broken agreement (`الشركات الرائد`) ❌ |
23
+ | **Idafa (الإضافة)** | Tight construct: `منصة إدارة الحملات` | False construct: `منصة الإدارة للحملات` ❌ |
24
+ | **Punctuation** | Native Arabic: `،` (فاصلة), `؛` (منقوطة), `؟` (استفهام) | English punctuation in Arabic text ❌ |
25
+ | **Digits** | Western digits (`1, 2, 3`) for web/mobile UI conversion | Mixing Indic digits in modern digital apps |
26
+
27
+ ---
28
+
29
+ ## 2. Dialectical Voice Calibration
30
+
31
+ When a campaign explicitly targets regional consumer vernacular, calibrate the **Tone and Conversational Connectors** only — preserve grammatical rigor and offer structure:
32
+
33
+ | Market | Target Vernacular | High-Performing Channel | Dialectical Guidance |
34
+ |---|---|---|---|
35
+ | 🇪🇬 **Egypt** | Egyptian العامية المصرية | Social Content, TikTok, Meta Ads, WhatsApp | Natural conversational flow, warmth, humor, value-first clarity. Keep core B2B value proposition in clear simplified Fus'ha. |
36
+ | 🇸🇦 **Saudi Arabia / Gulf** | Khaleeji اللهجة الخليجية البيضاء | Snapchat Ads, TikTok, Instagram | Polite, welcoming, premium, respect-driven. Highlight convenience, status, and local relevance. |
37
+ | 🇱🇾 **Libya / Maghreb** | Simplified Fus'ha فصحى مبسطة | Meta Ads, WhatsApp Direct | Clean Fus'ha with direct, trust-building commercial terms. |
38
+ | 🌐 **Multi-Market MENA** | Pan-Arab Fus'ha فصحى معاصرة موحدة | Landing Pages, B2B SaaS, Pitch Decks | The universal conversion standard across all 22 Arab countries. |
39
+
40
+ ---
41
+
42
+ ## 3. High-Converting Arabic Copywriting Formulas
43
+
44
+ ### A. PAS (المشكلة ➔ الإثارة ➔ الحل)
45
+ ```text
46
+ 1. Problem (المشكلة): "هل تعاني من إهدار ميزانية الإعلانات دون تحقيق مبيعات فعلية؟"
47
+ 2. Agitation (الإثارة): "كل يوم يمر دون تتبع دقيق للتحويلات، تدفع فيه لمنصات الإعلانات أكثر مما تكسب."
48
+ 3. Solution (الحل): "نظام TidyFactor للتسويق الدقيق يمنحك لوحة تحكم واحدة لتوجيه كل دولار نحو العميل الأكثر ربحية."
49
+ ```
50
+
51
+ ### B. AIDA (الانتباه ➔ الاهتمام ➔ الرغبة ➔ الإجراء)
52
+ ```text
53
+ 1. Attention (انتباه): "ضاعف معدل تحويل متجرك بـ 3 تعديلات بسيطة فقط."
54
+ 2. Interest (اهتمام): "أكثر من 80% من زوار المتاجر في الخليج يتركون السلة بسبب غياب خيارات الدفع المحلية (Mada, Tabby, Apple Pay)."
55
+ 3. Desire (رغبة): "وفر لعملائك تجربة دفع في خطوة واحدة وارفع مبيعاتك بنسبة تصل إلى 38% خلال 14 يوماً."
56
+ 4. Action (إجراء): "ابدأ تجربتك المجانية اليوم — بدون بطاقة ائتمانية."
57
+ ```
58
+
59
+ ---
60
+
61
+ ## 4. Anti-Slop Banned Phrases (Arabic Marketing)
62
+
63
+ Reject all empty AI marketing clichés:
64
+ - ❌ `في عالمنا اليوم المتسارع...`
65
+ - ❌ `نحن فخورون بتقديم أفضل الخدمات المبتكرة والفريدة من نوعها...`
66
+ - ❌ `انضم إلى الثورة الرقمية مع حلولنا الاستثنائية...`
67
+ - ❌ `بوابتك نحو النجاح والتميز بلا حدود...`
68
+
69
+ **Replace with Concrete Data & Specific Outcomes:**
70
+ - ✅ `نظام مؤتمت يقلل تكلفة الاستحواذ على العميل (CAC) بنسبة 25%.`
71
+ - ✅ `أطلق حملتك الإعلانية خلال 48 ساعة مع 3 زوايا إبداعية مجربة.`