claude-plugin-wordpress-manager 2.1.0 → 2.2.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/.claude-plugin/plugin.json +2 -2
- package/CHANGELOG.md +30 -0
- package/agents/wp-content-strategist.md +30 -0
- package/agents/wp-monitoring-agent.md +50 -0
- package/docs/GUIDE.md +249 -15
- package/docs/plans/2026-02-28-wcop-strategic-assessment.md +220 -0
- package/hooks/hooks.json +9 -0
- package/package.json +6 -3
- package/servers/wp-rest-bridge/build/tools/index.d.ts +119 -0
- package/servers/wp-rest-bridge/build/tools/index.js +3 -0
- package/servers/wp-rest-bridge/build/tools/wc-webhooks.d.ts +129 -0
- package/servers/wp-rest-bridge/build/tools/wc-webhooks.js +142 -0
- package/servers/wp-rest-bridge/build/types.d.ts +12 -0
- package/skills/wordpress-router/references/decision-tree.md +7 -3
- package/skills/wp-content/SKILL.md +3 -0
- package/skills/wp-content-repurposing/SKILL.md +96 -0
- package/skills/wp-content-repurposing/references/content-atomization.md +117 -0
- package/skills/wp-content-repurposing/references/email-newsletter.md +136 -0
- package/skills/wp-content-repurposing/references/platform-specs.md +80 -0
- package/skills/wp-content-repurposing/references/social-formats.md +169 -0
- package/skills/wp-content-repurposing/scripts/repurposing_inspect.mjs +140 -0
- package/skills/wp-headless/SKILL.md +1 -0
- package/skills/wp-monitoring/SKILL.md +12 -2
- package/skills/wp-monitoring/references/fleet-monitoring.md +160 -0
- package/skills/wp-monitoring/scripts/monitoring_inspect.mjs +54 -1
- package/skills/wp-webhooks/SKILL.md +107 -0
- package/skills/wp-webhooks/references/integration-recipes.md +176 -0
- package/skills/wp-webhooks/references/payload-formats.md +134 -0
- package/skills/wp-webhooks/references/webhook-security.md +147 -0
- package/skills/wp-webhooks/references/woocommerce-webhooks.md +129 -0
- package/skills/wp-webhooks/references/wordpress-core-webhooks.md +162 -0
- package/skills/wp-webhooks/scripts/webhook_inspect.mjs +157 -0
- package/skills/wp-woocommerce/SKILL.md +1 -0
|
@@ -233,6 +233,18 @@ export interface WCCoupon {
|
|
|
233
233
|
minimum_amount: string;
|
|
234
234
|
maximum_amount: string;
|
|
235
235
|
}
|
|
236
|
+
export interface WCWebhook {
|
|
237
|
+
id: number;
|
|
238
|
+
name: string;
|
|
239
|
+
status: string;
|
|
240
|
+
topic: string;
|
|
241
|
+
resource: string;
|
|
242
|
+
event: string;
|
|
243
|
+
delivery_url: string;
|
|
244
|
+
secret: string;
|
|
245
|
+
date_created: string;
|
|
246
|
+
date_modified: string;
|
|
247
|
+
}
|
|
236
248
|
export interface WPNetworkSite {
|
|
237
249
|
blog_id: number;
|
|
238
250
|
url: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Router decision tree (
|
|
1
|
+
# Router decision tree (v9 — development + local environment + operations + multisite + CI/CD + monitoring + webhooks + content repurposing)
|
|
2
2
|
|
|
3
3
|
This routing guide covers WordPress **development**, **local environment**, and **operations** workflows.
|
|
4
4
|
|
|
@@ -14,7 +14,7 @@ Keywords that indicate **local environment**:
|
|
|
14
14
|
local site, Studio, LocalWP, Local by Flywheel, wp-env, local WordPress, start site, stop site, create local site, local development, symlink plugin, local database, switch PHP version, localhost, local preview, detect environment, WASM, SQLite local
|
|
15
15
|
|
|
16
16
|
Keywords that indicate **operations**:
|
|
17
|
-
deploy, push to production, audit, security check, backup, restore, migrate, move site, create post, manage content, site status, check plugins, performance check, SEO audit, WooCommerce, prodotto, ordine, coupon, negozio, catalogo, inventario, vendite, carrello, multisite, network, sub-site, sub-sito, domain mapping, super admin, network activate, monitor, uptime, health report, trend, scansione periodica, alerting, performance baseline
|
|
17
|
+
deploy, push to production, audit, security check, backup, restore, migrate, move site, create post, manage content, site status, check plugins, performance check, SEO audit, WooCommerce, prodotto, ordine, coupon, negozio, catalogo, inventario, vendite, carrello, multisite, network, sub-site, sub-sito, domain mapping, super admin, network activate, monitor, uptime, health report, trend, scansione periodica, alerting, performance baseline, fleet, all sites, network health, cross-site, webhook, outbound notification, event propagation, Zapier, content sync, repurpose content, social posts from blog, content atomization, newsletter from posts, content distribution
|
|
18
18
|
|
|
19
19
|
Keywords that indicate **development**:
|
|
20
20
|
create block, block.json, theme.json, register_rest_route, plugin development, hooks, PHPStan, build, test, scaffold, i18n, translation, accessibility, a11y, headless, decoupled, WPGraphQL, CI, CD, pipeline, GitHub Actions, GitLab CI, deploy automatico, workflow, quality gate
|
|
@@ -92,8 +92,12 @@ Priority: `gutenberg` > `wp-core` > `wp-site` > `wp-block-theme` > `wp-block-plu
|
|
|
92
92
|
→ `wp-woocommerce` skill + `wp-ecommerce-manager` agent
|
|
93
93
|
- **Multisite / network / sub-sites / domain mapping / super admin / network activate**
|
|
94
94
|
→ `wp-multisite` skill + `wp-site-manager` agent
|
|
95
|
-
- **Monitor / uptime / health report / trend / scansione periodica / alerting / performance baseline / ongoing checks**
|
|
95
|
+
- **Monitor / uptime / health report / trend / scansione periodica / alerting / performance baseline / ongoing checks / fleet / all sites / cross-site comparison**
|
|
96
96
|
→ `wp-monitoring` skill + `wp-monitoring-agent` agent
|
|
97
|
+
- **Webhook / outbound notification / event propagation / Zapier / Make / n8n / content sync webhook**
|
|
98
|
+
→ `wp-webhooks` skill + `wp-site-manager` agent
|
|
99
|
+
- **Repurpose content / social posts from blog / newsletter from content / atomize / content distribution / turn blog into social**
|
|
100
|
+
→ `wp-content-repurposing` skill + `wp-content-strategist` agent
|
|
97
101
|
|
|
98
102
|
## Step 2c: route by local environment intent (keywords)
|
|
99
103
|
|
|
@@ -101,3 +101,6 @@ Tool: assign_terms_to_content — assign terms to content
|
|
|
101
101
|
### Reference Files
|
|
102
102
|
- **`references/content-templates.md`** - Templates for different content types
|
|
103
103
|
- **`references/seo-optimization.md`** - On-page SEO patterns for WordPress
|
|
104
|
+
|
|
105
|
+
### Related Skills
|
|
106
|
+
- **`wp-content-repurposing`** — transform existing content for social media, email, and multi-channel distribution
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: wp-content-repurposing
|
|
3
|
+
description: This skill should be used when the user asks to "repurpose content",
|
|
4
|
+
"create social posts from blog", "transform content for social media", "email
|
|
5
|
+
newsletter from posts", "content atomization", "reuse content across channels",
|
|
6
|
+
"adapt content for different platforms", "turn blog into social", "content
|
|
7
|
+
distribution", or mentions turning WordPress content into multi-format outputs.
|
|
8
|
+
version: 1.0.0
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# WordPress Content Repurposing Skill
|
|
12
|
+
|
|
13
|
+
## Overview
|
|
14
|
+
|
|
15
|
+
Content repurposing is the systematic transformation of canonical WordPress content into channel-specific formats. Instead of creating original content for each platform, you extract value from existing posts, pages, and products and reshape it for social media, email newsletters, ad copy, and other distribution channels.
|
|
16
|
+
|
|
17
|
+
## When to Use
|
|
18
|
+
|
|
19
|
+
- User has existing WordPress content and wants to distribute it across channels
|
|
20
|
+
- User asks to turn blog posts into social media content
|
|
21
|
+
- User wants to create email newsletters from existing content
|
|
22
|
+
- User needs to atomize long-form content into smaller shareable pieces
|
|
23
|
+
- User wants platform-specific content variants from a single source
|
|
24
|
+
|
|
25
|
+
## Content Repurposing vs Content Creation
|
|
26
|
+
|
|
27
|
+
| Need | Skill |
|
|
28
|
+
|------|-------|
|
|
29
|
+
| Create new original content from scratch | `wp-content` |
|
|
30
|
+
| Transform existing content for new channels | `wp-content-repurposing` (this skill) |
|
|
31
|
+
| SEO-optimized blog post creation | `wp-content` |
|
|
32
|
+
| Blog post → social thread + email digest | `wp-content-repurposing` (this skill) |
|
|
33
|
+
|
|
34
|
+
## Decision Tree
|
|
35
|
+
|
|
36
|
+
1. **What output format?**
|
|
37
|
+
- "social posts" / "Twitter thread" / "LinkedIn" / "Instagram" → Social formats (Section 1)
|
|
38
|
+
- "email" / "newsletter" / "digest" → Email newsletter (Section 2)
|
|
39
|
+
- "atomize" / "break down" / "content calendar" → Content atomization (Section 3)
|
|
40
|
+
- "character limits" / "platform specs" / "image sizes" → Platform specifications (Section 4)
|
|
41
|
+
|
|
42
|
+
2. **Run detection first:**
|
|
43
|
+
```bash
|
|
44
|
+
node skills/wp-content-repurposing/scripts/repurposing_inspect.mjs [--cwd=/path/to/project]
|
|
45
|
+
```
|
|
46
|
+
This identifies existing content volume, social plugins, and email integrations.
|
|
47
|
+
|
|
48
|
+
## Repurposing Areas
|
|
49
|
+
|
|
50
|
+
### Section 1: Social Formats
|
|
51
|
+
See `references/social-formats.md`
|
|
52
|
+
- Blog post → Twitter/X thread
|
|
53
|
+
- Blog post → LinkedIn article summary
|
|
54
|
+
- Blog post → Instagram carousel
|
|
55
|
+
- Blog post → Facebook engagement post
|
|
56
|
+
- Product → social proof posts
|
|
57
|
+
|
|
58
|
+
### Section 2: Email Newsletter
|
|
59
|
+
See `references/email-newsletter.md`
|
|
60
|
+
- Blog post → newsletter digest
|
|
61
|
+
- Product launch → email announcement
|
|
62
|
+
- Content series → drip sequence
|
|
63
|
+
- Subject line and CTA optimization
|
|
64
|
+
|
|
65
|
+
### Section 3: Content Atomization
|
|
66
|
+
See `references/content-atomization.md`
|
|
67
|
+
- Pillar content → atomic units (quotes, stats, tips)
|
|
68
|
+
- Atomization workflow and content calendar
|
|
69
|
+
- Repurposing matrix (1 post → 5-10 outputs)
|
|
70
|
+
- Quality gates for standalone value
|
|
71
|
+
|
|
72
|
+
### Section 4: Platform Specifications
|
|
73
|
+
See `references/platform-specs.md`
|
|
74
|
+
- Character limits per platform
|
|
75
|
+
- Image dimensions per platform
|
|
76
|
+
- Hashtag and link strategies
|
|
77
|
+
- Posting frequency recommendations
|
|
78
|
+
|
|
79
|
+
## Reference Files
|
|
80
|
+
|
|
81
|
+
| File | Content |
|
|
82
|
+
|------|---------|
|
|
83
|
+
| `references/social-formats.md` | Templates for Twitter, LinkedIn, Instagram, Facebook |
|
|
84
|
+
| `references/email-newsletter.md` | Newsletter digest, drip sequences, subject lines |
|
|
85
|
+
| `references/content-atomization.md` | Atomization workflow, content calendar, repurposing matrix |
|
|
86
|
+
| `references/platform-specs.md` | Character limits, image sizes, posting frequency |
|
|
87
|
+
|
|
88
|
+
## Recommended Agent
|
|
89
|
+
|
|
90
|
+
**`wp-content-strategist`** — selects source content via WP REST Bridge, extracts key elements, applies platform templates, and generates formatted outputs for review.
|
|
91
|
+
|
|
92
|
+
## Related Skills
|
|
93
|
+
|
|
94
|
+
- **`wp-content`** — content creation and lifecycle management (source content)
|
|
95
|
+
- **`wp-headless`** — headless content delivery for multi-channel architectures
|
|
96
|
+
- **`wp-woocommerce`** — product content for e-commerce repurposing
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# Content Atomization
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Content atomization is the process of breaking down pillar content (long-form blog posts, guides, product pages) into standalone atomic units that each deliver value independently. One pillar post can yield 5-15 atomic pieces for distribution across multiple channels.
|
|
6
|
+
|
|
7
|
+
## Atomization Workflow
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
1. SELECT source content (pillar post)
|
|
11
|
+
|
|
|
12
|
+
2. IDENTIFY atomic elements (quotes, stats, tips, questions)
|
|
13
|
+
|
|
|
14
|
+
3. EXTRACT and format each atom
|
|
15
|
+
|
|
|
16
|
+
4. ASSIGN to channels (social, email, ad copy)
|
|
17
|
+
|
|
|
18
|
+
5. SCHEDULE via content calendar
|
|
19
|
+
|
|
|
20
|
+
6. DISTRIBUTE and track performance
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Step 1: Select Source Content
|
|
24
|
+
|
|
25
|
+
Prioritize content that is:
|
|
26
|
+
- **Evergreen**: valuable regardless of timing
|
|
27
|
+
- **Data-rich**: contains statistics, quotes, or unique insights
|
|
28
|
+
- **Popular**: already proven with traffic or engagement
|
|
29
|
+
- **Long-form**: 1,000+ words with multiple sections
|
|
30
|
+
|
|
31
|
+
Use `list_content` with `orderby: "date"` or traffic data to identify top candidates.
|
|
32
|
+
|
|
33
|
+
### Step 2: Identify Atomic Elements
|
|
34
|
+
|
|
35
|
+
| Element Type | What to Look For | Output Count |
|
|
36
|
+
|-------------|-----------------|--------------|
|
|
37
|
+
| Key quotes | Standalone insightful sentences | 2-4 per post |
|
|
38
|
+
| Statistics | Numbers, percentages, data points | 1-3 per post |
|
|
39
|
+
| Tips/How-tos | Actionable advice steps | 3-5 per post |
|
|
40
|
+
| Questions | Thought-provoking questions | 1-2 per post |
|
|
41
|
+
| Lists | Numbered or bulleted lists | 1-2 per post |
|
|
42
|
+
| Definitions | Explained concepts or terms | 1-2 per post |
|
|
43
|
+
|
|
44
|
+
### Step 3: Extract and Format
|
|
45
|
+
|
|
46
|
+
For each atom, create a self-contained piece:
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
ATOM CARD:
|
|
50
|
+
- Source: [post title + URL]
|
|
51
|
+
- Type: [quote / stat / tip / question]
|
|
52
|
+
- Content: [the atomic content, 1-3 sentences]
|
|
53
|
+
- Channel: [Twitter / LinkedIn / Instagram / Email / Ad]
|
|
54
|
+
- Visual needed: [yes/no, description if yes]
|
|
55
|
+
- CTA: [link back to full post]
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Step 4: Assign to Channels
|
|
59
|
+
|
|
60
|
+
Map atom types to their best channels:
|
|
61
|
+
|
|
62
|
+
| Atom Type | Best Channels | Format |
|
|
63
|
+
|-----------|--------------|--------|
|
|
64
|
+
| Quote | Twitter, Instagram, LinkedIn | Image with text overlay or plain text |
|
|
65
|
+
| Statistic | Twitter, LinkedIn, Facebook | Data visualization or bold text |
|
|
66
|
+
| Tip | All channels | Step-by-step or bullet list |
|
|
67
|
+
| Question | Twitter, LinkedIn, Facebook | Engagement post |
|
|
68
|
+
| List | Instagram carousel, LinkedIn | Multi-slide or numbered |
|
|
69
|
+
|
|
70
|
+
## Repurposing Matrix
|
|
71
|
+
|
|
72
|
+
One blog post (1,500+ words) can produce:
|
|
73
|
+
|
|
74
|
+
| Output | Count | Channel |
|
|
75
|
+
|--------|-------|---------|
|
|
76
|
+
| Twitter/X thread | 1 | Twitter |
|
|
77
|
+
| Individual tweets | 3-5 | Twitter |
|
|
78
|
+
| LinkedIn post | 1-2 | LinkedIn |
|
|
79
|
+
| Instagram carousel | 1 | Instagram |
|
|
80
|
+
| Facebook post | 1 | Facebook |
|
|
81
|
+
| Email digest section | 1 | Newsletter |
|
|
82
|
+
| Pull quotes for ads | 2-3 | Paid social |
|
|
83
|
+
| **Total outputs** | **10-15** | — |
|
|
84
|
+
|
|
85
|
+
## Content Calendar Integration
|
|
86
|
+
|
|
87
|
+
### Weekly Schedule from One Post
|
|
88
|
+
|
|
89
|
+
| Day | Content | Channel | Atom Type |
|
|
90
|
+
|-----|---------|---------|-----------|
|
|
91
|
+
| Mon | Full thread | Twitter | All key points |
|
|
92
|
+
| Tue | Article summary | LinkedIn | Overview |
|
|
93
|
+
| Wed | Carousel | Instagram | Visual takeaways |
|
|
94
|
+
| Thu | Engagement post | Facebook | Question |
|
|
95
|
+
| Fri | Individual quote | Twitter | Best quote |
|
|
96
|
+
| Sat | — | — | Rest day |
|
|
97
|
+
| Sun | Email digest | Newsletter | Summary + CTA |
|
|
98
|
+
|
|
99
|
+
### Monthly Cadence
|
|
100
|
+
|
|
101
|
+
- **Week 1**: Publish pillar post + immediate social promotion
|
|
102
|
+
- **Week 2**: Atomized social content from Week 1 post
|
|
103
|
+
- **Week 3**: Publish new pillar post + atomize Week 1 remainder
|
|
104
|
+
- **Week 4**: Cross-promote best performers + email roundup
|
|
105
|
+
|
|
106
|
+
## Quality Gates
|
|
107
|
+
|
|
108
|
+
Each atomic piece must pass these checks:
|
|
109
|
+
|
|
110
|
+
1. **Standalone value**: Does it make sense without the source article?
|
|
111
|
+
2. **Single idea**: Does it convey exactly one concept?
|
|
112
|
+
3. **Actionable or insightful**: Does it teach, inspire, or provoke thought?
|
|
113
|
+
4. **Channel-appropriate**: Does it fit the platform's format and audience?
|
|
114
|
+
5. **Brand-consistent**: Does it match the brand voice and visual style?
|
|
115
|
+
6. **Attribution**: Does it link back to the source when appropriate?
|
|
116
|
+
|
|
117
|
+
If an atom fails any gate, revise or discard it.
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# Email Newsletter Templates
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Templates for transforming WordPress content into email-ready formats. Covers newsletter digests, product announcements, and drip sequences.
|
|
6
|
+
|
|
7
|
+
## Blog Post → Newsletter Digest
|
|
8
|
+
|
|
9
|
+
**Template:**
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
Subject: [Keyword] — [Benefit or curiosity hook]
|
|
13
|
+
Preview text: [First 90 chars that complement the subject line]
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
Hi [first_name],
|
|
18
|
+
|
|
19
|
+
[1-2 sentence personal intro connecting to the topic]
|
|
20
|
+
|
|
21
|
+
## [Post Title]
|
|
22
|
+
|
|
23
|
+
[3-4 sentence excerpt highlighting the most valuable insight]
|
|
24
|
+
|
|
25
|
+
[Key quote or statistic from the post]
|
|
26
|
+
|
|
27
|
+
Read the full article: [link]
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Quick Tip
|
|
32
|
+
|
|
33
|
+
[One actionable takeaway from the post that works standalone]
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
[Sign-off]
|
|
38
|
+
[Company/brand name]
|
|
39
|
+
|
|
40
|
+
[Unsubscribe link]
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
**Rules:**
|
|
44
|
+
- Subject line: 40-60 characters, include primary keyword
|
|
45
|
+
- Preview text: 40-90 characters, complements (not repeats) subject
|
|
46
|
+
- Body: 200-300 words max
|
|
47
|
+
- One primary CTA (link to post)
|
|
48
|
+
- Mobile-friendly: single column, large buttons
|
|
49
|
+
|
|
50
|
+
## Product Launch → Email Announcement
|
|
51
|
+
|
|
52
|
+
**Template:**
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
Subject: Introducing [Product Name] — [One-line value prop]
|
|
56
|
+
Preview text: [Benefit] + [urgency or exclusivity]
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
Hi [first_name],
|
|
61
|
+
|
|
62
|
+
We're excited to announce [Product Name].
|
|
63
|
+
|
|
64
|
+
## What it is
|
|
65
|
+
[2-3 sentences describing the product]
|
|
66
|
+
|
|
67
|
+
## Why you'll love it
|
|
68
|
+
- [Benefit 1]
|
|
69
|
+
- [Benefit 2]
|
|
70
|
+
- [Benefit 3]
|
|
71
|
+
|
|
72
|
+
## Special offer
|
|
73
|
+
[Launch pricing, early access, or bonus]
|
|
74
|
+
|
|
75
|
+
[CTA Button: Shop Now / Learn More]
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
[Social proof: "Join X customers who already..."]
|
|
80
|
+
|
|
81
|
+
[Sign-off]
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Content Series → Drip Sequence
|
|
85
|
+
|
|
86
|
+
**Template (3-email sequence from a pillar post):**
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
Email 1 — Day 0 (Hook):
|
|
90
|
+
Subject: The [topic] guide you've been waiting for
|
|
91
|
+
Body: Introduce the pillar topic, deliver first key insight,
|
|
92
|
+
tease what's coming in the next emails.
|
|
93
|
+
CTA: Read Part 1
|
|
94
|
+
|
|
95
|
+
Email 2 — Day 3 (Deep Dive):
|
|
96
|
+
Subject: [Specific technique] from our [topic] guide
|
|
97
|
+
Body: Expand on the most actionable section of the post,
|
|
98
|
+
provide step-by-step instructions or examples.
|
|
99
|
+
CTA: Read Part 2 / Try it now
|
|
100
|
+
|
|
101
|
+
Email 3 — Day 7 (Summary + CTA):
|
|
102
|
+
Subject: Everything you need to know about [topic]
|
|
103
|
+
Body: Recap key takeaways, link to full article,
|
|
104
|
+
offer next step (product, consultation, download).
|
|
105
|
+
CTA: Get the complete guide / Shop related products
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Subject Line Formulas
|
|
109
|
+
|
|
110
|
+
| Formula | Example |
|
|
111
|
+
|---------|---------|
|
|
112
|
+
| Number + Benefit | "5 ways to reduce sugar intake" |
|
|
113
|
+
| Question | "Is cactus water the healthiest option?" |
|
|
114
|
+
| How-to | "How to save 200 calories a day" |
|
|
115
|
+
| Curiosity gap | "The drink we didn't expect to love" |
|
|
116
|
+
| Urgency | "Last chance: 20% off ends tonight" |
|
|
117
|
+
| Personal | "[Name], we picked this for you" |
|
|
118
|
+
|
|
119
|
+
## Segmentation Considerations
|
|
120
|
+
|
|
121
|
+
Match content type to audience segment:
|
|
122
|
+
|
|
123
|
+
| Content Type | Best Segment | Email Focus |
|
|
124
|
+
|--------------|-------------|-------------|
|
|
125
|
+
| Blog post (educational) | All subscribers | Knowledge + CTA to site |
|
|
126
|
+
| Product update | Past customers | Features + upgrade path |
|
|
127
|
+
| Industry news | Engaged readers | Commentary + discussion |
|
|
128
|
+
| Case study | Prospects | Results + trial CTA |
|
|
129
|
+
| Seasonal content | Active in last 90 days | Timely offers |
|
|
130
|
+
|
|
131
|
+
## Key Metrics
|
|
132
|
+
|
|
133
|
+
- **Open rate target**: 20-25% (industry avg)
|
|
134
|
+
- **Click rate target**: 2-5%
|
|
135
|
+
- **Unsubscribe rate**: keep below 0.5% per send
|
|
136
|
+
- **Best send times**: Tuesday-Thursday, 9-11 AM local time
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Platform Specifications
|
|
2
|
+
|
|
3
|
+
## Character Limits
|
|
4
|
+
|
|
5
|
+
| Platform | Post Limit | Optimal Length | Notes |
|
|
6
|
+
|----------|-----------|----------------|-------|
|
|
7
|
+
| Twitter/X | 280 chars | Full 280 | Threads: 25 tweets max |
|
|
8
|
+
| LinkedIn | 3,000 chars | 1,300-1,700 | Articles: 125,000 chars |
|
|
9
|
+
| Instagram (caption) | 2,200 chars | 150-300 | First 125 shown before "more" |
|
|
10
|
+
| Facebook | 63,206 chars | 100-250 words | First 477 shown before "more" |
|
|
11
|
+
| YouTube (description) | 5,000 chars | 200-300 words | First 100 shown before "more" |
|
|
12
|
+
| TikTok (caption) | 2,200 chars | 150-300 | Shorter = better engagement |
|
|
13
|
+
| Pinterest (description) | 500 chars | 100-200 | Include keywords for search |
|
|
14
|
+
|
|
15
|
+
## Image Dimensions
|
|
16
|
+
|
|
17
|
+
| Platform | Format | Dimensions | Aspect Ratio |
|
|
18
|
+
|----------|--------|-----------|--------------|
|
|
19
|
+
| Twitter/X | Single image | 1200x675px | 16:9 |
|
|
20
|
+
| Twitter/X | Card image | 800x418px | 1.91:1 |
|
|
21
|
+
| LinkedIn | Feed image | 1200x627px | 1.91:1 |
|
|
22
|
+
| LinkedIn | Carousel | 1080x1080px | 1:1 |
|
|
23
|
+
| Instagram | Feed post | 1080x1080px | 1:1 |
|
|
24
|
+
| Instagram | Carousel | 1080x1350px | 4:5 |
|
|
25
|
+
| Instagram | Story/Reel | 1080x1920px | 9:16 |
|
|
26
|
+
| Facebook | Feed image | 1200x630px | 1.91:1 |
|
|
27
|
+
| Facebook | Story | 1080x1920px | 9:16 |
|
|
28
|
+
| Pinterest | Standard pin | 1000x1500px | 2:3 |
|
|
29
|
+
| YouTube | Thumbnail | 1280x720px | 16:9 |
|
|
30
|
+
|
|
31
|
+
## Hashtag Strategies
|
|
32
|
+
|
|
33
|
+
| Platform | Max Hashtags | Recommended | Placement |
|
|
34
|
+
|----------|-------------|-------------|-----------|
|
|
35
|
+
| Twitter/X | No hard limit | 2-3 | End of tweet |
|
|
36
|
+
| LinkedIn | 30 | 3-5 | End of post |
|
|
37
|
+
| Instagram | 30 | 15-20 | Caption or first comment |
|
|
38
|
+
| Facebook | No limit | 1-3 | End of post |
|
|
39
|
+
| TikTok | No hard limit | 3-5 | In caption |
|
|
40
|
+
| Pinterest | 20 | 2-5 | In description |
|
|
41
|
+
|
|
42
|
+
### Hashtag Mix Strategy
|
|
43
|
+
|
|
44
|
+
- **30% broad** (high volume): #marketing, #business, #health
|
|
45
|
+
- **40% niche** (medium volume): #cactuswater, #zerocalorie, #healthydrinks
|
|
46
|
+
- **30% branded** (low volume): #DolceZero, #SicilianWater
|
|
47
|
+
|
|
48
|
+
## Link Handling
|
|
49
|
+
|
|
50
|
+
| Platform | Link Support | Best Practice |
|
|
51
|
+
|----------|-------------|---------------|
|
|
52
|
+
| Twitter/X | In-tweet links | Use link, counts as ~23 chars |
|
|
53
|
+
| LinkedIn | In-post links | Put in first comment for better reach |
|
|
54
|
+
| Instagram | No clickable links in captions | "Link in bio" + Linktree/bio link |
|
|
55
|
+
| Facebook | In-post links | Include directly, shows preview card |
|
|
56
|
+
| TikTok | No links in captions | "Link in bio" |
|
|
57
|
+
| Pinterest | Pin links | Link directly to article/product |
|
|
58
|
+
|
|
59
|
+
## Posting Frequency Recommendations
|
|
60
|
+
|
|
61
|
+
| Platform | Minimum | Optimal | Maximum |
|
|
62
|
+
|----------|---------|---------|---------|
|
|
63
|
+
| Twitter/X | 3/week | 1-3/day | 5/day |
|
|
64
|
+
| LinkedIn | 2/week | 3-5/week | 1-2/day |
|
|
65
|
+
| Instagram (feed) | 2/week | 3-5/week | 1-2/day |
|
|
66
|
+
| Instagram (stories) | Daily | 3-7/day | 10/day |
|
|
67
|
+
| Facebook | 2/week | 3-5/week | 1-2/day |
|
|
68
|
+
| Email newsletter | 1/month | 1/week | 2-3/week |
|
|
69
|
+
|
|
70
|
+
## Best Posting Times (General)
|
|
71
|
+
|
|
72
|
+
| Platform | Best Days | Best Times (local) |
|
|
73
|
+
|----------|-----------|-------------------|
|
|
74
|
+
| Twitter/X | Mon-Fri | 8-10 AM, 12-1 PM |
|
|
75
|
+
| LinkedIn | Tue-Thu | 7-8 AM, 12 PM, 5-6 PM |
|
|
76
|
+
| Instagram | Tue-Fri | 11 AM-1 PM, 7-9 PM |
|
|
77
|
+
| Facebook | Wed-Fri | 9-11 AM, 1-3 PM |
|
|
78
|
+
| Email | Tue-Thu | 9-11 AM |
|
|
79
|
+
|
|
80
|
+
Note: Always test and adapt based on your specific audience analytics.
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# Social Format Templates
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Templates for transforming WordPress content into platform-specific social media posts. Each template includes structure, character limits, and formatting rules.
|
|
6
|
+
|
|
7
|
+
## Blog Post → Twitter/X Thread
|
|
8
|
+
|
|
9
|
+
**Template (5-7 tweets):**
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
Tweet 1 (Hook):
|
|
13
|
+
[Attention-grabbing statement or question from the post headline]
|
|
14
|
+
|
|
15
|
+
Thread: [topic emoji]
|
|
16
|
+
|
|
17
|
+
Tweet 2-5 (Key Points):
|
|
18
|
+
[One key insight per tweet]
|
|
19
|
+
- Use bullet points or numbered lists
|
|
20
|
+
- Include data/stats when available
|
|
21
|
+
|
|
22
|
+
Tweet 6 (Summary):
|
|
23
|
+
TL;DR:
|
|
24
|
+
[3-line summary of the core message]
|
|
25
|
+
|
|
26
|
+
Tweet 7 (CTA):
|
|
27
|
+
Read the full article: [link]
|
|
28
|
+
|
|
29
|
+
If you found this helpful, retweet and follow for more [topic].
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Rules:**
|
|
33
|
+
- Max 280 characters per tweet
|
|
34
|
+
- Hook tweet should be standalone and compelling
|
|
35
|
+
- Each middle tweet must deliver value independently
|
|
36
|
+
- Use line breaks for readability
|
|
37
|
+
- 2-3 relevant hashtags on the last tweet only
|
|
38
|
+
|
|
39
|
+
## Blog Post → LinkedIn Article Summary
|
|
40
|
+
|
|
41
|
+
**Template:**
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
[Opening hook — personal angle or industry insight from the post]
|
|
45
|
+
|
|
46
|
+
Here's what I found:
|
|
47
|
+
|
|
48
|
+
1. [Key point 1 — expand with 1-2 sentences]
|
|
49
|
+
2. [Key point 2 — expand with 1-2 sentences]
|
|
50
|
+
3. [Key point 3 — expand with 1-2 sentences]
|
|
51
|
+
|
|
52
|
+
The takeaway: [One-sentence conclusion]
|
|
53
|
+
|
|
54
|
+
[Question to drive engagement]
|
|
55
|
+
|
|
56
|
+
#[industry] #[topic] #[brand]
|
|
57
|
+
|
|
58
|
+
[link in comments or first comment]
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**Rules:**
|
|
62
|
+
- Max 3,000 characters (optimal: 1,300-1,700)
|
|
63
|
+
- Professional tone, first-person perspective
|
|
64
|
+
- End with a question to encourage comments
|
|
65
|
+
- Put the link in the first comment (better reach)
|
|
66
|
+
- 3-5 relevant hashtags
|
|
67
|
+
|
|
68
|
+
## Blog Post → Instagram Carousel
|
|
69
|
+
|
|
70
|
+
**Template (5-10 slides):**
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
Slide 1 (Cover):
|
|
74
|
+
[Bold headline from the post title]
|
|
75
|
+
[Subtitle with the key promise]
|
|
76
|
+
|
|
77
|
+
Slides 2-8 (Content):
|
|
78
|
+
[One key takeaway per slide]
|
|
79
|
+
- Short text (max 30 words per slide)
|
|
80
|
+
- Visual hierarchy: headline + supporting text
|
|
81
|
+
- Use icons or simple illustrations
|
|
82
|
+
|
|
83
|
+
Slide 9 (Summary):
|
|
84
|
+
Quick recap:
|
|
85
|
+
- [Point 1]
|
|
86
|
+
- [Point 2]
|
|
87
|
+
- [Point 3]
|
|
88
|
+
|
|
89
|
+
Slide 10 (CTA):
|
|
90
|
+
Save this post for later!
|
|
91
|
+
Follow @[handle] for more [topic]
|
|
92
|
+
Link in bio for the full article
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
**Caption template:**
|
|
96
|
+
```
|
|
97
|
+
[Hook sentence — question or bold statement]
|
|
98
|
+
|
|
99
|
+
[2-3 sentence summary of the carousel content]
|
|
100
|
+
|
|
101
|
+
Save this for later and share with someone who needs it!
|
|
102
|
+
|
|
103
|
+
#[hashtag1] #[hashtag2] ... (up to 30 hashtags)
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
**Rules:**
|
|
107
|
+
- Max 2,200 characters for caption
|
|
108
|
+
- Image dimensions: 1080x1350px (4:5 ratio) for carousel
|
|
109
|
+
- One idea per slide, minimal text
|
|
110
|
+
- Brand colors and fonts for consistency
|
|
111
|
+
- Up to 30 hashtags (mix of broad and niche)
|
|
112
|
+
|
|
113
|
+
## Blog Post → Facebook Post
|
|
114
|
+
|
|
115
|
+
**Template:**
|
|
116
|
+
|
|
117
|
+
```
|
|
118
|
+
[Question or relatable statement from the post]
|
|
119
|
+
|
|
120
|
+
[2-3 paragraph summary with the most valuable insight]
|
|
121
|
+
|
|
122
|
+
[Key takeaway or actionable tip]
|
|
123
|
+
|
|
124
|
+
Read the full article: [link]
|
|
125
|
+
|
|
126
|
+
What do you think? Let me know in the comments!
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
**Rules:**
|
|
130
|
+
- Max 63,206 characters (optimal: 100-250 words)
|
|
131
|
+
- Lead with emotion or curiosity
|
|
132
|
+
- Include the link directly in the post (not comments)
|
|
133
|
+
- Ask a question to drive comments
|
|
134
|
+
- Use emojis sparingly for visual breaks
|
|
135
|
+
|
|
136
|
+
## Product → Social Proof Posts
|
|
137
|
+
|
|
138
|
+
**Template (customer review highlight):**
|
|
139
|
+
|
|
140
|
+
```
|
|
141
|
+
"[Compelling quote from customer review]"
|
|
142
|
+
— [Customer name/initials], [location]
|
|
143
|
+
|
|
144
|
+
[Product name] | [Key benefit from the review]
|
|
145
|
+
|
|
146
|
+
Shop now: [link]
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
**Template (results highlight):**
|
|
150
|
+
|
|
151
|
+
```
|
|
152
|
+
[Result statement: "X customers chose [product] this month"]
|
|
153
|
+
|
|
154
|
+
Here's why:
|
|
155
|
+
- [Benefit 1]
|
|
156
|
+
- [Benefit 2]
|
|
157
|
+
- [Benefit 3]
|
|
158
|
+
|
|
159
|
+
Try it yourself: [link]
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## Formatting Rules Summary
|
|
163
|
+
|
|
164
|
+
| Platform | Max Length | Optimal Length | Link Placement | Hashtags |
|
|
165
|
+
|----------|-----------|----------------|----------------|----------|
|
|
166
|
+
| Twitter/X | 280 chars/tweet | Full thread | Last tweet | 2-3 on last |
|
|
167
|
+
| LinkedIn | 3,000 chars | 1,300-1,700 | First comment | 3-5 |
|
|
168
|
+
| Instagram | 2,200 chars | 150-300 | Bio link | Up to 30 |
|
|
169
|
+
| Facebook | 63,206 chars | 100-250 words | In post | 1-3 |
|