expxagents 0.1.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 (92) hide show
  1. package/assets/agents/_catalog.yaml +11 -0
  2. package/assets/agents/commercial/account-executive.agent.md +41 -0
  3. package/assets/agents/commercial/crm-manager.agent.md +41 -0
  4. package/assets/agents/commercial/pricing-strategist.agent.md +41 -0
  5. package/assets/agents/commercial/proposal-writer.agent.md +41 -0
  6. package/assets/agents/commercial/sdr.agent.md +41 -0
  7. package/assets/agents/development/backend-developer.agent.md +42 -0
  8. package/assets/agents/development/code-reviewer.agent.md +41 -0
  9. package/assets/agents/development/devops-engineer.agent.md +41 -0
  10. package/assets/agents/development/frontend-developer.agent.md +92 -0
  11. package/assets/agents/development/product-manager.agent.md +41 -0
  12. package/assets/agents/development/qa-engineer.agent.md +41 -0
  13. package/assets/agents/development/tech-lead.agent.md +42 -0
  14. package/assets/agents/development/ux-design-expert.agent.md +108 -0
  15. package/assets/agents/marketing/brand-guardian.agent.md +40 -0
  16. package/assets/agents/marketing/content-creator.agent.md +41 -0
  17. package/assets/agents/marketing/email-marketing.agent.md +41 -0
  18. package/assets/agents/marketing/landing-page-builder.agent.md +73 -0
  19. package/assets/agents/marketing/marketing-analyst.agent.md +41 -0
  20. package/assets/agents/marketing/paid-ads-manager.agent.md +41 -0
  21. package/assets/agents/marketing/seo-specialist.agent.md +41 -0
  22. package/assets/agents/marketing/social-media-manager.agent.md +41 -0
  23. package/assets/core/best-practices/_catalog.yaml +85 -0
  24. package/assets/core/best-practices/api-documentation.md +137 -0
  25. package/assets/core/best-practices/blog-post.md +86 -0
  26. package/assets/core/best-practices/blog-seo.md +91 -0
  27. package/assets/core/best-practices/code-review.md +97 -0
  28. package/assets/core/best-practices/copywriting.md +75 -0
  29. package/assets/core/best-practices/data-analysis.md +93 -0
  30. package/assets/core/best-practices/deploy-checklist.md +99 -0
  31. package/assets/core/best-practices/email-newsletter.md +84 -0
  32. package/assets/core/best-practices/email-sales.md +91 -0
  33. package/assets/core/best-practices/image-design.md +78 -0
  34. package/assets/core/best-practices/instagram-feed.md +70 -0
  35. package/assets/core/best-practices/instagram-reels.md +75 -0
  36. package/assets/core/best-practices/instagram-stories.md +68 -0
  37. package/assets/core/best-practices/landing-page.md +279 -0
  38. package/assets/core/best-practices/linkedin-article.md +83 -0
  39. package/assets/core/best-practices/linkedin-post.md +84 -0
  40. package/assets/core/best-practices/researching.md +89 -0
  41. package/assets/core/best-practices/review.md +95 -0
  42. package/assets/core/best-practices/sprint-planning.md +91 -0
  43. package/assets/core/best-practices/strategist.md +95 -0
  44. package/assets/core/best-practices/technical-writing.md +104 -0
  45. package/assets/core/best-practices/twitter-post.md +75 -0
  46. package/assets/core/best-practices/twitter-thread.md +92 -0
  47. package/assets/core/best-practices/whatsapp-broadcast.md +95 -0
  48. package/assets/core/best-practices/youtube-script.md +80 -0
  49. package/assets/core/best-practices/youtube-shorts.md +76 -0
  50. package/assets/core/prompts/insight-hunter.prompt.md +62 -0
  51. package/assets/core/runner.pipeline.md +117 -0
  52. package/assets/core/skills.engine.md +65 -0
  53. package/assets/core/solution-architect.agent.md +181 -0
  54. package/assets/templates/_expxagents/_memory/company.md +25 -0
  55. package/assets/templates/_expxagents/_memory/preferences.md +6 -0
  56. package/assets/templates/squads/_memory/memories.md +16 -0
  57. package/bin/expxagents.js +3 -0
  58. package/dist/cli/src/__tests__/cli.test.d.ts +1 -0
  59. package/dist/cli/src/__tests__/cli.test.js +23 -0
  60. package/dist/cli/src/commands/create.d.ts +1 -0
  61. package/dist/cli/src/commands/create.js +53 -0
  62. package/dist/cli/src/commands/doctor.d.ts +1 -0
  63. package/dist/cli/src/commands/doctor.js +86 -0
  64. package/dist/cli/src/commands/init.d.ts +1 -0
  65. package/dist/cli/src/commands/init.js +164 -0
  66. package/dist/cli/src/commands/install.d.ts +1 -0
  67. package/dist/cli/src/commands/install.js +65 -0
  68. package/dist/cli/src/commands/list.d.ts +1 -0
  69. package/dist/cli/src/commands/list.js +58 -0
  70. package/dist/cli/src/commands/onboarding.d.ts +1 -0
  71. package/dist/cli/src/commands/onboarding.js +39 -0
  72. package/dist/cli/src/commands/run.d.ts +1 -0
  73. package/dist/cli/src/commands/run.js +226 -0
  74. package/dist/cli/src/commands/server.d.ts +1 -0
  75. package/dist/cli/src/commands/server.js +22 -0
  76. package/dist/cli/src/commands/stop.d.ts +1 -0
  77. package/dist/cli/src/commands/stop.js +23 -0
  78. package/dist/cli/src/commands/uninstall.d.ts +1 -0
  79. package/dist/cli/src/commands/uninstall.js +12 -0
  80. package/dist/cli/src/index.d.ts +1 -0
  81. package/dist/cli/src/index.js +57 -0
  82. package/dist/cli/src/utils/config.d.ts +34 -0
  83. package/dist/cli/src/utils/config.js +79 -0
  84. package/dist/core/skills-loader.d.ts +16 -0
  85. package/dist/core/skills-loader.js +61 -0
  86. package/dist/core/squad-loader.d.ts +26 -0
  87. package/dist/core/squad-loader.js +51 -0
  88. package/dist/core/state-manager.d.ts +45 -0
  89. package/dist/core/state-manager.js +90 -0
  90. package/dist/core/vitest.config.d.ts +2 -0
  91. package/dist/core/vitest.config.js +7 -0
  92. package/package.json +49 -0
@@ -0,0 +1,91 @@
1
+ ---
2
+ platform: software-house
3
+ format: sprint-planning
4
+ constraints:
5
+ max_chars: null
6
+ image_ratio: null
7
+ max_hashtags: null
8
+ ---
9
+
10
+ # Best Practices: Sprint Planning
11
+
12
+ ## Core Principles
13
+
14
+ Sprint planning transforms the product backlog into a committed, achievable sprint goal. A good sprint planning session is time-boxed, collaborative, and results in a shared understanding of what done looks like.
15
+
16
+ - **Commitment, not forecast.** The team commits to a goal; ticket count is an estimate.
17
+ - **Definition of Done must be agreed before work starts, not after.**
18
+ - **Sprint goal over ticket list.** A sprint with one clear objective is better than a full sprint board with no coherent direction.
19
+ - **Two-week sprints are the default.** Shorter is faster feedback; longer creates inertia.
20
+
21
+ ## Pre-Planning Checklist (Product Owner / Scrum Master)
22
+
23
+ - [ ] Product backlog is groomed: top 2 sprints worth of stories are estimated and have acceptance criteria
24
+ - [ ] Sprint goal drafted and ready to propose to the team
25
+ - [ ] Previous sprint retrospective action items reviewed
26
+ - [ ] Dependencies on other teams identified and resolved or documented
27
+ - [ ] Team availability confirmed (holidays, OOO) for sprint duration
28
+
29
+ ## Sprint Planning Meeting Structure (2 hours for 2-week sprint)
30
+
31
+ ### Part 1: What (45 minutes)
32
+ 1. Present the sprint goal (Product Owner, 5 minutes)
33
+ 2. Review top backlog items (10 minutes)
34
+ 3. Team asks clarifying questions on each story (15 minutes)
35
+ 4. Team confirms which stories they can commit to (15 minutes)
36
+
37
+ ### Part 2: How (75 minutes)
38
+ 1. Break accepted stories into tasks (30 minutes)
39
+ 2. Assign or self-assign tasks (15 minutes)
40
+ 3. Identify risks and blockers (15 minutes)
41
+ 4. Finalize sprint board (15 minutes)
42
+
43
+ ## Story Format (User Story Template)
44
+
45
+ ```
46
+ As a [type of user],
47
+ I want [a goal],
48
+ So that [a reason / benefit].
49
+
50
+ Acceptance Criteria:
51
+ - [ ] Given [precondition], when [action], then [expected result]
52
+ - [ ] Given [precondition], when [action], then [expected result]
53
+ - [ ] Edge case: [specific scenario handled correctly]
54
+
55
+ Definition of Done:
56
+ - [ ] Code reviewed and approved
57
+ - [ ] Unit tests written and passing
58
+ - [ ] Acceptance criteria verified by QA
59
+ - [ ] Deployed to staging
60
+ - [ ] Documentation updated (if applicable)
61
+ ```
62
+
63
+ ## Story Point Estimation
64
+
65
+ Use Fibonacci sequence (1, 2, 3, 5, 8, 13, 21) with this anchor:
66
+
67
+ | Points | Meaning |
68
+ |--------|---------|
69
+ | 1 | Under 1 hour; trivial change |
70
+ | 2 | Half a day; straightforward |
71
+ | 3 | One day; clear but requires care |
72
+ | 5 | 2–3 days; some unknowns |
73
+ | 8 | 4–5 days; significant unknowns; consider splitting |
74
+ | 13+ | Too large; must be broken down |
75
+
76
+ ## Velocity and Capacity
77
+
78
+ - Calculate team capacity: `(team members) × (workdays) × (focus factor 0.7)`
79
+ - Focus factor accounts for meetings, interruptions, and non-sprint work
80
+ - Use trailing 3-sprint average velocity for planning; do not inflate
81
+ - Reserve 10–15% of capacity for bugs, unplanned work, and tech debt
82
+
83
+ ## Guidelines
84
+
85
+ - Stories without acceptance criteria are not ready for sprint planning — send them back to backlog refinement.
86
+ - A story larger than 5 points must be split before it enters the sprint.
87
+ - The team should define the sprint goal collectively — the PO proposes; the team refines.
88
+ - Planning poker: use simultaneous reveal to prevent anchoring bias.
89
+ - Technical tasks (refactors, infrastructure) belong in the sprint alongside feature work — track them explicitly.
90
+ - Keep a "stretch goal" list of 1–2 stories the team can pull if they finish early.
91
+ - If planning takes more than 2 hours for a 2-week sprint, the backlog is not adequately groomed.
@@ -0,0 +1,95 @@
1
+ ---
2
+ platform: universal
3
+ format: strategy
4
+ constraints:
5
+ max_chars: null
6
+ image_ratio: null
7
+ max_hashtags: null
8
+ ---
9
+
10
+ # Best Practices: Content and Marketing Strategy
11
+
12
+ ## Core Principles
13
+
14
+ Strategy is the set of choices that determines where to focus, what to build, and what to ignore. A strategy without constraints is just a wish list.
15
+
16
+ - **Start with the business goal, not the content idea.** Every content piece should map to a measurable business outcome.
17
+ - **Choose a lane.** Trying to be everywhere at once leads to mediocrity everywhere. Dominate one platform, one format, one audience segment first.
18
+ - **Measure what matters.** Vanity metrics (followers, impressions) are inputs. Revenue, leads, and retention are outputs. Strategy serves outputs.
19
+
20
+ ## Strategic Frameworks
21
+
22
+ ### OKR Alignment (Objectives and Key Results)
23
+ ```
24
+ Objective: [What are we trying to achieve?]
25
+ KR1: [Measurable milestone 1]
26
+ KR2: [Measurable milestone 2]
27
+ KR3: [Measurable milestone 3]
28
+ Content initiatives that serve this OKR: [list]
29
+ ```
30
+
31
+ ### Audience-First Mapping
32
+ 1. Define the primary audience persona (1 person, not a demographic)
33
+ 2. Identify their top 3 pain points
34
+ 3. Identify their top 3 aspirations
35
+ 4. Map content topics to pain/aspiration intersections
36
+ 5. Match each topic to a stage of the buyer journey (Awareness / Consideration / Decision)
37
+
38
+ ### Content Pillars Framework
39
+ - Define 3–5 core content pillars (themes you will consistently own)
40
+ - Each pillar should be: relevant to your audience, differentiated from competitors, sustainable to produce
41
+ - Distribute content production across pillars (e.g., 40% / 30% / 20% / 10%)
42
+
43
+ ### SOSTAC Planning
44
+ - **Situation** — Where are we now? (audit)
45
+ - **Objectives** — Where do we want to go? (SMART goals)
46
+ - **Strategy** — How will we get there? (positioning, audience, channels)
47
+ - **Tactics** — What specifically will we do? (editorial calendar, campaigns)
48
+ - **Action** — Who does what, when? (roles, timelines)
49
+ - **Control** — How will we measure success? (KPIs, reporting cadence)
50
+
51
+ ## Structure (Strategy Document)
52
+
53
+ ```
54
+ [EXECUTIVE SUMMARY — 1 page]
55
+
56
+ [SITUATION ANALYSIS]
57
+ - Current state: channels, metrics, audience
58
+ - Competitive landscape
59
+ - SWOT analysis
60
+
61
+ [GOALS AND KPIs]
62
+ - Primary goal
63
+ - 3–5 measurable KPIs with targets and timelines
64
+
65
+ [AUDIENCE]
66
+ - Primary persona
67
+ - Secondary persona (if applicable)
68
+ - Buyer journey map
69
+
70
+ [POSITIONING]
71
+ - Unique point of view / differentiated angle
72
+ - Tone of voice and brand personality
73
+
74
+ [CHANNEL AND FORMAT STRATEGY]
75
+ - Priority channels (ranked 1–3)
76
+ - Content formats per channel
77
+ - Publishing frequency
78
+
79
+ [EDITORIAL CALENDAR GUIDELINES]
80
+ - Content pillars and distribution
81
+ - Campaign themes (quarterly or monthly)
82
+
83
+ [MEASUREMENT AND REPORTING]
84
+ - Reporting frequency
85
+ - Dashboard or tool
86
+ - Review and iteration process
87
+ ```
88
+
89
+ ## Guidelines
90
+
91
+ - Build a 90-day strategy, not a 12-month plan. Markets change; plans should too.
92
+ - Separate strategy (direction) from tactics (execution). Do not write tactics inside a strategy document.
93
+ - Validate assumptions with data before committing resources. A 2-week test costs less than a failed quarter.
94
+ - Document the "why not" for channels and formats you're deliberately excluding — it prevents strategy drift.
95
+ - Review performance monthly; adjust quarterly; rewrite the strategy annually.
@@ -0,0 +1,104 @@
1
+ ---
2
+ platform: universal
3
+ format: technical-writing
4
+ constraints:
5
+ max_chars: null
6
+ image_ratio: null
7
+ max_hashtags: null
8
+ ---
9
+
10
+ # Best Practices: Technical Writing
11
+
12
+ ## Core Principles
13
+
14
+ Technical writing translates complex information into clear, accurate, and usable documentation for a defined audience. Clarity and completeness are non-negotiable.
15
+
16
+ - **Know your audience's technical level.** A document for end-users is written differently from one for developers or system administrators.
17
+ - **One document, one purpose.** A reference guide, a tutorial, and a troubleshooting guide are three different documents — do not conflate them.
18
+ - **Accuracy is correctness, not precision.** Technical writing must be correct, complete, and current.
19
+
20
+ ## Document Types
21
+
22
+ | Type | Purpose | Structure |
23
+ |------|---------|-----------|
24
+ | Tutorial | Learning-oriented; guides through a task | Step-by-step, linear |
25
+ | How-to Guide | Task-oriented; solves a specific problem | Steps + prerequisites |
26
+ | Reference | Information-oriented; lookup resource | Tables, definitions, indexes |
27
+ | Explanation | Understanding-oriented; concept clarity | Narrative, diagrams |
28
+
29
+ ## Structure
30
+
31
+ ```
32
+ [TITLE — action-verb + topic, e.g., "Configure SSL Certificates"]
33
+
34
+ [OVERVIEW — 2–4 sentences]
35
+ - What this document covers
36
+ - Who it is for
37
+ - Prerequisites or assumed knowledge
38
+
39
+ [PREREQUISITES]
40
+ - Software versions, permissions, or prior steps required
41
+
42
+ [PROCEDURE / CONTENT]
43
+ - For step-by-step: numbered steps, one action per step
44
+ - Code blocks for all commands, file paths, and code snippets
45
+ - Expected output shown after each command
46
+ - Notes, warnings, and tips called out in admonition blocks
47
+
48
+ [VERIFICATION]
49
+ - How to confirm the procedure was successful
50
+
51
+ [TROUBLESHOOTING]
52
+ - Common errors and their resolutions
53
+
54
+ [NEXT STEPS / RELATED DOCS]
55
+ - Links to follow-on documentation
56
+ ```
57
+
58
+ ## Guidelines
59
+
60
+ - **Active voice.** "Click Save" not "Save should be clicked."
61
+ - **Present tense.** "The system returns a 200 status code" not "the system will return."
62
+ - Avoid "you" when the subject is the system: "The installer prompts you" not "you will be prompted."
63
+ - Use admonition blocks consistently:
64
+ - **Note:** supplementary, non-critical information
65
+ - **Warning:** potential data loss, security, or breaking change
66
+ - **Tip:** shortcut or best practice
67
+ - Code blocks must specify the language for syntax highlighting.
68
+ - Every parameter, flag, and argument should be documented — not just the ones you think people will use.
69
+ - Version-stamp documents that apply to specific software releases.
70
+ - Docs-as-code: treat documentation source files like code — version control, review, and CI/CD checks.
71
+ - Screenshots: annotate with numbered callouts; never rely solely on a screenshot without text explanation.
72
+
73
+ ## Formatting Standards
74
+
75
+ - Headings: sentence case ("Configure the database" not "Configure The Database")
76
+ - File paths: `monospace` format
77
+ - UI elements: **bold** ("Click **Save**")
78
+ - Code inline: `monospace` single backtick
79
+ - Code blocks: triple backtick with language identifier
80
+ - Lists: numbered for sequential steps, bulleted for non-sequential items
81
+
82
+ ## Examples
83
+
84
+ **Step format:**
85
+ ```
86
+ 1. Open a terminal and run the following command:
87
+
88
+ ```bash
89
+ npm install --save-dev jest
90
+ ```
91
+
92
+ Expected output:
93
+ ```
94
+ added 287 packages in 4.2s
95
+ ```
96
+
97
+ 2. Create a configuration file named `jest.config.js` in your project root.
98
+ ```
99
+
100
+ **Warning admonition:**
101
+ ```
102
+ > **Warning:** Running this command permanently deletes all data in the specified
103
+ > database. Ensure you have a current backup before proceeding.
104
+ ```
@@ -0,0 +1,75 @@
1
+ ---
2
+ platform: twitter-x
3
+ format: post
4
+ constraints:
5
+ max_chars: 280
6
+ image_ratio: "16:9"
7
+ max_hashtags: 2
8
+ ---
9
+
10
+ # Best Practices: Twitter/X — Post
11
+
12
+ ## Format Rules
13
+
14
+ - Character limit: 280 characters (URLs count as 23 characters regardless of length)
15
+ - Images: 1200x675px (16:9) or 1200x1200px (square); up to 4 images per tweet
16
+ - Hashtags reduce reach on X — use 1–2 maximum, only when directly relevant
17
+ - Polls: up to 4 options, 1–7 day duration
18
+ - Threads are linked posts; the opener is the most important tweet
19
+ - Quoted tweets with commentary outperform bare retweets
20
+
21
+ ## Structure
22
+
23
+ ```
24
+ [SINGLE POWERFUL STATEMENT or QUESTION]
25
+ — or —
26
+ [SHORT NUMBERED LIST — 3–5 items max, each under 40 characters]
27
+ — or —
28
+ [NARRATIVE HOOK that demands a thread reply or comment]
29
+ ```
30
+
31
+ ## Guidelines
32
+
33
+ - **Brevity is authority.** If you need more than 200 characters, consider whether this should be a thread.
34
+ - One idea per tweet. Cramming multiple points kills impact.
35
+ - Use line breaks (return key) to create visual rhythm — it stops the scroll.
36
+ - The best-performing tweet formats on X: hot takes, contrarian opinions, numbered lists, specific advice.
37
+ - Questions that are easy to answer (binary, fill-in-the-blank) generate the most replies.
38
+ - Avoid hashtags in post body — place them at the end or omit entirely.
39
+ - Engage with replies within the first 30 minutes to boost the tweet's reach.
40
+ - Images and alt text: always add alt text to images for accessibility.
41
+ - Repost your own top-performing content every 3–6 months — new followers haven't seen it.
42
+
43
+ ## Examples
44
+
45
+ **Hot take format:**
46
+ ```
47
+ Productivity apps don't make you productive.
48
+
49
+ Knowing your one most important task today does.
50
+ ```
51
+
52
+ **List format:**
53
+ ```
54
+ 5 signs you're actually making progress (even when it feels slow):
55
+
56
+ • You're asking better questions
57
+ • Old problems no longer bother you
58
+ • You're saying no more often
59
+ • Sleep is intentional, not collapsed
60
+ • You enjoy the process
61
+ ```
62
+
63
+ **Question format:**
64
+ ```
65
+ What's one thing you stopped doing that improved your life more than you expected?
66
+ ```
67
+
68
+ **CTA format (for threads):**
69
+ ```
70
+ I spent 6 months studying how top creators build audiences.
71
+
72
+ Here are the 7 patterns nobody talks about:
73
+
74
+ 🧵 Thread below 👇
75
+ ```
@@ -0,0 +1,92 @@
1
+ ---
2
+ platform: twitter-x
3
+ format: thread
4
+ constraints:
5
+ max_chars: 280
6
+ image_ratio: "16:9"
7
+ max_hashtags: 2
8
+ ---
9
+
10
+ # Best Practices: Twitter/X — Thread
11
+
12
+ ## Format Rules
13
+
14
+ - Each tweet in a thread: 280 characters max
15
+ - Ideal thread length: 7–20 tweets (shorter threads under 5 feel incomplete; longer than 20 see steep drop-off)
16
+ - Number each tweet (1/, 2/, etc.) for clarity and navigation
17
+ - The opening tweet (Tweet 1) is the only one that appears in feeds — it drives the entire thread's performance
18
+ - Use "🧵" symbol to signal a thread is coming
19
+
20
+ ## Structure
21
+
22
+ ```
23
+ Tweet 1: [HOOK — standalone statement that demands to be read]
24
+ "[Provocative claim, specific number, or powerful question]"
25
+ "A thread: 🧵"
26
+
27
+ Tweet 2: [SETUP — frame the problem or context]
28
+
29
+ Tweets 3–N: [CONTENT — one idea per tweet]
30
+ - Use numbered sub-lists inside tweets when listing within a point
31
+ - Add an image or screenshot to key tweets to increase dwell time
32
+ - Plant cliffhangers at the end of every 3rd tweet ("But that's not the hardest part...")
33
+
34
+ Second-to-last tweet: [KEY TAKEAWAY — most shareable line in the entire thread]
35
+
36
+ Final Tweet: [CTA]
37
+ "If this was useful:
38
+ • RT the first tweet to share it
39
+ • Follow me for more on [topic]
40
+ • Reply with your biggest question"
41
+ ```
42
+
43
+ ## Guidelines
44
+
45
+ - **The hook tweet must work as a standalone post.** It appears in feeds without context; it must be compelling enough to make someone tap to read the full thread.
46
+ - Each tweet should deliver one clear, actionable or informative idea.
47
+ - Use cliffhangers to maintain scroll momentum: "But there's a catch...", "Here's where most people get it wrong..."
48
+ - Strong thread topics: personal stories with lessons, numbered frameworks, step-by-step tutorials, debunking myths.
49
+ - Vary tweet length — alternate between 1-line punches and 3-line paragraphs.
50
+ - Use images, screenshots, or charts for tweets that reference data or comparisons.
51
+ - The summary tweet (second-to-last) should be the most RT-able tweet in the thread.
52
+ - Schedule threads with a tool like Buffer or TweetDeck to go live at peak engagement hours.
53
+
54
+ ## Examples
55
+
56
+ **Opening tweet:**
57
+ ```
58
+ I grew a newsletter from 0 to 50,000 subscribers in 18 months with no paid ads.
59
+
60
+ Here's the exact playbook I'd use if I was starting over today:
61
+
62
+ 🧵
63
+ ```
64
+
65
+ **Mid-thread cliffhanger:**
66
+ ```
67
+ 7/ That strategy alone doubled my open rates.
68
+
69
+ But the biggest mistake I see creators make has nothing to do with content.
70
+
71
+ It's this 👇
72
+ ```
73
+
74
+ **Summary tweet:**
75
+ ```
76
+ 17/ Quick recap:
77
+
78
+ • Hook is the only thing that matters at first
79
+ • One platform, one format, until it works
80
+ • Email > followers
81
+ • Ship daily for 30 days before judging results
82
+ • Compounding beats viral every time
83
+ ```
84
+
85
+ **CTA tweet:**
86
+ ```
87
+ 18/ If this was useful:
88
+
89
+ → RT Tweet 1 to help someone else
90
+ → Follow @handle for one thread like this per week
91
+ → What topic should I cover next? Drop it below 👇
92
+ ```
@@ -0,0 +1,95 @@
1
+ ---
2
+ platform: whatsapp
3
+ format: broadcast
4
+ constraints:
5
+ max_chars: 4096
6
+ image_ratio: null
7
+ max_hashtags: null
8
+ ---
9
+
10
+ # Best Practices: WhatsApp — Broadcast Message
11
+
12
+ ## Format Rules
13
+
14
+ - Message length: under 300 words for broadcasts; under 150 words for promotional messages
15
+ - Character limit: 4096 characters per message
16
+ - WhatsApp Business API: supports text, images, documents, and approved message templates
17
+ - Template messages (HSM): must be pre-approved by Meta for outbound messaging to opted-in contacts
18
+ - Emojis: supported and expected — they increase readability and warmth in this channel
19
+ - Media: images (JPEG/PNG, max 5MB), documents (PDF, max 100MB), video (MP4, max 16MB)
20
+ - Opt-in: GDPR/LGPD compliance requires explicit opt-in before any broadcast
21
+
22
+ ## Structure
23
+
24
+ ```
25
+ [GREETING — personalized opener]
26
+ "Hi {first_name} 👋"
27
+
28
+ [CONTEXT — 1 sentence]
29
+ Brief, warm reference to why you're messaging
30
+
31
+ [CORE MESSAGE — 2–4 short paragraphs]
32
+ - One idea per paragraph
33
+ - Use line breaks generously
34
+ - Emojis for visual hierarchy (not decoration)
35
+ - Bold text: *bold* using asterisks
36
+
37
+ [CTA — single, clear action]
38
+ - "Reply YES to confirm"
39
+ - "Tap the link below"
40
+ - "Reply with your question"
41
+
42
+ [LINK or ATTACHMENT — if applicable]
43
+ [Brand sign-off or contact info]
44
+ ```
45
+
46
+ ## Guidelines
47
+
48
+ - **WhatsApp is the most intimate digital channel.** Write like a trusted contact, not a brand — formal marketing language kills response rates.
49
+ - Keep lines short — 1–2 sentences each. WhatsApp is read on mobile; long lines are exhausting.
50
+ - Use emojis as visual bullets and to convey tone, but avoid overloading (max 1–2 per paragraph).
51
+ - Response window: WhatsApp Business API allows messaging contacts within 24 hours of their last message; templates are required outside this window.
52
+ - Never send broadcast messages without explicit opt-in — WhatsApp bans accounts for spam complaints.
53
+ - Broadcast vs. group: broadcasts are sent individually (recipient sees it as a direct message); use groups only for community-style communication.
54
+ - Timing: avoid sending between 10 PM and 8 AM local time. Mid-morning (10–11 AM) and early evening (7–8 PM) see highest read rates.
55
+ - Always include an opt-out instruction: "Reply STOP to unsubscribe."
56
+
57
+ ## Examples
58
+
59
+ **Promotional broadcast:**
60
+ ```
61
+ Hi {first_name} 👋
62
+
63
+ It's [Brand Name] here.
64
+
65
+ We just launched something you asked for — and it's live today only. 🚀
66
+
67
+ ✅ [Feature/Product name]
68
+ ✅ [Key benefit 1]
69
+ ✅ [Key benefit 2]
70
+
71
+ Available until midnight tonight.
72
+
73
+ 👉 [link]
74
+
75
+ Questions? Just reply here.
76
+
77
+ — [Team Name]
78
+
79
+ _Reply STOP to unsubscribe._
80
+ ```
81
+
82
+ **Appointment reminder:**
83
+ ```
84
+ Hi {first_name},
85
+
86
+ Just a reminder that your appointment with [Name] is confirmed for:
87
+
88
+ 📅 *{date}*
89
+ 🕐 *{time}*
90
+ 📍 *{location or link}*
91
+
92
+ Need to reschedule? Reply here and we'll sort it out.
93
+
94
+ See you soon! 😊
95
+ ```
@@ -0,0 +1,80 @@
1
+ ---
2
+ platform: youtube
3
+ format: video-script
4
+ constraints:
5
+ max_chars: null
6
+ image_ratio: "16:9"
7
+ max_hashtags: null
8
+ ---
9
+
10
+ # Best Practices: YouTube — Video Script
11
+
12
+ ## Format Rules
13
+
14
+ - Aspect ratio: 16:9 (1920x1080px minimum; 4K preferred for future-proofing)
15
+ - Thumbnail: 1280x720px, high contrast, legible text under 6 words, faces with visible emotion perform best
16
+ - Title: 60–70 characters for full visibility in search results
17
+ - Description: first 150 characters shown in search; include primary keyword in first line
18
+ - Chapters (timestamps) in description significantly improve watch time and SEO
19
+ - Cards and end screens should be added in editor (script the verbal CTA at minute 1 and at the end)
20
+
21
+ ## Structure
22
+
23
+ ```
24
+ [0:00–0:30 — HOOK]
25
+ - Open with the payoff: show the result, state the controversial claim, or pose the problem
26
+ - Do NOT start with "Hey guys, welcome back..."
27
+ - Say: "By the end of this video, you will [specific outcome]"
28
+
29
+ [0:30–2:00 — SETUP]
30
+ - Why this topic matters now
31
+ - Briefly establish your credibility on this topic (1–2 sentences)
32
+ - Verbal chapter preview: "First we'll cover X, then Y, then I'll show you exactly how to Z"
33
+
34
+ [2:00–END-2:00 — MAIN CONTENT]
35
+ - Divide into 3–5 chapters
36
+ - Each chapter: one clear idea, one example, one actionable takeaway
37
+ - Include B-roll cues in brackets: [show screen recording], [cut to example]
38
+ - At 1/3 and 2/3 mark: soft re-hook ("If you're still with me, here's the part most people miss...")
39
+
40
+ [END-2:00–END — CTA + OUTRO]
41
+ - Verbal subscribe ask: "If this helped, subscribe — I post [frequency] on [topic]"
42
+ - Next video teaser: "In the next video, I'm going to show you..."
43
+ - End screen: 20 seconds of outro with video recommendation card visible
44
+ ```
45
+
46
+ ## Guidelines
47
+
48
+ - **Retention is the primary metric.** YouTube ranks videos based on watch time percentage and absolute watch hours.
49
+ - Write scripts at a slightly higher pace than you speak naturally — you'll slow down in delivery.
50
+ - Hook must deliver on the thumbnail and title promise within 30 seconds or risk high early drop-off.
51
+ - Use pattern interrupts every 90–120 seconds: cut to a different camera angle, show a graphic, change tone.
52
+ - Write conversationally — use contractions, second-person ("you"), and short sentences.
53
+ - Include a soft CTA at the 1-minute mark: "Subscribe so you don't miss the next part."
54
+ - Research the top 5 ranked videos for your target keyword and structure your video to be more comprehensive.
55
+ - Add manual closed captions or accurate auto-captions — they improve search indexing and accessibility.
56
+
57
+ ## Examples
58
+
59
+ **Hook script:**
60
+ ```
61
+ [Open on result screen or dramatic visual]
62
+
63
+ "Most people waste months trying to figure this out on their own. I'm going to save you all of that time in the next 12 minutes."
64
+
65
+ [Cut to camera]
66
+
67
+ "Welcome. In this video, you'll learn exactly how to [specific outcome], step by step, even if you're starting from zero."
68
+ ```
69
+
70
+ **Chapter transition:**
71
+ ```
72
+ "Okay, so now you know [chapter 1 takeaway]. But here's where it gets really interesting — and this is the part most tutorials skip entirely..."
73
+ ```
74
+
75
+ **End screen CTA:**
76
+ ```
77
+ "If you got value from this, the subscribe button is right there — it doesn't cost anything and it helps the channel grow.
78
+
79
+ And if you want to go deeper on [related topic], that video is right here. I'll see you in the next one."
80
+ ```