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.
- package/assets/agents/_catalog.yaml +11 -0
- package/assets/agents/commercial/account-executive.agent.md +41 -0
- package/assets/agents/commercial/crm-manager.agent.md +41 -0
- package/assets/agents/commercial/pricing-strategist.agent.md +41 -0
- package/assets/agents/commercial/proposal-writer.agent.md +41 -0
- package/assets/agents/commercial/sdr.agent.md +41 -0
- package/assets/agents/development/backend-developer.agent.md +42 -0
- package/assets/agents/development/code-reviewer.agent.md +41 -0
- package/assets/agents/development/devops-engineer.agent.md +41 -0
- package/assets/agents/development/frontend-developer.agent.md +92 -0
- package/assets/agents/development/product-manager.agent.md +41 -0
- package/assets/agents/development/qa-engineer.agent.md +41 -0
- package/assets/agents/development/tech-lead.agent.md +42 -0
- package/assets/agents/development/ux-design-expert.agent.md +108 -0
- package/assets/agents/marketing/brand-guardian.agent.md +40 -0
- package/assets/agents/marketing/content-creator.agent.md +41 -0
- package/assets/agents/marketing/email-marketing.agent.md +41 -0
- package/assets/agents/marketing/landing-page-builder.agent.md +73 -0
- package/assets/agents/marketing/marketing-analyst.agent.md +41 -0
- package/assets/agents/marketing/paid-ads-manager.agent.md +41 -0
- package/assets/agents/marketing/seo-specialist.agent.md +41 -0
- package/assets/agents/marketing/social-media-manager.agent.md +41 -0
- package/assets/core/best-practices/_catalog.yaml +85 -0
- package/assets/core/best-practices/api-documentation.md +137 -0
- package/assets/core/best-practices/blog-post.md +86 -0
- package/assets/core/best-practices/blog-seo.md +91 -0
- package/assets/core/best-practices/code-review.md +97 -0
- package/assets/core/best-practices/copywriting.md +75 -0
- package/assets/core/best-practices/data-analysis.md +93 -0
- package/assets/core/best-practices/deploy-checklist.md +99 -0
- package/assets/core/best-practices/email-newsletter.md +84 -0
- package/assets/core/best-practices/email-sales.md +91 -0
- package/assets/core/best-practices/image-design.md +78 -0
- package/assets/core/best-practices/instagram-feed.md +70 -0
- package/assets/core/best-practices/instagram-reels.md +75 -0
- package/assets/core/best-practices/instagram-stories.md +68 -0
- package/assets/core/best-practices/landing-page.md +279 -0
- package/assets/core/best-practices/linkedin-article.md +83 -0
- package/assets/core/best-practices/linkedin-post.md +84 -0
- package/assets/core/best-practices/researching.md +89 -0
- package/assets/core/best-practices/review.md +95 -0
- package/assets/core/best-practices/sprint-planning.md +91 -0
- package/assets/core/best-practices/strategist.md +95 -0
- package/assets/core/best-practices/technical-writing.md +104 -0
- package/assets/core/best-practices/twitter-post.md +75 -0
- package/assets/core/best-practices/twitter-thread.md +92 -0
- package/assets/core/best-practices/whatsapp-broadcast.md +95 -0
- package/assets/core/best-practices/youtube-script.md +80 -0
- package/assets/core/best-practices/youtube-shorts.md +76 -0
- package/assets/core/prompts/insight-hunter.prompt.md +62 -0
- package/assets/core/runner.pipeline.md +117 -0
- package/assets/core/skills.engine.md +65 -0
- package/assets/core/solution-architect.agent.md +181 -0
- package/assets/templates/_expxagents/_memory/company.md +25 -0
- package/assets/templates/_expxagents/_memory/preferences.md +6 -0
- package/assets/templates/squads/_memory/memories.md +16 -0
- package/bin/expxagents.js +3 -0
- package/dist/cli/src/__tests__/cli.test.d.ts +1 -0
- package/dist/cli/src/__tests__/cli.test.js +23 -0
- package/dist/cli/src/commands/create.d.ts +1 -0
- package/dist/cli/src/commands/create.js +53 -0
- package/dist/cli/src/commands/doctor.d.ts +1 -0
- package/dist/cli/src/commands/doctor.js +86 -0
- package/dist/cli/src/commands/init.d.ts +1 -0
- package/dist/cli/src/commands/init.js +164 -0
- package/dist/cli/src/commands/install.d.ts +1 -0
- package/dist/cli/src/commands/install.js +65 -0
- package/dist/cli/src/commands/list.d.ts +1 -0
- package/dist/cli/src/commands/list.js +58 -0
- package/dist/cli/src/commands/onboarding.d.ts +1 -0
- package/dist/cli/src/commands/onboarding.js +39 -0
- package/dist/cli/src/commands/run.d.ts +1 -0
- package/dist/cli/src/commands/run.js +226 -0
- package/dist/cli/src/commands/server.d.ts +1 -0
- package/dist/cli/src/commands/server.js +22 -0
- package/dist/cli/src/commands/stop.d.ts +1 -0
- package/dist/cli/src/commands/stop.js +23 -0
- package/dist/cli/src/commands/uninstall.d.ts +1 -0
- package/dist/cli/src/commands/uninstall.js +12 -0
- package/dist/cli/src/index.d.ts +1 -0
- package/dist/cli/src/index.js +57 -0
- package/dist/cli/src/utils/config.d.ts +34 -0
- package/dist/cli/src/utils/config.js +79 -0
- package/dist/core/skills-loader.d.ts +16 -0
- package/dist/core/skills-loader.js +61 -0
- package/dist/core/squad-loader.d.ts +26 -0
- package/dist/core/squad-loader.js +51 -0
- package/dist/core/state-manager.d.ts +45 -0
- package/dist/core/state-manager.js +90 -0
- package/dist/core/vitest.config.d.ts +2 -0
- package/dist/core/vitest.config.js +7 -0
- package/package.json +49 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
---
|
|
2
|
+
platform: email
|
|
3
|
+
format: newsletter
|
|
4
|
+
constraints:
|
|
5
|
+
max_chars: null
|
|
6
|
+
image_ratio: "600px-wide"
|
|
7
|
+
max_hashtags: null
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Best Practices: Email — Newsletter
|
|
11
|
+
|
|
12
|
+
## Format Rules
|
|
13
|
+
|
|
14
|
+
- Subject line: 30–50 characters (mobile preview shows ~35 chars); avoid ALL CAPS and excessive punctuation
|
|
15
|
+
- Preview text: 40–90 characters; extends the subject line narrative
|
|
16
|
+
- Email width: 600px maximum for universal client rendering
|
|
17
|
+
- Images: inline 600px wide; always include alt text for image-disabled clients
|
|
18
|
+
- CTA buttons: minimum 44px height, 200px width; one primary CTA per section
|
|
19
|
+
- Unsubscribe link: legally required (CAN-SPAM, GDPR) — include in footer
|
|
20
|
+
- Plain text version: required alongside HTML for deliverability and accessibility
|
|
21
|
+
- Send frequency: weekly or bi-weekly performs best for engagement; daily acceptable for daily-format newsletters
|
|
22
|
+
|
|
23
|
+
## Structure
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
[FROM NAME] — Personal name or brand name (not "noreply@")
|
|
27
|
+
[SUBJECT LINE] — Curiosity or value, not clickbait
|
|
28
|
+
[PREVIEW TEXT] — Sentence that completes the subject line's promise
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
[HEADER]
|
|
33
|
+
- Logo or brand name
|
|
34
|
+
- Issue number or date (builds ritual habit)
|
|
35
|
+
|
|
36
|
+
[GREETING]
|
|
37
|
+
- "Hi [First Name]," or "Hey," for conversational newsletters
|
|
38
|
+
|
|
39
|
+
[INTRO — 2–3 sentences]
|
|
40
|
+
- What's in this issue and why it matters
|
|
41
|
+
|
|
42
|
+
[SECTION 1 — Main Story / Primary Value]
|
|
43
|
+
- 150–300 words
|
|
44
|
+
- One CTA button: [Read More] or [Get Access]
|
|
45
|
+
|
|
46
|
+
[SECTION 2 — Secondary Content]
|
|
47
|
+
- Curated link, quick tip, or community highlight
|
|
48
|
+
- 50–100 words
|
|
49
|
+
|
|
50
|
+
[SECTION 3 — Optional: sponsor or product mention]
|
|
51
|
+
- Clearly labeled "Sponsored" or "From our partners"
|
|
52
|
+
|
|
53
|
+
[FOOTER]
|
|
54
|
+
- Unsubscribe | Preferences | View in browser
|
|
55
|
+
- Mailing address (required legally)
|
|
56
|
+
- Social links
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Guidelines
|
|
60
|
+
|
|
61
|
+
- **Subject line determines open rate.** Split test at least 2 subject lines per send with 20%/20%/60% splits.
|
|
62
|
+
- Use the reader's first name in the subject line sparingly — it works but loses impact if overused.
|
|
63
|
+
- One primary CTA per email. Multiple equally-weighted CTAs reduce clicks on all of them.
|
|
64
|
+
- Write in a consistent voice that matches a specific, recognizable personality. Subscribers subscribe to a person, not a publication.
|
|
65
|
+
- Send at consistent times and days — subscribers form habits around your send schedule.
|
|
66
|
+
- Re-engagement campaigns: email inactive subscribers (90+ days) with a re-confirm or goodbye sequence before purging.
|
|
67
|
+
- Maintain list hygiene: remove hard bounces immediately; suppress soft bounces after 3 failures.
|
|
68
|
+
- Deliverability: authenticate with SPF, DKIM, and DMARC; avoid spam trigger words; maintain list quality.
|
|
69
|
+
|
|
70
|
+
## Examples
|
|
71
|
+
|
|
72
|
+
**Subject line formulas:**
|
|
73
|
+
- "[Number] things I learned from [unusual experience]"
|
|
74
|
+
- "The [adjective] guide to [topic] (in 5 minutes)"
|
|
75
|
+
- "Quick question for you..."
|
|
76
|
+
- "[First Name], you might want to see this"
|
|
77
|
+
|
|
78
|
+
**Preview text that extends the subject:**
|
|
79
|
+
- Subject: "We need to talk about your content strategy"
|
|
80
|
+
- Preview: "...because most people are building on the wrong foundation."
|
|
81
|
+
|
|
82
|
+
**CTA button copy (strong vs. weak):**
|
|
83
|
+
- Strong: "Get the free template", "Watch the 10-minute walkthrough", "Join 12,000 readers"
|
|
84
|
+
- Weak: "Click here", "Learn more", "Submit"
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
platform: email
|
|
3
|
+
format: sales
|
|
4
|
+
constraints:
|
|
5
|
+
max_chars: null
|
|
6
|
+
image_ratio: null
|
|
7
|
+
max_hashtags: null
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Best Practices: Email — Sales Email
|
|
11
|
+
|
|
12
|
+
## Format Rules
|
|
13
|
+
|
|
14
|
+
- Subject line: 6–10 words; curiosity or benefit-forward; never misleading
|
|
15
|
+
- Length: 100–300 words for cold outreach; 300–600 for warm/nurture sequences
|
|
16
|
+
- Paragraphs: 1–3 sentences each; wide white space between paragraphs
|
|
17
|
+
- One CTA: one link or one ask per email — not multiple options
|
|
18
|
+
- Personalization tokens: {first_name}, {company_name}, {role} at minimum
|
|
19
|
+
- Signature: real name, role, company, phone number, and one social link
|
|
20
|
+
- Images: minimal (can trigger spam filters); avoid in cold outreach
|
|
21
|
+
|
|
22
|
+
## Structure — AIDA Framework
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
[SUBJECT LINE — curiosity or specific benefit]
|
|
26
|
+
|
|
27
|
+
Hi {first_name},
|
|
28
|
+
|
|
29
|
+
[ATTENTION — 1–2 sentences]
|
|
30
|
+
- Specific, relevant hook: reference their company, a pain point, or a trigger event
|
|
31
|
+
- NOT: "My name is X and I work at Y..."
|
|
32
|
+
|
|
33
|
+
[INTEREST — 2–3 sentences]
|
|
34
|
+
- Explain the problem you solve in concrete, non-jargon terms
|
|
35
|
+
- Use numbers and specificity where possible: "We help [target persona] achieve [result] in [timeframe]"
|
|
36
|
+
|
|
37
|
+
[DESIRE — 2–3 sentences]
|
|
38
|
+
- Social proof: a customer name, outcome, or case study result
|
|
39
|
+
- "We recently helped [similar company] [specific outcome]"
|
|
40
|
+
|
|
41
|
+
[ACTION — 1 sentence]
|
|
42
|
+
- Clear, low-friction ask
|
|
43
|
+
- "Would you be open to a 15-minute call on Thursday or Friday?"
|
|
44
|
+
- Avoid: "Let me know if you're interested" (too vague, puts effort on recipient)
|
|
45
|
+
|
|
46
|
+
[SIGNATURE]
|
|
47
|
+
{sender_name}
|
|
48
|
+
{role} at {company}
|
|
49
|
+
{phone}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Guidelines
|
|
53
|
+
|
|
54
|
+
- **The goal of every sales email is one thing: the reply.** Not the sale — the conversation.
|
|
55
|
+
- Cold email subject lines should not look like marketing emails. They should look like emails from a person.
|
|
56
|
+
- Personalize beyond {first_name}: reference a recent blog post, funding round, job posting, or product change.
|
|
57
|
+
- Keep the first email short (under 150 words for cold). Earn the right to say more.
|
|
58
|
+
- Follow-up sequence: 4–6 touches across 2–3 weeks. Persistence closes deals; abandonment is the #1 failure.
|
|
59
|
+
- Never guilt-trip in follow-ups. Add new value: a case study, a relevant article, an offer.
|
|
60
|
+
- A/B test: subject line, CTA wording, opening line, and send time.
|
|
61
|
+
- Measure reply rate, not just open rate. Opens are vanity; replies are pipeline.
|
|
62
|
+
|
|
63
|
+
## Examples
|
|
64
|
+
|
|
65
|
+
**Cold outreach email:**
|
|
66
|
+
```
|
|
67
|
+
Subject: Idea for {company_name}'s onboarding flow
|
|
68
|
+
|
|
69
|
+
Hi {first_name},
|
|
70
|
+
|
|
71
|
+
I noticed {company_name} recently launched [feature/product] — congrats on the release.
|
|
72
|
+
|
|
73
|
+
I work with SaaS teams to reduce onboarding drop-off after signup. One of our clients, [Company], cut their time-to-activation by 40% in 6 weeks using a method I'd love to walk you through.
|
|
74
|
+
|
|
75
|
+
Would a 15-minute call this week or next work for you?
|
|
76
|
+
|
|
77
|
+
[Name]
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**Follow-up #2 (adding value):**
|
|
81
|
+
```
|
|
82
|
+
Subject: Re: Idea for {company_name}'s onboarding flow
|
|
83
|
+
|
|
84
|
+
Hi {first_name},
|
|
85
|
+
|
|
86
|
+
Following up on my last note — I wanted to share a short case study from [similar company] that you might find relevant: [link]
|
|
87
|
+
|
|
88
|
+
Happy to apply the same approach to {company_name}. Worth a quick call?
|
|
89
|
+
|
|
90
|
+
[Name]
|
|
91
|
+
```
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
---
|
|
2
|
+
platform: universal
|
|
3
|
+
format: image-design
|
|
4
|
+
constraints:
|
|
5
|
+
max_chars: null
|
|
6
|
+
image_ratio: null
|
|
7
|
+
max_hashtags: null
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Best Practices: Image Design
|
|
11
|
+
|
|
12
|
+
## Core Principles
|
|
13
|
+
|
|
14
|
+
Visual content communicates faster than text and sets the first impression. Every image asset should be intentional in its composition, on-brand in its aesthetics, and technically optimized for its delivery platform.
|
|
15
|
+
|
|
16
|
+
- **Purpose first.** Ask: what should the viewer feel, understand, or do as a result of seeing this image?
|
|
17
|
+
- **Brand cohesion.** Consistent color palette, typography, and visual style create recognition across touchpoints.
|
|
18
|
+
- **Technical precision.** Deliver at the correct dimensions, resolution, and file format for each platform.
|
|
19
|
+
|
|
20
|
+
## Technical Specifications by Platform
|
|
21
|
+
|
|
22
|
+
| Platform | Format | Dimensions | Max File Size |
|
|
23
|
+
|----------|--------|------------|---------------|
|
|
24
|
+
| Instagram Feed | Square | 1080x1080px | 8MB |
|
|
25
|
+
| Instagram Feed | Portrait | 1080x1350px | 8MB |
|
|
26
|
+
| Instagram Stories / Reels | Vertical | 1080x1920px | 30MB |
|
|
27
|
+
| LinkedIn Feed | Horizontal | 1200x627px | 5MB |
|
|
28
|
+
| Twitter/X | Horizontal | 1200x675px | 5MB |
|
|
29
|
+
| YouTube Thumbnail | Horizontal | 1280x720px | 2MB |
|
|
30
|
+
| YouTube Shorts | Vertical | 1080x1920px | — |
|
|
31
|
+
| Blog Featured | Horizontal | 1200x628px | < 200KB (web) |
|
|
32
|
+
| Email Banner | Horizontal | 600x200px | < 100KB |
|
|
33
|
+
| WhatsApp | Any | Max 1600px wide | 5MB |
|
|
34
|
+
|
|
35
|
+
## Design Structure
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
[BRAND LAYER]
|
|
39
|
+
- Color palette: 2–3 primary colors; 1–2 accent colors
|
|
40
|
+
- Typography: 1 display font (headlines), 1 body font (captions)
|
|
41
|
+
- Logo position: consistent corner placement at consistent size
|
|
42
|
+
|
|
43
|
+
[HIERARCHY LAYER]
|
|
44
|
+
- Focal point: one dominant element that the eye lands on first
|
|
45
|
+
- Secondary elements: support without competing
|
|
46
|
+
- Negative space: intentional emptiness that prevents visual noise
|
|
47
|
+
|
|
48
|
+
[TEXT OVERLAY (if applicable)]
|
|
49
|
+
- Max 20% of image area covered by text (for ad approval compliance)
|
|
50
|
+
- Minimum font size: 24px for mobile readability
|
|
51
|
+
- Text contrast: 4.5:1 minimum ratio against background (WCAG AA)
|
|
52
|
+
|
|
53
|
+
[CTA LAYER (for ads/promotional assets)]
|
|
54
|
+
- Button or arrow graphic indicating next action
|
|
55
|
+
- Urgency element (countdown, "Limited", "Free")
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Guidelines
|
|
59
|
+
|
|
60
|
+
- Use a 3-column, 3-row grid as the foundation for composition (rule of thirds).
|
|
61
|
+
- High-contrast images perform better in feed environments — busy backgrounds cause content to disappear.
|
|
62
|
+
- Real people and faces drive significantly more engagement than illustrations or product-only shots.
|
|
63
|
+
- Accessible color contrast: use WebAIM Contrast Checker to verify text legibility.
|
|
64
|
+
- Deliver web images as WebP (lossy compression, smaller files than JPEG at equivalent quality).
|
|
65
|
+
- Maintain a master asset library with source files (Figma, Adobe) separate from exported deliverables.
|
|
66
|
+
- Always include descriptive alt text when images are published digitally.
|
|
67
|
+
- Test image performance: A/B test thumbnail variations using a 50/50 split for 48 hours before choosing a winner.
|
|
68
|
+
|
|
69
|
+
## File Format Guide
|
|
70
|
+
|
|
71
|
+
| Use Case | Format | Reason |
|
|
72
|
+
|----------|--------|--------|
|
|
73
|
+
| Photos with no transparency | JPEG / WebP | Smallest file size |
|
|
74
|
+
| Logos, icons, graphics | PNG-24 | Lossless + transparency |
|
|
75
|
+
| Animated graphics | GIF / WebP (animated) | Cross-platform animated |
|
|
76
|
+
| Web images | WebP | Best quality-to-size ratio |
|
|
77
|
+
| Print | TIFF / PDF | Lossless, print-ready |
|
|
78
|
+
| Social media | JPEG or PNG | Universal compatibility |
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
---
|
|
2
|
+
platform: instagram
|
|
3
|
+
format: feed-post
|
|
4
|
+
constraints:
|
|
5
|
+
max_chars: 2200
|
|
6
|
+
image_ratio: "1:1"
|
|
7
|
+
max_hashtags: 30
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Best Practices: Instagram — Feed Post
|
|
11
|
+
|
|
12
|
+
## Format Rules
|
|
13
|
+
|
|
14
|
+
- Caption limit: 2200 characters (only the first ~125 shown before "more")
|
|
15
|
+
- Image aspect ratio: 1:1 (square) preferred; 4:5 portrait also supported; 1.91:1 landscape accepted
|
|
16
|
+
- Resolution: minimum 1080x1080px for square; 1080x1350px for portrait
|
|
17
|
+
- Hashtags: up to 30 allowed; 5–15 is the effective sweet spot
|
|
18
|
+
- Emojis count toward character limit
|
|
19
|
+
- First line must hook — it appears in the feed preview
|
|
20
|
+
|
|
21
|
+
## Structure
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
[HOOK LINE — 1 punchy sentence]
|
|
25
|
+
|
|
26
|
+
[BODY — 3 to 6 short paragraphs, each 1–3 lines]
|
|
27
|
+
- Break up text with line breaks (double return)
|
|
28
|
+
- Use emojis sparingly to guide the eye
|
|
29
|
+
- End with a question or call-to-action
|
|
30
|
+
|
|
31
|
+
[CTA — direct instruction: "Save this", "Tag a friend", "Link in bio"]
|
|
32
|
+
|
|
33
|
+
[HASHTAGS — either inline or grouped at end, 5–15 relevant tags]
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Guidelines
|
|
37
|
+
|
|
38
|
+
- **Hook is everything.** The first line determines whether the reader taps "more."
|
|
39
|
+
- Write for skimmability: short paragraphs, clear breaks, bold ideas stated plainly.
|
|
40
|
+
- Avoid engagement-bait phrases ("double tap if you agree") — they violate Instagram policies.
|
|
41
|
+
- Mix broad hashtags (1M+ posts) with niche ones (10K–100K) for optimal reach.
|
|
42
|
+
- Post carousel posts (up to 10 slides) for significantly higher engagement than single images.
|
|
43
|
+
- Alt text should describe the image for accessibility and SEO.
|
|
44
|
+
- Geo-tagging and product tags increase discovery.
|
|
45
|
+
- Best posting times: weekdays 11 AM–1 PM and 7–9 PM (audience's local time).
|
|
46
|
+
|
|
47
|
+
## Examples
|
|
48
|
+
|
|
49
|
+
**Hook variants:**
|
|
50
|
+
- "3 years ago I had zero clients. Here's what changed."
|
|
51
|
+
- "Most people skip this step — and wonder why nothing works."
|
|
52
|
+
- "Hot take: consistency beats creativity every single time."
|
|
53
|
+
|
|
54
|
+
**Full caption (condensed example):**
|
|
55
|
+
```
|
|
56
|
+
Nobody tells you content creation is 80% strategy and 20% execution.
|
|
57
|
+
|
|
58
|
+
Here's the framework that took me from 0 to 10K followers in 90 days:
|
|
59
|
+
|
|
60
|
+
1. Pick ONE topic and go deep
|
|
61
|
+
2. Post at least 4x per week
|
|
62
|
+
3. Study your top 3 competitors
|
|
63
|
+
4. Test hooks until one lands
|
|
64
|
+
|
|
65
|
+
The platform rewards clarity over cleverness.
|
|
66
|
+
|
|
67
|
+
Which step do you struggle with most? Drop it below.
|
|
68
|
+
|
|
69
|
+
#contentcreator #instagramgrowth #socialmediatips #creatoreconomy #digitalmarketing
|
|
70
|
+
```
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
---
|
|
2
|
+
platform: instagram
|
|
3
|
+
format: reels
|
|
4
|
+
constraints:
|
|
5
|
+
max_chars: 2200
|
|
6
|
+
image_ratio: "9:16"
|
|
7
|
+
max_hashtags: 30
|
|
8
|
+
max_duration_seconds: 90
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Best Practices: Instagram — Reels
|
|
12
|
+
|
|
13
|
+
## Format Rules
|
|
14
|
+
|
|
15
|
+
- Duration: 15–90 seconds (15–30s performs best for reach)
|
|
16
|
+
- Aspect ratio: 9:16 vertical (1080x1920px)
|
|
17
|
+
- Safe zone: keep text and faces within center 70% — edges may be cropped in previews
|
|
18
|
+
- Caption: same 2200-char limit as feed posts
|
|
19
|
+
- Trending audio increases distribution significantly
|
|
20
|
+
- First 3 seconds are the critical retention window
|
|
21
|
+
|
|
22
|
+
## Structure
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
[0–3s: HOOK FRAME]
|
|
26
|
+
- Visual surprise, bold text overlay, or direct address to camera
|
|
27
|
+
- No logos, intros, or branding in the first 3 seconds
|
|
28
|
+
|
|
29
|
+
[3–20s: SETUP / PROBLEM]
|
|
30
|
+
- State the topic or tension immediately
|
|
31
|
+
- Subtitles are mandatory (85% of Reels are watched on mute)
|
|
32
|
+
|
|
33
|
+
[20–60s: VALUE / PAYOFF]
|
|
34
|
+
- Deliver the promised value quickly
|
|
35
|
+
- Use jump cuts to maintain pace; avoid long static shots
|
|
36
|
+
|
|
37
|
+
[60–90s: CTA]
|
|
38
|
+
- "Follow for more", "Save this", "Share with someone who needs this"
|
|
39
|
+
- End card or text overlay recommended
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Guidelines
|
|
43
|
+
|
|
44
|
+
- **Use trending audio.** Find it via the Reels audio library (marked with an arrow icon). Lip-sync to trending sounds and overlay your own meaning.
|
|
45
|
+
- Add closed captions manually or via auto-captions for accessibility and watch time.
|
|
46
|
+
- Shoot vertically native — do not repost landscape content with black bars.
|
|
47
|
+
- Include a cover image that reads as a still photo in the grid.
|
|
48
|
+
- Avoid watermarks from TikTok or other platforms (Instagram penalizes recycled content).
|
|
49
|
+
- The algorithm prioritizes share rate and replays over likes. Create content people send to friends.
|
|
50
|
+
- Hooks categories that work: "Did you know...", before/after, tutorials, contrarian opinions.
|
|
51
|
+
|
|
52
|
+
## Examples
|
|
53
|
+
|
|
54
|
+
**Hook scripts (first 3 seconds):**
|
|
55
|
+
- [On screen text]: "Stop doing this on Instagram" [cut to list]
|
|
56
|
+
- [To camera]: "I made $10K in one month from one Reel. Here's the breakdown."
|
|
57
|
+
- [Visual]: Dramatic before/after transformation with no words — let curiosity drive it
|
|
58
|
+
|
|
59
|
+
**CTA variants:**
|
|
60
|
+
- "Follow me for one tip like this every week"
|
|
61
|
+
- "Save this so you don't forget"
|
|
62
|
+
- "Tag someone who needs to hear this"
|
|
63
|
+
|
|
64
|
+
**Caption structure:**
|
|
65
|
+
```
|
|
66
|
+
The strategy nobody's talking about for 2024.
|
|
67
|
+
|
|
68
|
+
I tested it for 30 days. Here's exactly what happened. 👇
|
|
69
|
+
|
|
70
|
+
[1–3 bullet summary]
|
|
71
|
+
|
|
72
|
+
Drop a comment if you want the full breakdown.
|
|
73
|
+
|
|
74
|
+
#reels #instagramreels #contentmarketing #growthhacking #creatortips
|
|
75
|
+
```
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
platform: instagram
|
|
3
|
+
format: stories
|
|
4
|
+
constraints:
|
|
5
|
+
max_chars: null
|
|
6
|
+
image_ratio: "9:16"
|
|
7
|
+
max_hashtags: 10
|
|
8
|
+
max_duration_seconds: 15
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Best Practices: Instagram — Stories
|
|
12
|
+
|
|
13
|
+
## Format Rules
|
|
14
|
+
|
|
15
|
+
- Duration: up to 15 seconds per story card; video auto-continues across multiple cards
|
|
16
|
+
- Aspect ratio: 9:16 (1080x1920px)
|
|
17
|
+
- Safe zones: keep critical content within the center 1080x1420px area (avoid top and bottom 250px used by UI chrome)
|
|
18
|
+
- Stories disappear after 24 hours unless saved to Highlights
|
|
19
|
+
- Stickers (polls, questions, sliders, countdowns) dramatically increase engagement
|
|
20
|
+
- Hashtag sticker: up to 10 tags; only 1 location sticker allowed
|
|
21
|
+
|
|
22
|
+
## Structure
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
Card 1: [HOOK / ATTENTION]
|
|
26
|
+
- Bold text or image that establishes the topic in under 2 seconds
|
|
27
|
+
- Works as a standalone even if viewer swipes past
|
|
28
|
+
|
|
29
|
+
Card 2–4: [CONTENT / VALUE]
|
|
30
|
+
- One idea per card
|
|
31
|
+
- Use text overlays on images or solid-color backgrounds with large text
|
|
32
|
+
- Keep sentences under 7 words per card
|
|
33
|
+
|
|
34
|
+
Card 5 (optional): [INTERACTION]
|
|
35
|
+
- Poll sticker: "Agree or disagree?"
|
|
36
|
+
- Question sticker: "Ask me anything"
|
|
37
|
+
- Quiz sticker: trivia related to your brand
|
|
38
|
+
|
|
39
|
+
Final Card: [CTA]
|
|
40
|
+
- "Swipe up" / "Link in bio" / "DM me the word [X]"
|
|
41
|
+
- Use countdown sticker for launches or deadlines
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Guidelines
|
|
45
|
+
|
|
46
|
+
- Design for tap-through speed — viewers tap quickly. Each card must communicate in under 2 seconds.
|
|
47
|
+
- Use brand colors, fonts, and consistent visual templates for recognition.
|
|
48
|
+
- Behind-the-scenes and "day in the life" content outperforms polished ads in Stories.
|
|
49
|
+
- Polls are the single highest-engagement sticker — use them to gather data AND boost algorithm reach.
|
|
50
|
+
- Respond to every poll reply and question reply — it drives DM relationships.
|
|
51
|
+
- Add your best story sets to Highlights with clear cover icons and descriptive titles.
|
|
52
|
+
- Stories are where you build intimacy; feed is where you build credibility.
|
|
53
|
+
|
|
54
|
+
## Examples
|
|
55
|
+
|
|
56
|
+
**Story sequence for a product drop:**
|
|
57
|
+
- Card 1: "Something big is coming tomorrow 👀" [countdown sticker]
|
|
58
|
+
- Card 2: Teaser image (blurred or cropped product)
|
|
59
|
+
- Card 3: Poll — "Are you ready? Yes / Not yet"
|
|
60
|
+
- Card 4: "Link drops at 9 AM. Set a reminder 👆"
|
|
61
|
+
|
|
62
|
+
**Engagement story sequence:**
|
|
63
|
+
- Card 1: "Real question for you..."
|
|
64
|
+
- Card 2: Question sticker — "What's your biggest struggle with [topic]?"
|
|
65
|
+
- Card 3: "I'll answer every single one in tomorrow's post"
|
|
66
|
+
|
|
67
|
+
**Highlight categories:**
|
|
68
|
+
- About, Services, Testimonials, FAQ, Behind the Scenes, Tutorials
|