@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,73 @@
1
+ # Marketing Contextual Decision Layer (CDL) — Thin Arbitration Protocol
2
+
3
+ > **Purpose**: Governs pre-generation marketing elicitation. Resolves strategic, market, and copy ambiguities before campaign or copy emission without generating duplicate memory catalogs or conversational slop.
4
+
5
+ ---
6
+
7
+ ## 🏛️ Marketing Decision Matrix (M1 – M5)
8
+
9
+ When a marketing workflow begins and the request contains ambiguous parameters, the agent arbitrates across 5 standardized decision points:
10
+
11
+ | ID | Decision Dimension | Reference SSOT Catalog | Conservative Default |
12
+ |:---|:---|:---|:---|
13
+ | **M1** | **Target Market & Regional Calibration** | `memory/frameworks.md` & `platform-specs.md` | `Bilingual / MENA-Ready (GCC + Egypt)` |
14
+ | **M2** | **Brand Voice Archetype & Tone** | `memory/frameworks.md` | `Authoritative Challenger (Direct, ROI-backed)` |
15
+ | **M3** | **Funnel Stage & User Sophistication** | `memory/lifecycle-flows.md` & `ad-copy-templates.md` | `Middle-of-Funnel (Solution-Aware)` |
16
+ | **M4** | **Conversion Model & Core Offer** | `memory/promotions-math.md` & `frameworks.md` | `Value-First / Discovery Call / Freemium` |
17
+ | **M5** | **Output Density & Asset Depth** | `memory/frameworks.md` | `Full Campaign Blueprint (Multi-Channel)` |
18
+
19
+ ---
20
+
21
+ ## 🚦 Deterministic Boolean Skip Conditions
22
+
23
+ The agent MUST skip asking questions and proceed directly to execution when any of the following conditions evaluate to `true`:
24
+
25
+ ```text
26
+ 1. Cached Brief Exists → .tidyfactor/marketing-brief.md exists on disk
27
+ 2. Explicit Dimension in Prompt → User prompt explicitly specifies Region, Tone, Audience, or Offer
28
+ 3. Direct Command Invocation → User called specific sub-command (e.g. /email, /advertising, /promotions)
29
+ 4. Copy Refresh / Optimization → Existing copy or campaign is provided for iterative rewrite
30
+ 5. Fast-Track Flag → User appended --yes, -y, or "do not ask questions"
31
+ ```
32
+
33
+ ---
34
+
35
+ ## 🎯 Direct Invocation vs. Refresh Invariants
36
+
37
+ 1. **Direct Invocation Invariant**: When a user explicitly runs `/advertising`, `/email`, `/promotions`, or `/strategy`, the agent skips general discovery and uses targeted command parameters immediately.
38
+ 2. **Zero-Regression Copy Refresh Bias**: When auditing, refreshing, or rewriting existing campaigns, the agent silently preserves the established brand voice, regional calibration, and offer economics unless an overhaul is explicitly requested.
39
+
40
+ ---
41
+
42
+ ## ⚡ Single-Round Batching & Priority Hierarchy
43
+
44
+ If multiple marketing dimensions remain ambiguous and no skip condition is met:
45
+
46
+ 1. **Maximum Questions**: Present at most **3 focused questions in a single round**. Never conduct multi-round interrogations.
47
+ 2. **Strict Priority Hierarchy**:
48
+ $$\mathbf{M1 \text{ (Region/Market)}} > \mathbf{M2 \text{ (Brand Voice)}} > \mathbf{M3 \text{ (Funnel Stage)}} > \mathbf{M4 \text{ (Offer)}} > \mathbf{M5 \text{ (Depth)}}$$
49
+ 3. **Priority Overflow**: If more than 3 dimensions are unknown, ask M1, M2, and M3; resolve M4 and M5 silently using the **Conservative Defaults**.
50
+
51
+ ---
52
+
53
+ ## 🛑 Terminal Hard-Stop Contract
54
+
55
+ When presenting decision options to the user, the agent MUST end its turn immediately and await user selection. It MUST NOT output partial marketing plans, draft placeholder copy, or speculate on unconfirmed choices in the same turn.
56
+
57
+ ---
58
+
59
+ ## 💾 Brief Persistence Schema (`.tidyfactor/marketing-brief.md`)
60
+
61
+ When `/brief` runs or decisions are confirmed, save them to `.tidyfactor/marketing-brief.md`:
62
+
63
+ ```markdown
64
+ # Marketing Brief Baseline
65
+
66
+ - **Product / Brand**: [Name]
67
+ - **Target Market (M1)**: [MENA-GCC | MENA-Egypt | Global-US]
68
+ - **Brand Voice (M2)**: [Authoritative Challenger | Empathetic Guide | Luxury Premium | Direct Response]
69
+ - **Funnel Stage (M3)**: [Problem-Aware | Solution-Aware | Product-Aware / Most Aware]
70
+ - **Core Offer (M4)**: [Lead Magnet | Free Trial | Discovery Call | Direct Transaction]
71
+ - **Deliverable Scope (M5)**: [Sprint Copy | Full Campaign Blueprint]
72
+ - **Last Updated**: [YYYY-MM-DD]
73
+ ```
@@ -0,0 +1,86 @@
1
+ # Marketing Memory: Copywriting, Psychological Models & Positioning
2
+
3
+ Operational direct-response frameworks, 12 psychological mental models, B2B ICP definitions, anti-cliché replacement rules, and SaaS pricing architectures.
4
+
5
+ ---
6
+
7
+ ## 1. Core Direct Response Frameworks
8
+
9
+ ### AIDA (Attention, Interest, Desire, Action)
10
+ - **Attention**: Pattern interrupt or controversial statement that stops scrolling.
11
+ - **Interest**: Surprising data point, shared frustration, or insider secret relevant to their situation.
12
+ - **Desire**: Paint the after-state transformation; stack benefits, proof, and risk reversal.
13
+ - **Action**: Single clear call-to-action with low friction and immediacy.
14
+
15
+ ### PAS (Problem, Agitate, Solve)
16
+ - **Problem**: Name the exact acute symptom they are feeling right now.
17
+ - **Agitate**: Dig into the emotional and financial cost of leaving it unsolved (the compounding pain).
18
+ - **Solve**: Introduce the mechanism of your product as the logical, effortless relief.
19
+
20
+ ### BAB (Before, After, Bridge)
21
+ - **Before**: Current state of struggle, friction, or wasted resources.
22
+ - **After**: Desired dream reality where the problem is completely eliminated.
23
+ - **Bridge**: The roadmap, vehicle, or tool that gets them from Before to After.
24
+
25
+ ### Hook - Story - Offer (Russell Brunson Framework)
26
+ - **Hook**: First 3 seconds or headline grabbing attention on the core vehicle.
27
+ - **Story**: Epiphany bridge narrative illustrating the struggle, the realization, and the new opportunity.
28
+ - **Offer**: Irresistible stack of primary product + high-value bonuses + risk reversal guarantee + scarcity/urgency.
29
+
30
+ ---
31
+
32
+ ## 2. The 12 Psychological Mental Models of Persuasion
33
+
34
+ | Mental Model | Psychological Mechanism | Direct Response Application |
35
+ |---|---|---|
36
+ | **1. Anchoring** | People rely heavily on the first piece of information offered. | Display original/enterprise price crossed out before revealing the actual offer. |
37
+ | **2. Decoy Effect** | Adding a less attractive 3rd option makes the target option look superior. | 3-tier pricing where Tier 2 ($99) is vastly better value than Tier 1 ($79). |
38
+ | **3. Loss Aversion** | Pain of losing is 2x more powerful than pleasure of gaining. | Highlight costs of inaction, lost revenue, and expiring discounts. |
39
+ | **4. Social Proof Stacking** | Humans look to peers to determine correct behavior. | Combine customer count ("10,000+ teams"), logos, Trustpilot ratings, and video quotes. |
40
+ | **5. Zeigarnik Effect** | People remember uncompleted tasks better than completed ones. | Use progress bars on multi-step forms starting at 50% completed. |
41
+ | **6. Goal Gradient** | Effort increases as the goal gets closer. | "You're 1 step away from your personalized growth report." |
42
+ | **7. Paradox of Choice** | Too many options causes decision paralysis and zero conversion. | Limit landing page to ONE primary CTA; limit pricing to 3 clean tiers. |
43
+ | **8. Framing Effect** | Decisions change based on how information is presented. | "Save $1,200/year" converts higher than "$100/mo discount". |
44
+ | **9. Scarcity & Urgency** | Perceived value surges when availability is restricted. | Real stock counters, limited batch cohorts, and strict 72-hour countdown clocks. |
45
+ | **10. Sunk Cost Fallacy** | People continue an endeavor once an investment is made. | Micro-commitments (interactive quiz/calculator) before asking for email/credit card. |
46
+ | **11. Halo Effect** | Positive impression in one area influences opinion in another. | Feature press mentions (Forbes, TechCrunch) and SOC2/Security badges above the fold. |
47
+ | **12. Endowment Effect** | People value things more when they feel ownership. | Interactive free demos, sandbox playgrounds, or instant 14-day free trials. |
48
+
49
+ ---
50
+
51
+ ## 3. The Strict Anti-Cliché Banishment Engine
52
+
53
+ Every sentence must carry a **falsifiable claim, a mechanism, or a concrete number**. Banish the following filler phrases:
54
+
55
+ ### English Banned List -> Mandatory Replacement
56
+ - ❌ *"Cutting-edge / State-of-the-art"* -> ✅ Name the exact tech/stack (e.g. `Next.js 16 + Postgres RLS`).
57
+ - ❌ *"Seamless experience / Seamless integration"* -> ✅ State the speed/steps (e.g. `Connects in 2 clicks with 0 code`).
58
+ - ❌ *"Innovative solutions / Customized solutions"* -> ✅ State the exact capability (e.g. `Custom multi-tenant auth module`).
59
+ - ❌ *"Take your business to the next level"* -> ✅ State the quantifiable outcome (e.g. `Increase checkout CVR by 25%`).
60
+ - ❌ *"Quality you can trust / Committed to excellence"* -> ✅ State the verification step (e.g. `Tested under 5,000 concurrent requests`).
61
+ - ❌ *"One-stop shop"* -> ✅ List the explicit inclusions (e.g. `Hosting + AutoSSL + Daily Backups included`).
62
+
63
+ ### Arabic Banned List -> Mandatory Replacement (قائمة الكليشيهات المحظورة بالعربية)
64
+ - ❌ *"نسعى دائماً لتقديم الأفضل / نحرص على التميز"* -> ✅ اذكر الإجراء الفعلي (مثال: `نختبر سرعة التحميل وتوافق الجوال قبل إطلاق أي صفحة`).
65
+ - ❌ *"فريق من الخبراء المتخصصين / فريق محترف"* -> ✅ اذكر سابقة الأعمال بالأرقام (مثال: `أكثر من 8 سنوات من إدارة حملات الـ B2B في الخليج`).
66
+ - ❌ *"حلول متكاملة ومبتكرة"* -> ✅ اذكر المنتج والميزة التقنية (مثال: `منظومة ربط إلكتروني متكاملة مع بوابات مدى وتمارا`).
67
+ - ❌ *"في عالمنا الرقمي المتسارع / في ظل التطور التكنولوجي"* -> ✅ احذف المقدمة الإنشائية وابدأ فوراً بالمشكلة والحل.
68
+ - ❌ *"الجودة هي شعارنا"* -> ✅ اذكر الضمان (مثال: `ضمان استرداد كامل للأموال خلال 30 يوماً بدون أسئلة`).
69
+
70
+ ---
71
+
72
+ ## 4. SaaS Pricing & Packaging Architecture
73
+
74
+ ### 1. Value Metric Rules
75
+ Tie pricing to how the customer measures success:
76
+ - *Per Seat/User*: Best for collaboration/workflow software (Slack, Figma).
77
+ - *Per Usage/Volume*: Best for developer tools/infrastructure (API calls, GB stored, emails sent).
78
+ - *Per Feature Tier*: Best for distinct operational sizes (SMB vs Enterprise).
79
+
80
+ ### 2. The 3-Tier Packaging Structure
81
+ - **Tier 1 (Starter)**: Low barrier entry for individuals; covers 80% of basic needs; acts as price floor.
82
+ - **Tier 2 (Pro / Growth) [THE TARGET ANCHOR]**: Contains the core value drivers (unlimited limits, automation, priority support); highlighted with a "Most Popular" badge.
83
+ - **Tier 3 (Enterprise / Custom)**: High-touch security, SAML SSO, dedicated account manager, custom SLA.
84
+
85
+ ### 3. Annual vs. Monthly Discount Rule
86
+ Offer a **15% to 20% annual discount** (e.g. "Get 2 Months Free"). Discounts > 25% erode cash flow without meaningfully lifting conversion.
@@ -0,0 +1,106 @@
1
+ # Marketing Memory: Email Lifecycle Flows & Retention Architectures
2
+
3
+ Operational automation architectures, trigger delays, subject line formulas, churn prevention, win-back flows, and B2B outreach.
4
+
5
+ ---
6
+
7
+ ## 1. Core Automated Lifecycle Flows
8
+
9
+ ### Flow 1: 5-Part Welcome & Indoctrination Drip (High-Trust Nurture)
10
+
11
+ | Email # | Timing Trigger | Objective | Subject Line Template | Content Architecture |
12
+ |---|---|---|---|---|
13
+ | **#1** | Immediate (0 min) | Deliver lead magnet + set expectations | `[Asset Inside] Here is your [Lead Magnet Name]` | Instant download link, 1-line mission, whitelist request, ask a simple reply question. |
14
+ | **#2** | +24 hours | Founder Origin Story / Vulnerability | `Why I almost quit [Industry] in [Year]...` | Relatable struggle, epiphany realization, core philosophy that birthed the product. |
15
+ | **#3** | +48 hours | Paradigm Shift / Bust Common Myth | `The biggest mistake [Target Audience] makes with [Topic]` | Disprove industry myth with case study proof; position your vehicle as the only logical path. |
16
+ | **#4** | +72 hours | Social Proof / Customer Transformation | `How [Client Name] achieved [Result] without [Pain]` | Detailed step-by-step case study, screenshots/quotes, link to full story. |
17
+ | **#5** | +96 hours | The Direct Offer + Time-Limited Incentive | `Ready to fix [Pain]? Here is a special invitation...` | Product overview, guarantee, fast-action bonus, direct CTA with deadline. |
18
+
19
+ ---
20
+
21
+ ### Flow 2: 3-Stage Abandoned Cart Recovery (E-Commerce & Digital Goods)
22
+
23
+ ```
24
+ Cart Abandoned Event
25
+
26
+ ├── [Delay: 1 Hour]
27
+ │ └── Email 1: "Did you forget something?" (Helpful / Customer Support tone)
28
+ │ - Display abandoned items + 1-click restore link
29
+ │ - "Had trouble completing your order? Reply here to get instant help."
30
+ │ - No discounts yet (recovers 35-45% of genuine accidental drop-offs).
31
+
32
+ ├── [Delay: 24 Hours]
33
+ │ └── Email 2: "Still thinking it over?" (Social Proof & Objection Busting)
34
+ │ - Highlight 3 customer reviews/ratings
35
+ │ - Remind about free shipping, return policy, or warranty
36
+ │ - "Your cart is saved for the next 24 hours."
37
+
38
+ └── [Delay: 48 Hours]
39
+ └── Email 3: "Last chance: Here is 10% off before your cart expires" (Urgency & Incentive)
40
+ - Dynamic coupon code valid for 12 hours only
41
+ - Final countdown timer + clear refund policy
42
+ - "After tonight, items will be released back to inventory."
43
+ ```
44
+
45
+ ---
46
+
47
+ ### Flow 3: At-Risk & Churn Prevention Drips (Trigger-Based)
48
+
49
+ Triggered when product usage drops by > 50% over a 14-day window or 30 days before annual renewal:
50
+ - **Email 1 (Gentle Check-In - Day 0)**:
51
+ - *Subject*: `Quick check-in on [Product/Goal]`
52
+ - *Body*: "Notice you haven't used [Feature] recently. Are you stuck or missing something? Hit reply and let me know."
53
+ - **Email 2 (Pro-Tip / New Value - Day 5)**:
54
+ - *Subject*: `3 shortcuts top teams use to get [Result]`
55
+ - *Body*: Walkthrough video or 2-minute checklist to unlock immediate ROI.
56
+ - **Email 3 (Executive Feedback Offer - Day 10)**:
57
+ - *Subject*: `Can I get your honest feedback?`
58
+ - *Body*: Offer 1-on-1 strategy call with product team to resolve roadblocks.
59
+
60
+ ---
61
+
62
+ ### Flow 4: Time-Boxed Win-Back Sequences (Lapsed Customers)
63
+
64
+ - **30 Days Inactive (Warm Re-engagement)**:
65
+ - *Subject*: `We’ve added [New Feature/Product] since you last visited`
66
+ - *Focus*: Showcase improvements, trending items, or new case study.
67
+ - **60 Days Inactive (Incentivized Reactivation)**:
68
+ - *Subject*: `Here is a $20 credit waiting in your account`
69
+ - *Focus*: Time-limited store credit or 1 month free reactivating discount.
70
+ - **90+ Days Inactive (Sunset / Permission to Close File)**:
71
+ - *Subject*: `Should we delete your account? (Permission to close)`
72
+ - *Focus*: Direct, respectful breakup email asking if they wish to unsubscribe or stay.
73
+
74
+ ---
75
+
76
+ ## 2. 3-Touch B2B InMail / DM Outreach Sequence
77
+
78
+ For LinkedIn and executive email outbound:
79
+
80
+ ```
81
+ Touch 1 (Day 1): Value-First Opener (Zero Pitch)
82
+ - Reference a specific recent post or company milestone.
83
+ - Share 1 relevant insight, benchmark, or free teardown.
84
+ - End with a low-friction question: "Is this currently a focus for your team?"
85
+
86
+ Touch 2 (Day 4): Social Proof & Specific Mechanism
87
+ - "Saw that [Competitor/Peer Company] recently solved [Pain Point] using [Mechanism].
88
+ Thought this 1-page breakdown might be useful for your team at [Company]."
89
+ - Soft CTA: "Happy to send over the template if you'd like to check it out."
90
+
91
+ Touch 3 (Day 8): The Graceful Breakup / Direct Ask
92
+ - "Know you're swamped. Won't follow up again if this isn't relevant right now.
93
+ If you ever want to explore how to [Core Outcome], feel free to reach back out."
94
+ ```
95
+
96
+ ---
97
+
98
+ ## 3. Subject Line Psychology & Split-Testing Formulas
99
+
100
+ | Category | Formula | Example |
101
+ |---|---|---|
102
+ | **Curiosity / Open Loop** | `[Unusual statement] + [curiosity hook]` | "This 4-minute routine replaces caffeine..." |
103
+ | **Direct Benefit & Speed** | `How to [desirable outcome] in [short timeframe]` | "How to audit your SEO in 12 minutes" |
104
+ | **Social Proof / Numbers** | `[Number] [professionals] are using this to [result]` | "1,420 store owners fixed their checkout with this" |
105
+ | **FOMO / Urgency** | `[Time left / Warning]: [Event happening]` | "Closing at midnight: Your 40% VIP voucher" |
106
+ | **Personal & Casual** | `Quick question regarding [topic]` | "Quick question about your Google Ads account" |
@@ -0,0 +1,70 @@
1
+ # Marketing Memory: Industry Benchmarks, ICE Scoring & Funnel Formulas
2
+
3
+ Operational quantitative anchors for marketing audits, paid ad budgets, B2B pipeline, retention health, growth experiments, and regional conversion benchmarks.
4
+
5
+ ---
6
+
7
+ ## 1. Core Marketing & Growth Formulas
8
+
9
+ ```
10
+ CTR (Click-Through Rate) = (Clicks / Impressions) * 100
11
+ CPC (Cost Per Click) = Total Ad Spend / Total Clicks
12
+ CVR (Conversion Rate) = (Conversions / Visitors) * 100
13
+ CPA (Cost Per Acquisition) = Total Ad Spend / Total Conversions
14
+ ROAS (Return on Ad Spend) = Total Revenue from Ads / Total Ad Spend
15
+ AOV (Average Order Value) = Total Revenue / Total Orders
16
+ LTV (Customer Lifetime Value) = AOV * Purchase Frequency * Customer Lifespan
17
+ LTV : CAC Ratio = LTV / CAC (Target: >= 3.0x for SaaS/Subscriptions)
18
+ Break-Even ROAS = 1 / Gross Margin %
19
+ CAC Payback Period (mo) = CAC / (Average Monthly Gross Margin per Customer)
20
+ ```
21
+
22
+ ---
23
+
24
+ ## 2. Growth Experimentation: The ICE Scoring Model
25
+
26
+ Prioritize marketing & CRO test ideas using the formula:
27
+ $$\text{ICE Score} = \text{Impact (1-10)} \times \text{Confidence (1-10)} \times \text{Ease (1-10)}$$
28
+
29
+ - **Impact (1-10)**: If this experiment succeeds, how much will it lift our primary conversion metric?
30
+ - **Confidence (1-10)**: How sure are we based on prior data, customer interviews, or proven case studies?
31
+ - **Ease (1-10)**: How fast and low-resource is this to implement? (10 = 1 hour / 0 code; 1 = 3 weeks of engineering).
32
+
33
+ ### Scientific Hypothesis Template:
34
+ > *"If we [implement change X] on [page/channel Y], then [primary metric Z] will increase by [W%] because [psychological reason]."*
35
+
36
+ ---
37
+
38
+ ## 3. Platform & Regional Conversion Benchmarks
39
+
40
+ ### Global Traffic Benchmarks
41
+
42
+ | Metric | E-Commerce (B2C) | B2B SaaS | Local Services | Info / Courses |
43
+ |---|---|---|---|---|
44
+ | **Meta CTR (Outbound)** | 1.50% - 2.80% | 0.80% - 1.60% | 1.20% - 2.50% | 1.80% - 3.20% |
45
+ | **Meta CPC** | $0.40 - $1.20 | $2.50 - $6.00 | $1.50 - $4.00 | $0.80 - $2.00 |
46
+ | **LinkedIn CPC** | N/A | $5.00 - $14.00 | N/A | $3.50 - $8.00 |
47
+ | **Google Search CTR** | 2.50% - 4.50% | 3.00% - 6.00% | 4.00% - 8.00% | 2.50% - 5.00% |
48
+ | **Landing Page CVR** | 2.00% - 4.50% | 3.00% - 8.00% (Lead) | 5.00% - 12.00% (Call) | 4.00% - 10.00% (Opt-in) |
49
+ | **Target ROAS (Blended)** | 2.8x - 4.5x | 1.5x - 2.5x (Front-end) | N/A (Pay-per-lead) | 3.0x - 5.0x |
50
+
51
+ ### MENA Payment Method Conversion Lifts
52
+ - **Enabling Mada & Apple Pay in Saudi Arabia (KSA)**: Lifts checkout conversion rate by **+35% to +50%**.
53
+ - **Enabling BNPL (Tabby / Tamara)**: Lifts Average Order Value (AOV) by **+25% to +40%** for orders above $80 (300 SAR/AED).
54
+ - **Enabling InstaPay / Fawry in Egypt**: Recovers **+40% of drop-offs** compared to credit-card-only checkouts.
55
+
56
+ ---
57
+
58
+ ## 4. B2B Pipeline Benchmarks
59
+
60
+ ```
61
+ Impressions ──> Engagements ──> Profile Visits ──> Inbound DMs
62
+
63
+ └──> MQL (Marketing Qualified Lead) [Benchmark: 15-25% from Inbound]
64
+ └──> SQL (Sales Qualified Lead) [Benchmark: 40-60% from MQL]
65
+ └──> Opportunity / Demo [Benchmark: 50-70% from SQL]
66
+ └──> Closed Won [Benchmark: 20-35% from Demo]
67
+ ```
68
+
69
+ - **Target CAC Payback Period**: < 12 months for SMB SaaS; < 18 months for Enterprise.
70
+ - **Monthly Logo Churn**: < 1.0% (Enterprise), < 2.5% (SMB).
@@ -0,0 +1,16 @@
1
+ # Marketing Philosophy: Audience-First Growth & Direct Response Principles
2
+
3
+ *(Note: Human-facing document. Never referenced by operational commands or execution agents).*
4
+
5
+ ---
6
+
7
+ ## 1. The Direct Response Mindset
8
+ Marketing is not speculative art; it is measurable human psychology applied through distribution channels. Every campaign, post, email, and ad exists to solve a genuine problem for an audience in exchange for attention, trust, and capital.
9
+
10
+ ## 2. Anti-Slop & Quality Standards
11
+ - **Zero Platitudes**: Banish generic advice like "create high-quality engaging content" or "build brand awareness." Replace them with specific, falsifiable hypotheses, clear numbers, testable hooks, and exact distribution cadences.
12
+ - **Respect Audience Attention**: High conversion comes from extreme relevance, clarity of mechanism, and immediate proof — not clickbait deceit.
13
+ - **Margin Protection**: Growth at the expense of negative unit economics is vanity. Sustainable businesses grow by optimizing Customer Acquisition Cost (CAC) against high Lifetime Value (LTV) and healthy gross margins.
14
+
15
+ ## 3. Cultural Nuance & Global Reach
16
+ Great marketing speaks natively. Whether drafting English direct-response sales copy or modern Arabic campaigns for MENA markets, the tone must reflect cultural dignity, natural vernacular, and genuine value.
@@ -0,0 +1,75 @@
1
+ # Marketing Memory: Platform Specs, MENA Regional Intelligence & CRO
2
+
3
+ Operational parameters for Global Social Platforms, Country-by-Country MENA Market Intelligence, Regional Payment Infrastructure, and 7-Dimension CRO Audits.
4
+
5
+ ---
6
+
7
+ ## 1. MENA Per-Country Market & Platform Intelligence
8
+
9
+ | Country | #1 Platforms (Priority Order) | Key Regional Payment Infrastructure | Trust & Cultural Factors |
10
+ |---|---|---|---|
11
+ | 🇸🇦 **Saudi Arabia (KSA)** | Snapchat → X (Twitter) → TikTok → Instagram → YouTube | **Mada**, **Tamara**, **Tabby**, Apple Pay, STC Pay | High purchasing power, mobile-first, video/visual dominant, local Riyadh/Jeddah dialtone or Modern Arabic. |
12
+ | 🇦🇪 **United Arab Emirates (UAE)** | Instagram → LinkedIn (B2B) → TikTok → YouTube → Meta | **Apple Pay**, Stripe, Tabby, Tamara | Highly international expat & local mix, dual English/Arabic mandatory, premium aesthetic expectation. |
13
+ | 🇪🇬 **Egypt** | Facebook (Meta) → WhatsApp → YouTube → TikTok → Instagram | **InstaPay**, **Fawry**, Vodafone Cash, Meeza, ValU | Facebook dominates both B2C and B2B, WhatsApp for sales closing, value/ROI conscious, high volume. |
14
+ | 🇰🇼 **Kuwait** | Instagram → Snapchat → TikTok → WhatsApp | **KNET**, Apple Pay, Tamara, Tabby | Exceptionally high AOV, heavy Instagram shopping/DM orders, personal concierge support culture. |
15
+ | 🇶🇦 **Qatar** | Instagram → Snapchat → TikTok → X | **NAPS**, Apple Pay, Debit Cards | High luxury and status affinity, government & corporate B2B focus. |
16
+ | 🇯🇴 **Jordan** | Facebook → Instagram → WhatsApp → TikTok | **CliQ**, Zain Cash, Orange Money, Credit Cards | Strong tech/freelancer hub, price-sensitive, peer recommendation driven. |
17
+ | 🇲🇦 **Morocco** | Facebook → Instagram → TikTok → WhatsApp | **CMI**, Cash on Delivery (COD), Orange Money | French/Arabic/Darija linguistic sensitivity, high COD prevalence in e-commerce. |
18
+
19
+ ---
20
+
21
+ ## 2. 7-Dimension CRO (Conversion Rate Optimization) Audit Framework
22
+
23
+ Analyze any landing page or checkout in order of impact:
24
+
25
+ ```
26
+ 1. Value Proposition Clarity (The 5-Second Test)
27
+ - Can a cold visitor understand what this is and why they should care in < 5 seconds?
28
+ - Is the primary benefit specific, quantified, and differentiated?
29
+
30
+ 2. Headline & Hero Effectiveness
31
+ - Outcome-focused: "Get [Outcome] without [Pain Point]"
32
+ - Matches the exact message and keywords of the referring ad or search query.
33
+
34
+ 3. CTA Hierarchy & Placement
35
+ - Single clear primary action above the fold.
36
+ - Low-friction copy ("Start Free 14-Day Trial", not "Submit" or "Buy Now").
37
+
38
+ 4. Friction & Cognitive Load
39
+ - Multi-step forms with progress bars for complex signups.
40
+ - Zero surprise shipping or hidden fees at checkout.
41
+
42
+ 5. Social Proof Stacking
43
+ - Customer logos, verifiable metric callouts, video testimonials, and Trustpilot/G2 badges.
44
+
45
+ 6. Risk Reversal & Guarantees
46
+ - Explicit money-back guarantee, 24/7 localized support, SSL/Security certifications.
47
+
48
+ 7. Mobile Usability & Speed
49
+ - Page load time < 2.5s (Core Web Vitals).
50
+ - 1-click mobile checkout enabled (Apple Pay, Mada, InstaPay).
51
+ ```
52
+
53
+ ---
54
+
55
+ ## 3. Global Social Algorithmic Signals
56
+
57
+ | Platform | Primary Ranking Signals | Winning Content Format | Optimal Posting Cadence |
58
+ |---|---|---|---|
59
+ | **Instagram** | Sends/DMs (Weight: 10), Saves (Weight: 8), Comments, Watch Time (> 80%) | Reels (9:16, 7-30s), Carousels (8-10 slides), Daily Stories | 3-5 Reels/wk, 2 Carousels/wk, 4-8 Stories/day |
60
+ | **TikTok** | 100% Video Completion Rate, Rewatches, Shares, Comment Velocity | Short-form video (9:16, 15-45s) with spoken + text hooks | 1-2 videos/day (consistency > volume) |
61
+ | **LinkedIn** | Dwell time, thoughtful comments (> 15 words), PDF document carousels | Document Slides (PDF), Text + Image teardowns, 1:1 Video | 3-5 posts/wk (morning business hours) |
62
+ | **YouTube Shorts**| Viewed vs. Swiped away ratio (> 75%), Average Percentage Viewed (> 100%) | Vertical Shorts (9:16, 20-50s) with seamless audio looping | 3-7 Shorts/wk |
63
+ | **X (Twitter)** | Bookmarks, Retweets/Quotes, Replies, Verified user interactions | Long-form articles/threads with visual diagrams | 2-4 posts/day |
64
+
65
+ ---
66
+
67
+ ## 4. The 3-Tier Hashtag Distribution Rule
68
+
69
+ ```
70
+ Total Hashtags: 5 to 10 targeted tags (Never use 30 spam tags).
71
+
72
+ ├── Tier 1: Broad Category (1-2 tags) -> 500k - 2M posts (e.g. #SaudiBusiness #SaaSGrowth)
73
+ ├── Tier 2: Niche Community (3-5 tags) -> 50k - 500k posts (e.g. #NextjsDevelopers #MENAEcommerce)
74
+ └── Tier 3: Micro / Branded (2-3 tags) -> 1k - 50k posts (e.g. #TidyFactorEngine #RiyadhStartups)
75
+ ```
@@ -0,0 +1,56 @@
1
+ # Marketing Memory: Promotions Math, Discounts & Margin Safeguards
2
+
3
+ Operational financial models to engineer high-converting promotions, sales, and contests without destroying profit margins.
4
+
5
+ ---
6
+
7
+ ## 1. Margin & Discount Impact Matrix
8
+
9
+ A common marketing failure is discounting without understanding gross margin erosion.
10
+
11
+ ### The Margin Erosion Equation:
12
+ ```
13
+ Required Sales Volume Increase to Maintain Same Profit:
14
+ Volume Increase % = (Discount %) / (Gross Margin % - Discount %) * 100
15
+ ```
16
+
17
+ ### Table: Extra Sales Required When Offering Discounts
18
+
19
+ | Your Product Gross Margin | 10% Discount | 20% Discount | 30% Discount | 40% Discount |
20
+ |---|---|---|---|---|
21
+ | **70% Gross Margin** (Software/Info) | +16.7% sales | +40.0% sales | +75.0% sales | +133.3% sales |
22
+ | **50% Gross Margin** (Typical E-comm) | +25.0% sales | +66.7% sales | +150.0% sales | +400.0% sales |
23
+ | **30% Gross Margin** (Low Margin Retail) | +50.0% sales | +200.0% sales | ⚠️ 0 Profit | ⛔ Net Loss |
24
+
25
+ ---
26
+
27
+ ## 2. Margin-Safe Promotion Architectures
28
+
29
+ ### Model A: Threshold-Based Tiered Discounts (AOV Expansion)
30
+ Instead of a flat 20% sitewide discount, structure tiers above current Average Order Value (AOV):
31
+ - **Current AOV = $60**:
32
+ - *Tier 1*: Spend $75, Get $10 Off (~13% discount, forces +25% basket size).
33
+ - *Tier 2*: Spend $120, Get $20 Off (~16% discount, forces 2x basket size).
34
+ - *Tier 3*: Spend $180, Get $35 Off + Free Gift (~19% discount, forces 3x basket size).
35
+
36
+ ### Model B: Buy X, Get Free Bonus (Value Stacking vs Price Cutting)
37
+ Giving a digital bonus or low-cost physical accessory preserves price integrity while providing higher perceived value than a flat discount.
38
+ - *Example*: "Buy the Core Course ($197), Get 3 Live Q&A Sessions + Template Pack Free ($297 Value)" vs "$50 Off".
39
+
40
+ ### Model C: Flash Sale Scarcity Matrix (72-Hour Window)
41
+ - **Hour 0 - 24**: Early Bird VIP Access (Deepest incentive or exclusive bundle bonus).
42
+ - **Hour 24 - 48**: Mid-Sale Momentum & Social Proof (Customer testimonials, stock ticker updates).
43
+ - **Hour 48 - 72**: Final Countdown / Hard Deadline (Urgency, countdown clock, cart expiration).
44
+
45
+ ---
46
+
47
+ ## 3. Giveaway / Contest ROI Architecture
48
+
49
+ To prevent "Freebie Seekers" who never buy:
50
+ 1. **Prize Selection Rule**: The prize MUST ONLY be desirable to your exact dream customer.
51
+ - ❌ *Bad*: Win an iPhone 16 / $500 Cash (attracts anyone and destroys email list quality).
52
+ - ✅ *Good*: Win 1 Year of [Your SaaS] + 1-on-1 Onboarding / $500 Store Shopping Spree.
53
+ 2. **Viral Entry Mechanics**:
54
+ - Primary Entry: Verified Email Opt-in (1 entry).
55
+ - Bonus Actions: Share unique referral link with 3 friends (+5 entries per verified referral).
56
+ - Consolation Offer: Every non-winner receives a personalized 48-hour voucher on the day winners are announced (recovers 8-15% conversion on participants).
@@ -0,0 +1,55 @@
1
+ # Marketing Quality Bar & 7-Axis Pre-Emit Self-Critique
2
+
3
+ > **Purpose**: Enforces strict anti-slop marketing standards, conversion mechanics, and regional calibration across all copywriting, ads, emails, and campaign strategies.
4
+
5
+ ---
6
+
7
+ ## 🛡️ The 7-Axis Pre-Emit Self-Critique (`P/H/E/S/R/V/D`)
8
+
9
+ Before emitting any campaign plan, ad copy, email sequence, or landing page copy, the agent MUST self-evaluate against 7 core dimensions (rated 1 to 5, minimum 4 required across all axes):
10
+
11
+ ```markdown
12
+ /* Pre-emit critique: P5 H5 E5 S5 R5 V5 D5 */
13
+ ```
14
+
15
+ | Axis | Dimension | Evaluation Criteria |
16
+ |:---:|:---|:---|
17
+ | **P** | **Pain / Desire Specificity** | Identifies acute, tangible customer pain or quantifiable aspiration. Zero generic filler ("grow your business", "reach your goals"). |
18
+ | **H** | **Hook & Headline Power** | Scroll-stopping 3-second hook utilizing curiosity gap, contrarian insight, or compelling numerical anchor. |
19
+ | **E** | **Execution Completeness** | Delivers complete funnel assets (Subject Lines, Body Copy, CTA, Micro-copy, Risk Reversal, Social Proof anchors). |
20
+ | **S** | **Stage & Market Fit** | Calibrated to user sophistication (Schwartz 5 Stages) and native regional market vernacular (GCC, Egypt, Global). |
21
+ | **R** | **Restraint & Margin Protection** | Protects brand equity and unit gross margins; avoids destructive discount spirals and false manufactured scarcity. |
22
+ | **V** | **Voice & Anti-Slop Authenticity** | High-energy conversational flow free from AI clichés ("In today's fast-paced world", "Unlock your potential", "Game-changer"). |
23
+ | **D** | **Decision Alignment** | 100% compliant with the confirmed `.tidyfactor/marketing-brief.md` baseline (Market, Tone, Offer, Scope). |
24
+
25
+ ---
26
+
27
+ ## 🚫 AI Slop & Cliché Banned Dictionary
28
+
29
+ The following phrases and generic filler patterns are **STRICTLY PROHIBITED** in all generated marketing copy:
30
+
31
+ | Banned AI Slop | Why It Fails | Approved High-Conversion Alternative |
32
+ |:---|:---|:---|
33
+ | *"In today's fast-paced digital world..."* | Empty fluff, zero information density | Jump straight into the villain/symptom: *"Most founders spend 14 hours a week..."* |
34
+ | *"Unlock your full potential..."* | Vague, untestable corporate slogan | Specific outcome: *"Double your qualified demo bookings without increasing ad spend"* |
35
+ | *"Game-changer / Revolutionize / Next-level"* | Hyperbolic buzzword blindness | Concrete mechanism: *"Replaces 4 disjointed SaaS tools with 1 automated pipeline"* |
36
+ | *"Look no further..."* | Lazy infomercial cliché | Proof-driven hook: *"Here is the exact 3-step breakdown 84 enterprise teams use..."* |
37
+ | *"We are passionate about providing..."* | Self-centered brand ego | Customer-centric benefit: *"Get your first campaign live in under 12 minutes"* |
38
+
39
+ ---
40
+
41
+ ## 🌍 Regional Market Intelligence (MENA & Global)
42
+
43
+ ### 1. Gulf / GCC (Saudi Arabia 🇸🇦, UAE 🇦🇪, Kuwait 🇰🇼, Qatar 🇶🇦)
44
+ - **Tone**: Prestige, modern luxury, ambition, respect, and tribal/community trust.
45
+ - **Conversion Channels**: WhatsApp direct routing, Apple Pay, Mada / Tabby / Tamara installment framing.
46
+ - **Copy Idiom**: Modern polished Arabic (فصحى راقية ومقنعة) with natural Gulf business terminology.
47
+
48
+ ### 2. Egypt & Levant (Egypt 🇪🇬, Jordan 🇯🇴)
49
+ - **Tone**: High-energy, practical ROI, relatable wit, clear value-for-money justification.
50
+ - **Conversion Channels**: Cash on Delivery (COD), Fawry / InstaPay, direct phone/WhatsApp confirmation.
51
+ - **Copy Idiom**: Clear, engaging Egyptian/Levantine Arabic blending professionalism with warmth.
52
+
53
+ ### 3. Global / B2B SaaS (US / Europe)
54
+ - **Tone**: Direct, concise, metric-dense, self-serve focused.
55
+ - **Conversion Channels**: Stripe, frictionless freemium / instant calendar booking.
@@ -0,0 +1,72 @@
1
+ # Marketing Discovery & Brief Workflow
2
+
3
+ > **Outcome**: Generates an authoritative `.tidyfactor/marketing-brief.md` file capturing target market, brand voice, funnel stage, conversion model, and delivery scope.
4
+
5
+ ---
6
+
7
+ ## 📋 Step 0: Check Existing Baseline
8
+
9
+ 1. Check if `.tidyfactor/marketing-brief.md` already exists on disk.
10
+ 2. If it exists and user did not specify `--force` or `--reset`:
11
+ - Display the active brief summary.
12
+ - Ask if the user wants to keep the existing baseline or update specific parameters.
13
+
14
+ ---
15
+
16
+ ## 💬 Step 1: Conduct 3-Question Targeted Discovery
17
+
18
+ If no baseline exists, present at most 3 clear, structured questions in a single turn:
19
+
20
+ ### Question 1: Target Market & Regional Tone (M1)
21
+ - **A) Gulf / GCC (Saudi Arabia 🇸🇦, UAE 🇦🇪, Kuwait 🇰🇼, Qatar 🇶🇦)** — High prestige, trust-first, WhatsApp/Installments framing, modern polished Arabic.
22
+ - **B) Egypt & Levant (Egypt 🇪🇬, Jordan 🇯🇴)** — Practical ROI, high energy, relatable wit, cash-on-delivery & InstaPay framing.
23
+ - **C) Global / B2B SaaS** — Direct, metric-dense, self-serve focused, English-first.
24
+ - **D) Bilingual / Unified MENA** (Default).
25
+
26
+ ### Question 2: Brand Voice Archetype (M2)
27
+ - **A) Authoritative Challenger** (Direct, contrarian, proof-backed, no-nonsense).
28
+ - **B) Empathetic Guide** (Supportive, story-driven, transformational, warm).
29
+ - **C) Elite Luxury / High-End** (Minimalist, aspirational, refined confidence).
30
+ - **D) High-Energy Direct Response** (Urgent, benefit-stacked, conversion-focused).
31
+
32
+ ### Question 3: Funnel Focus & Core Offer (M3 + M4)
33
+ - **A) Top-of-Funnel Lead Magnet** (Free guide, checklist, audit, quiz).
34
+ - **B) Middle-of-Funnel Trial / Demo** (Product-led trial, 1-on-1 strategy call).
35
+ - **C) Bottom-of-Funnel Direct Sale / Promo** (E-commerce purchase, limited-time launch offer).
36
+
37
+ ---
38
+
39
+ ## 💾 Step 2: Write `.tidyfactor/marketing-brief.md`
40
+
41
+ Format and persist the confirmed choices:
42
+
43
+ ```markdown
44
+ # Marketing Brief Baseline
45
+
46
+ - **Product / Brand**: [Extracted or Confirmed Name]
47
+ - **Target Market (M1)**: [Confirmed Selection]
48
+ - **Brand Voice (M2)**: [Confirmed Archetype]
49
+ - **Funnel Stage (M3)**: [Top / Middle / Bottom]
50
+ - **Core Offer (M4)**: [Lead Magnet / Trial / Direct Transaction]
51
+ - **Deliverable Scope (M5)**: [Sprint Copy / Multi-Channel Blueprint]
52
+ - **Last Updated**: [Current Date]
53
+ ```
54
+
55
+ ---
56
+
57
+ ## 🎯 Step 3: Self-Critique & Handoff
58
+
59
+ Stamp the 7-axis critique:
60
+ ```markdown
61
+ /* Pre-emit critique: P5 H5 E5 S5 R5 V5 D5 */
62
+ ```
63
+
64
+ ---
65
+
66
+ ## ## Validation checklist
67
+
68
+ - [ ] `.tidyfactor/marketing-brief.md` created or verified on disk.
69
+ - [ ] Exactly 3 or fewer questions asked in a single round.
70
+ - [ ] Regional calibration (GCC, Egypt, Global) explicitly recorded.
71
+ - [ ] Brand voice archetype explicitly recorded.
72
+ - [ ] Confirmed baseline summary displayed to user with next command suggestions (`/strategy`, `/advertising`, `/email`, `/content`).