Marketing Content Creator
Brand voice analysis, SEO-optimized content writing, and platform-specific content production for blogs, landing pages, and social channels.
What this skill does
Generate SEO-optimized blog posts, social media updates, and brand voice analyses that resonate with your audience. You get the right specialist for every job, with writing tasks handled by experts and planning requests receiving strategic guidance. Reach for it whenever you need to create or organize marketing content across blogs, landing pages, and social channels.
name: “content-creator” description: “Deprecated redirect skill that routes legacy ‘content creator’ requests to the correct specialist. Use when a user invokes ‘content creator’, asks to write a blog post, article, guide, or brand voice analysis (routes to content-production), or asks to plan content, build a topic cluster, or create a content calendar (routes to content-strategy). Does not handle requests directly — identifies user intent and redirects to content-production for writing/SEO/brand-voice tasks or content-strategy for planning tasks.” license: MIT metadata: version: 2.0.0 author: Alireza Rezvani category: marketing updated: 2026-03-06 status: deprecated
Content Creator → Redirected
This skill has been split into two specialist skills. Use the one that matches your intent:
| You want to… | Use this instead |
|---|---|
| Write a blog post, article, or guide | content-production |
| Plan what content to create, topic clusters, calendar | content-strategy |
| Analyze brand voice | content-production (includes brand_voice_analyzer.py) |
| Optimize SEO for existing content | content-production (includes seo_optimizer.py) |
| Create social media content | social-content |
Why the Change
The original content-creator tried to do everything: planning, writing, SEO, social, brand voice. That made it a jack of all trades. The specialist skills do each job better:
- content-production — Full pipeline: research → brief → draft → optimize → publish. Includes all Python tools from the original content-creator.
- content-strategy — Strategic planning: topic clusters, keyword research, content calendars, prioritization frameworks.
Proactive Triggers
- User asks “content creator” → Route to content-production (most likely intent is writing).
- User asks “content plan” or “what should I write” → Route to content-strategy.
Output Artifacts
| When you ask for… | Routed to… |
|---|---|
| ”Write a blog post” | content-production |
| ”Content calendar” | content-strategy |
| ”Brand voice analysis” | content-production (brand_voice_analyzer.py) |
| “SEO optimization” | content-production (seo_optimizer.py) |
Communication
This is a redirect skill. Route the user to the correct specialist — don’t attempt to handle the request here.
Related Skills
- content-production: Full content execution pipeline (successor).
- content-strategy: Content planning and topic selection (successor).
- content-humanizer: Post-processing AI content to sound authentic.
- marketing-context: Foundation context that both successors read.
Content Calendar Template - [Month Year]
Monthly Goals
- Traffic Goal:
- Lead Generation Goal:
- Engagement Goal:
- Key Campaign:
Week 1: [Date Range]
Monday [Date]
Platform: Blog Topic: Keywords: Status: [ ] Planned [ ] Written [ ] Reviewed [ ] Published Owner: Notes:
Platform: LinkedIn Type: Article Share Caption: Hashtags: Time: 10:00 AM
Tuesday [Date]
Platform: Instagram Type: Carousel Topic: Visuals: [ ] Created [ ] Approved Caption: Hashtags: Time: 12:00 PM
Wednesday [Date]
Platform: Email Newsletter Subject Line: Segment: CTA: Status: [ ] Drafted [ ] Designed [ ] Scheduled
Thursday [Date]
Platform: Twitter/X Type: Thread Topic: Thread Length: Media: [ ] Images [ ] GIFs [ ] None Time: 2:00 PM
Friday [Date]
Platform: Multi-channel Campaign: Assets Needed:
- Blog post
- Social graphics
- Video
Week 2: [Date Range]
[Repeat structure]
Week 3: [Date Range]
[Repeat structure]
Week 4: [Date Range]
[Repeat structure]
Content Bank (Ideas for Future)
1. 2. 3. 4. 5.
Performance Review (End of Month)
Top Performing Content
Title/Topic:
- Metric:
- Why it worked:
Title/Topic:
- Metric:
- Why it worked:
Lessons Learned
-
-
-
Adjustments for Next Month
-
-
-
Resource Links
- Brand Guidelines: [Link]
- Asset Library: [Link]
- Analytics Dashboard: [Link]
- Team Calendar: [Link]
Brand Voice Analysis Example
Demonstration of brand_voice_analyzer.py input and output.
Sample Input
File: sample_blog_post.txt
Hey there! 👋
So, like, we've been doing marketing for a really long time and we've learned SO much about what works. Today I'm gonna share some super cool tips that'll totally transform your business!
First things first - you gotta know your audience. Like, REALLY know them. What do they want? What keeps them up at night? Figure that out and you're golden!
Second, content is king (obviously). But here's the thing - not just any content. You need stuff that actually helps people. Don't just post to post, ya know?
Anyway, hope this helps! Drop a comment if you have questions! 🚀Command
python scripts/brand_voice_analyzer.py sample_blog_post.txtSample Output (Text Format)
============================================================
BRAND VOICE ANALYSIS RESULTS
============================================================
VOICE PROFILE
------------------------------------------------------------
Formality Score: 25/100 (Casual)
Tone: Conversational, Enthusiastic, Informal
Perspective: Mixed (1st person singular + 2nd person)
Personality Match: The Friend (primary)
READABILITY METRICS
------------------------------------------------------------
Flesch Reading Ease: 78 (Fairly Easy)
Grade Level: 6th Grade
Avg Sentence Length: 12 words
Avg Word Length: 4.2 characters
SENTENCE ANALYSIS
------------------------------------------------------------
Total Sentences: 12
Simple Sentences: 8 (67%)
Compound Sentences: 3 (25%)
Complex Sentences: 1 (8%)
VOCABULARY PATTERNS
------------------------------------------------------------
Filler Words Found: 6 (like, so, really, just, totally, super)
Contractions: 5 (we've, I'm, gonna, you're, don't)
Emoji Usage: 2
Exclamation Points: 4
RECOMMENDATIONS
------------------------------------------------------------
1. [HIGH] Reduce filler words - found 6 instances
Action: Remove "like", "so", "really", "totally", "super"
2. [MEDIUM] Inconsistent perspective - switches between "I" and "we"
Action: Choose one perspective and maintain throughout
3. [MEDIUM] High emoji count for professional content
Action: Limit to 1 emoji or remove entirely for B2B
4. [LOW] Overuse of exclamation points
Action: Replace 3 of 4 with periods for measured tone
VOICE CONSISTENCY SCORE: 62/100
============================================================Sample Output (JSON Format)
python scripts/brand_voice_analyzer.py sample_blog_post.txt json{
"voice_profile": {
"formality_score": 25,
"formality_level": "Casual",
"tone": ["Conversational", "Enthusiastic", "Informal"],
"perspective": "Mixed",
"personality_archetype": "The Friend"
},
"readability": {
"flesch_reading_ease": 78,
"grade_level": 6,
"avg_sentence_length": 12,
"avg_word_length": 4.2
},
"sentence_analysis": {
"total": 12,
"simple": 8,
"compound": 3,
"complex": 1
},
"vocabulary": {
"filler_words": {
"count": 6,
"instances": ["like", "so", "really", "just", "totally", "super"]
},
"contractions": 5,
"emojis": 2,
"exclamation_points": 4
},
"recommendations": [
{
"priority": "high",
"category": "vocabulary",
"issue": "Excessive filler words",
"action": "Remove casual filler words for professional tone"
},
{
"priority": "medium",
"category": "perspective",
"issue": "Inconsistent perspective",
"action": "Maintain single perspective throughout"
},
{
"priority": "medium",
"category": "formatting",
"issue": "High emoji count",
"action": "Limit emojis for professional content"
},
{
"priority": "low",
"category": "punctuation",
"issue": "Overuse of exclamation points",
"action": "Replace with periods for measured tone"
}
],
"consistency_score": 62
}Revised Content (After Applying Recommendations)
We've been helping businesses with marketing for over a decade, and we've
identified key principles that consistently drive results.
Understanding your audience is foundational. What challenges do they face?
What outcomes do they seek? Deep audience knowledge shapes every effective
marketing decision.
Content quality matters more than quantity. Focus on creating resources that
genuinely solve problems for your readers rather than publishing content
solely to maintain a schedule.
Questions about implementing these strategies? Leave a comment below.Re-analysis Results:
Formality Score: 72/100 (Professional)
Tone: Educational, Confident, Helpful
Perspective: First Person Plural (consistent)
Consistency Score: 91/100 SEO Optimization Example
Demonstration of seo_optimizer.py input and output.
Sample Input
File: draft_article.md
# Marketing Tips
Marketing is important for businesses. Here are some things to know.
## Why Marketing Matters
Companies need marketing. It helps them grow. Marketing brings customers.
## Some Ideas
Try social media. Post content. Use email. Run ads.
## Conclusion
Marketing is good. Do more of it.Command
python scripts/seo_optimizer.py draft_article.md "content marketing strategy" "content marketing,marketing tips,business growth"Sample Output (Text Format)
============================================================
SEO ANALYSIS REPORT
============================================================
PRIMARY KEYWORD: "content marketing strategy"
SECONDARY KEYWORDS: content marketing, marketing tips, business growth
OVERALL SEO SCORE: 32/100 (Poor)
KEYWORD ANALYSIS
------------------------------------------------------------
Primary Keyword Density: 0.0% (Target: 1-3%)
Status: NOT FOUND in content
Secondary Keyword Usage:
- "content marketing": 0 occurrences (Target: 3-5)
- "marketing tips": 1 occurrence (in title only)
- "business growth": 0 occurrences (Target: 2-3)
Keyword Placement Check:
✗ Primary keyword NOT in title
✗ Primary keyword NOT in first paragraph
✗ Primary keyword NOT in H2 headings
✗ Primary keyword NOT in conclusion
CONTENT STRUCTURE
------------------------------------------------------------
Word Count: 67 words
Status: CRITICAL - Below minimum (Target: 1,500+)
Heading Structure:
H1: 1 (Good)
H2: 3 (Good)
H3: 0 (Consider adding for depth)
Paragraph Analysis:
- Average length: 12 words (Too short - Target: 40-80)
- Total paragraphs: 6
READABILITY
------------------------------------------------------------
Flesch Reading Ease: 82 (Easy)
Note: May be too simple for B2B audience
META ELEMENTS
------------------------------------------------------------
Meta Title: Not specified
Suggestion: "Content Marketing Strategy: 10 Proven Tips for 2025"
Meta Description: Not found
Suggestion: "Discover actionable content marketing strategies to drive
business growth. Learn proven techniques for content that converts."
INTERNAL/EXTERNAL LINKS
------------------------------------------------------------
Internal Links: 0 (Target: 2-3)
External Links: 0 (Target: 1-2 authoritative sources)
RECOMMENDATIONS (Priority Order)
------------------------------------------------------------
[P0] CRITICAL - Content Length
Issue: 67 words is severely below minimum
Action: Expand to 1,500-2,500 words with detailed sections
[P0] CRITICAL - Missing Primary Keyword
Issue: "content marketing strategy" not found anywhere
Action: Include in title, first paragraph, 2 H2s, and conclusion
[P1] HIGH - Thin Content Sections
Issue: Paragraphs average 12 words
Action: Expand each section with examples, data, and actionable steps
[P1] HIGH - Missing Internal Links
Issue: No links to related content
Action: Add 2-3 links to relevant articles
[P2] MEDIUM - No Meta Description
Issue: Missing meta description
Action: Add 150-160 character description with primary keyword
[P2] MEDIUM - Missing H3 Subheadings
Issue: No H3s for content depth
Action: Add H3s under each H2 for better structure
============================================================Sample Output (JSON Format)
python scripts/seo_optimizer.py draft_article.md "content marketing strategy" --json{
"overall_score": 32,
"grade": "Poor",
"primary_keyword": "content marketing strategy",
"keyword_analysis": {
"primary_density": 0.0,
"target_density": "1-3%",
"primary_found": false,
"secondary_keywords": {
"content marketing": {"count": 0, "target": "3-5"},
"marketing tips": {"count": 1, "target": "2-3"},
"business growth": {"count": 0, "target": "2-3"}
},
"placement": {
"in_title": false,
"in_first_paragraph": false,
"in_h2_headings": false,
"in_conclusion": false
}
},
"content_structure": {
"word_count": 67,
"min_recommended": 1500,
"headings": {"h1": 1, "h2": 3, "h3": 0},
"paragraphs": {"count": 6, "avg_length": 12}
},
"readability": {
"flesch_score": 82,
"level": "Easy"
},
"meta": {
"title": null,
"description": null,
"suggested_title": "Content Marketing Strategy: 10 Proven Tips for 2025",
"suggested_description": "Discover actionable content marketing strategies to drive business growth. Learn proven techniques for content that converts."
},
"links": {
"internal": 0,
"external": 0,
"target_internal": "2-3",
"target_external": "1-2"
},
"recommendations": [
{
"priority": "P0",
"category": "content_length",
"issue": "Content severely below minimum word count",
"action": "Expand to 1,500-2,500 words"
},
{
"priority": "P0",
"category": "keyword",
"issue": "Primary keyword not found",
"action": "Include in title, first paragraph, H2s, conclusion"
},
{
"priority": "P1",
"category": "content_depth",
"issue": "Thin content sections",
"action": "Expand with examples, data, actionable steps"
},
{
"priority": "P1",
"category": "links",
"issue": "No internal links",
"action": "Add 2-3 relevant internal links"
}
]
}Optimized Content (After Applying Recommendations)
# Content Marketing Strategy: 10 Proven Techniques for Business Growth
A well-executed content marketing strategy separates thriving businesses from
those struggling to gain visibility. This comprehensive guide covers the
essential techniques that drive measurable results.
## Why Content Marketing Strategy Matters for Business Growth
Companies investing in strategic content marketing see 3x more leads than
those relying solely on paid advertising. Content marketing builds lasting
assets that continue generating value long after publication.
The compounding effect of quality content creates sustainable business growth:
- Organic search traffic increases over time
- Brand authority strengthens with each published piece
- Customer acquisition costs decrease as content library grows
### The ROI of Strategic Content
According to Content Marketing Institute research, businesses with documented
content strategies are 313% more likely to report success than those without.
[Continue for 1,500+ words with detailed sections...]
## Conclusion: Building Your Content Marketing Strategy
Implementing these content marketing techniques positions your business for
sustained growth. Start with audience research, create a documented strategy,
and commit to consistent execution.
Related reading: [Link to internal article on content calendars]Re-analysis Results:
OVERALL SEO SCORE: 87/100 (Good)
✓ Primary keyword density: 1.8%
✓ Keyword in title, first paragraph, H2s, conclusion
✓ Word count: 1,847 words
✓ Meta description: Present (156 characters)
✓ Internal links: 2
✓ External links: 1 (authoritative source) Content Analytics & Performance Metrics
Comprehensive guide for tracking, measuring, and optimizing content performance.
Table of Contents
- Content Metrics
- Engagement Metrics
- Business Metrics
- Platform-Specific Analytics
- Reporting Frameworks
- Attribution Models
Content Metrics
Track these KPIs to measure content reach and consumption.
Traffic Metrics
| Metric | Target | What It Tells You |
|---|---|---|
| Organic traffic | +10% MoM | SEO effectiveness |
| Page views | Varies by content type | Raw consumption volume |
| Unique visitors | +5% MoM | Audience growth |
| Sessions per user | 1.5+ | Content stickiness |
Consumption Metrics
| Metric | Target | What It Tells You |
|---|---|---|
| Average time on page | 3+ min for long-form | Content depth engagement |
| Bounce rate | <60% | Content relevance |
| Scroll depth | 70%+ | Content holding attention |
| Pages per session | 2+ | Internal linking success |
SEO Metrics
| Metric | Target | What It Tells You |
|---|---|---|
| Keyword rankings | Top 10 | Search visibility |
| Backlinks earned | +5/month | Content authority |
| Domain authority | Steady growth | Overall site strength |
| Featured snippets | Track position | SERP prominence |
Engagement Metrics
Measure how audiences interact with content.
Social Engagement
| Metric | Benchmark | Calculation |
|---|---|---|
| Engagement rate | 1-3% (LinkedIn) | (Likes + Comments + Shares) / Impressions × 100 |
| Share rate | 0.5-1% | Shares / Reach × 100 |
| Save rate | 1-2% (Instagram) | Saves / Reach × 100 |
| Comment rate | 0.1-0.5% | Comments / Reach × 100 |
Email Engagement
| Metric | Benchmark | What It Tells You |
|---|---|---|
| Open rate | 20-25% | Subject line effectiveness |
| Click-through rate | 2-5% | Content relevance |
| Unsubscribe rate | <0.5% | Audience fit |
| Forward rate | 0.1-0.3% | Content share-worthiness |
Community Engagement
| Metric | What to Track |
|---|---|
| Comments and discussions | Volume and sentiment |
| User-generated content | Submissions and quality |
| Community growth | New members per week |
| Active participation | % of members engaging |
Business Metrics
Connect content performance to business outcomes.
Lead Generation
| Metric | Calculation | Target |
|---|---|---|
| Content-attributed leads | Leads from content CTAs | Track by content piece |
| Form submissions | Total completions | +5% MoM |
| Lead quality score | MQL/total leads | 30%+ MQL rate |
| Cost per lead | Spend / Leads | Below industry average |
Conversion Metrics
| Metric | Calculation | Target |
|---|---|---|
| Conversion rate | Conversions / Visitors × 100 | 2-5% |
| Revenue attribution | $ tied to content | Track by piece |
| Customer acquisition cost | Total cost / New customers | Decreasing trend |
| Content ROI | (Revenue - Cost) / Cost × 100 | 300%+ for evergreen |
Customer Metrics
| Metric | What It Tells You |
|---|---|
| Customer lifetime value | Long-term content impact |
| Retention rate | Content's nurturing effectiveness |
| NPS from content consumers | Content quality perception |
| Support ticket reduction | Educational content success |
Platform-Specific Analytics
Blog Analytics (Google Analytics 4)
Key Reports:
- Landing pages report: Top entry content
- Engagement report: Time, bounces, conversions
- Traffic acquisition: Content discovery sources
- User paths: Content journey mapping
Dimensions to Track:
- Page path
- Source/medium
- Device category
- User type (new vs returning)
Social Media Analytics
LinkedIn:
- Post impressions and reach
- Follower demographics
- Click-through rate on links
- Article read time
Twitter/X:
- Impressions and engagements
- Profile visits from tweets
- Link clicks
- Follower growth rate
Instagram:
- Reach vs impressions
- Saves and shares (high-value signals)
- Story completion rate
- Reel performance vs feed
Email Analytics
Track per Campaign:
- Send volume and deliverability
- Open and click rates by segment
- Conversion path from email
- List growth and churn
Reporting Frameworks
Weekly Content Report
WEEK OF: [Date Range]
TOP PERFORMERS
1. [Content Title] - [Key Metric]
2. [Content Title] - [Key Metric]
3. [Content Title] - [Key Metric]
TRAFFIC SUMMARY
- Total sessions: [#]
- Organic traffic: [#] ([+/-]% WoW)
- Social traffic: [#] ([+/-]% WoW)
ENGAGEMENT HIGHLIGHTS
- Avg engagement rate: [%]
- Total comments: [#]
- Shares: [#]
LEADS GENERATED
- Content-attributed: [#]
- Top converting piece: [Title]
NEXT WEEK PRIORITIES
1. [Action item]
2. [Action item]Monthly Content Report
MONTH: [Month Year]
EXECUTIVE SUMMARY
[2-3 sentences on overall performance]
CONTENT PRODUCTION
- Published: [#] pieces
- By type: [Blog: #, Social: #, Email: #]
- On schedule: [Yes/No]
PERFORMANCE DASHBOARD
| Metric | This Month | Last Month | Change |
|---------------------|------------|------------|--------|
| Total traffic | | | |
| Organic traffic | | | |
| Engagement rate | | | |
| Leads generated | | | |
| Conversion rate | | | |
TOP 5 CONTENT PIECES
[Ranked by primary KPI]
INSIGHTS & LEARNINGS
- What worked: [observation]
- What didn't: [observation]
- Opportunities: [observation]
NEXT MONTH FOCUS
1. [Strategic priority]
2. [Content initiative]
3. [Optimization goal]Quarterly Business Review
Q[#] [Year] CONTENT PERFORMANCE
STRATEGIC ALIGNMENT
- Business goal: [Goal]
- Content contribution: [How content supported]
QUARTERLY METRICS
| KPI | Target | Actual | Status |
|------------------------|--------|--------|--------|
| Traffic growth | | | |
| Lead generation | | | |
| Conversion rate | | | |
| Revenue attribution | | | |
CONTENT AUDIT RESULTS
- Total pieces published: [#]
- High performers: [#]
- Needs optimization: [#]
- Candidates for retirement: [#]
ROI ANALYSIS
- Total content investment: $[X]
- Attributed revenue: $[Y]
- Content ROI: [%]
COMPETITIVE ANALYSIS
[How content stacks against competitors]
NEXT QUARTER ROADMAP
[Strategic initiatives and targets]Attribution Models
First-Touch Attribution
Use When: Measuring top-of-funnel content effectiveness
How It Works: Credits the first content piece that brought a user in
Best For:
- Brand awareness campaigns
- SEO content performance
- Social media reach measurement
Last-Touch Attribution
Use When: Measuring bottom-of-funnel conversion content
How It Works: Credits the last content before conversion
Best For:
- Product pages
- Case studies
- Demo request pages
Multi-Touch Attribution
Use When: Understanding full content journey impact
Linear Model:
- Equal credit to all touchpoints
- Simple but may over-credit low-value touches
Time-Decay Model:
- More credit to recent touches
- Good for short sales cycles
Position-Based Model:
- 40% first touch, 40% last touch, 20% middle
- Balanced view of journey
Content-Specific Attribution
For Blog Content:
- Track assisted conversions in GA4
- Map content to funnel stage
- Weight by stage importance
For Social Content:
- Use UTM parameters consistently
- Track view-through conversions
- Monitor social-assisted conversions
For Email Content:
- Track email-attributed revenue
- Monitor nurture sequence effectiveness
- Measure reactivation campaigns
Analytics Setup Checklist
Essential Tracking
- Google Analytics 4 configured
- Conversion events defined
- UTM parameter system documented
- Social pixel tracking enabled
- Email tracking integrated
- CRM connected for lead tracking
Advanced Setup
- Enhanced ecommerce tracking
- Custom dimensions for content attributes
- Automated reporting dashboards
- A/B testing infrastructure
- Heat mapping tools (Hotjar, Clarity)
- Attribution model configured
Data Governance
- Naming conventions documented
- Data retention policies set
- Privacy compliance verified
- Access controls configured
- Regular data audits scheduled
Brand Voice & Style Guidelines
Comprehensive framework for establishing and maintaining consistent brand voice across all content.
Table of Contents
- Voice Dimensions
- Brand Personality Archetypes
- Writing Principles
- Language Guidelines
- Content Structure Templates
- Messaging Pillars
- Audience Personas
- Channel-Specific Guidelines
- Grammar & Mechanics
- Inclusivity Guidelines
- Quick Reference Checklist
Brand Voice Framework
1. Voice Dimensions
Formality Spectrum
- Formal: Legal documents, investor communications, crisis responses
- Professional: B2B content, whitepapers, case studies
- Conversational: Blog posts, social media, email newsletters
- Casual: Community engagement, behind-the-scenes content
Tone Attributes
Choose 3-5 primary attributes for your brand:
- Authoritative: Position as industry expert
- Friendly: Approachable and warm
- Innovative: Forward-thinking and creative
- Trustworthy: Reliable and transparent
- Inspiring: Motivational and uplifting
- Educational: Informative and helpful
- Witty: Clever and entertaining (use sparingly)
Perspective
- First Person Plural (We/Our): Creates partnership feeling
- Second Person (You/Your): Direct and engaging
- Third Person: Objective and professional
2. Brand Personality Archetypes
Choose one primary and one secondary archetype:
The Expert
- Tone: Knowledgeable, confident, informative
- Content: Data-driven, research-backed, educational
- Example: "Our research shows that 87% of businesses..."
The Friend
- Tone: Warm, supportive, conversational
- Content: Relatable, helpful, encouraging
- Example: "We get it - marketing can be overwhelming..."
The Innovator
- Tone: Visionary, bold, forward-thinking
- Content: Cutting-edge, disruptive, trendsetting
- Example: "The future of marketing is here..."
The Guide
- Tone: Wise, patient, instructive
- Content: Step-by-step, clear, actionable
- Example: "Let's walk through this together..."
The Motivator
- Tone: Energetic, positive, inspiring
- Content: Empowering, action-oriented, transformative
- Example: "You have the power to transform your business..."
3. Writing Principles
Clarity First
- Use simple words when possible
- Break complex ideas into digestible pieces
- Lead with the main point
- Use active voice (80% of the time)
Customer-Centric
- Focus on benefits, not features
- Address pain points directly
- Use "you" more than "we"
- Include customer success stories
Consistency
- Maintain voice across all channels
- Use approved terminology
- Follow formatting standards
- Apply style rules uniformly
4. Language Guidelines
Words We Use
- Action verbs: Transform, accelerate, optimize, unlock, elevate
- Positive descriptors: Seamless, powerful, intuitive, strategic
- Outcome-focused: Results, growth, success, impact, ROI
Words We Avoid
- Jargon: Synergy, leverage (as verb), bandwidth (for availability)
- Overused: Innovative, disruptive, cutting-edge (unless truly applicable)
- Weak: Very, really, just, maybe, hopefully
- Negative: Can't, won't, impossible, problem (use "challenge")
5. Content Structure Templates
Blog Post Structure
- Hook (1-2 sentences): Grab attention with a question, statistic, or bold statement
- Context (1 paragraph): Explain why this matters now
- Main Content (3-5 sections): Deliver value with clear subheadings
- Conclusion (1 paragraph): Summarize key points
- Call to Action: Clear next step for readers
Social Media Framework
- LinkedIn: Professional insights, industry news, thought leadership
- Twitter/X: Quick tips, engaging questions, thread stories
- Instagram: Visual storytelling, behind-the-scenes, inspiration
- Facebook: Community building, longer narratives, events
6. Messaging Pillars
Define 3-4 core themes that appear consistently:
Innovation & Technology
- AI-powered solutions
- Data-driven insights
- Future-ready strategies
Customer Success
- Real results and ROI
- Partnership approach
- Tailored solutions
Expertise & Trust
- Industry leadership
- Proven methodologies
- Transparent communication
Growth & Transformation
- Scaling businesses
- Digital transformation
- Continuous improvement
7. Audience Personas
Decision Makers (C-Suite)
- Tone: Professional, strategic, ROI-focused
- Content: High-level insights, business impact, competitive advantages
- Pain Points: Growth, efficiency, competition
Practitioners (Marketing Managers)
- Tone: Practical, supportive, educational
- Content: How-to guides, best practices, tools
- Pain Points: Time, resources, skills
Innovators (Early Adopters)
- Tone: Exciting, cutting-edge, visionary
- Content: Trends, new features, future predictions
- Pain Points: Staying ahead, differentiation
8. Channel-Specific Guidelines
Website Copy
- Headlines: 6-12 words, benefit-focused
- Body: Short paragraphs (2-3 sentences)
- CTAs: Action-oriented, specific
Email Marketing
- Subject Lines: 30-50 characters, personalized
- Preview Text: Complement subject, add urgency
- Body: Scannable, one main message
Blog Content
- Title: Include primary keyword, under 60 characters
- Introduction: Hook within first 50 words
- Sections: 200-300 words each
- Lists: 5-7 items optimal
9. Grammar & Mechanics
Punctuation
- Oxford comma: Always use
- Em dashes: For emphasis—like this
- Exclamation points: Maximum one per piece
Capitalization
- Headlines: Title Case for H1, Sentence case for H2-H6
- Product names: As trademarked
- Job titles: Lowercase unless before name
Numbers
- Spell out one through nine
- Use numerals for 10 and above
- Always use numerals for percentages
10. Inclusivity Guidelines
- Use gender-neutral language
- Avoid idioms that don't translate
- Consider global audience
- Ensure accessibility in formatting
- Represent diverse perspectives
Quick Reference Checklist
Before publishing any content, verify:
- Matches brand voice and tone
- Free of jargon and complex terms
- Includes clear value proposition
- Has appropriate CTA
- Follows grammar guidelines
- Mobile-friendly formatting
- Accessible to all audiences
- Proofread and fact-checked
Content Creation Frameworks & Templates
Ready-to-use templates for blog posts, social media, email marketing, video scripts, and content planning.
Table of Contents
- Blog Post Templates
- Social Media Templates
- Email Marketing Templates
- Content Planning Frameworks
- SEO Content Framework
- Video Script Templates
- Content Repurposing Matrix
- Quick-Start Checklists
Content Types & Templates
1. Blog Post Templates
How-To Guide Template
# How to [Achieve Desired Outcome] in [Timeframe]
## Introduction
- Hook: Question or surprising fact
- Problem statement
- What reader will learn
- Why it matters now
## Prerequisites/What You'll Need
- Tool/Resource 1
- Tool/Resource 2
- Estimated time
## Step 1: [Action]
- Clear instruction
- Why this step matters
- Common mistakes to avoid
- Visual aid or example
## Step 2: [Action]
[Repeat structure]
## Step 3: [Action]
[Repeat structure]
## Troubleshooting Common Issues
### Issue 1: [Problem]
**Solution**: [Fix]
### Issue 2: [Problem]
**Solution**: [Fix]
## Results You Can Expect
- Immediate outcomes
- Long-term benefits
- Success metrics
## Next Steps
- Advanced techniques
- Related guides
- CTA for product/service
## Conclusion
- Recap key points
- Reinforce value
- Final encouragementListicle Template
# [Number] [Adjective] Ways to [Achieve Goal] in [Year]
## Introduction
- Context/trend driving this topic
- Promise of what reader gains
- Credibility statement
## 1. [First Item - Most Important]
**Why it matters**: [Brief explanation]
**How to implement**: [2-3 actionable steps]
**Pro tip**: [Expert insight]
**Example**: [Real-world application]
## 2. [Second Item]
[Repeat structure]
[Continue for all items]
## Bonus Tip: [Overdelivery]
[Something extra valuable]
## Bringing It All Together
- How items work synergistically
- Priority order for implementation
- Expected timeline for results
## Your Action Plan
1. Start with [easiest item]
2. Progress to [next steps]
3. Measure [metrics]
## Conclusion & CTACase Study Template
# How [Company] Achieved [Result] Using [Solution]
## Executive Summary
- Company overview
- Challenge faced
- Solution implemented
- Key results (3 metrics)
## The Challenge
### Background
- Industry context
- Company situation
- Previous attempts
### Specific Pain Points
- Pain point 1
- Pain point 2
- Pain point 3
## The Solution
### Strategy Development
- Discovery process
- Strategic approach
- Why this solution
### Implementation
- Phase 1: [Timeline & Actions]
- Phase 2: [Timeline & Actions]
- Phase 3: [Timeline & Actions]
## The Results
### Quantitative Outcomes
- Metric 1: X% increase
- Metric 2: $Y saved
- Metric 3: Z improvement
### Qualitative Benefits
- Team feedback
- Customer response
- Market position
## Key Takeaways
1. Lesson learned
2. Best practice discovered
3. Unexpected benefit
## Achieving Similar Results
- Prerequisite conditions
- Implementation roadmap
- Success factors
## CTA: Start Your Success StoryThought Leadership Template
# [Provocative Statement About Industry Future]
## The Current State
- Industry snapshot
- Prevailing wisdom
- Why status quo is insufficient
## The Emerging Trend
### What's Changing
- Driver 1: [Technology/Market/Behavior]
- Driver 2: [Technology/Market/Behavior]
- Driver 3: [Technology/Market/Behavior]
### Evidence & Examples
- Data point 1
- Case example
- Expert validation
## Implications for [Industry]
### Short-term (6-12 months)
- Immediate adjustments needed
- Quick wins available
- Risks of inaction
### Long-term (2-5 years)
- Fundamental shifts
- New opportunities
- Competitive landscape
## Strategic Recommendations
### For Leaders
- Strategic priorities
- Investment areas
- Organizational changes
### For Practitioners
- Skill development
- Process adaptation
- Tool adoption
## The Path Forward
- Call for industry action
- Your organization's role
- Next steps for readers
## Join the Conversation
- Thought-provoking question
- Invitation to share perspectives
- CTA for deeper engagement2. Social Media Templates
LinkedIn Post Framework
🎯 Hook/Pattern Interrupt
Context paragraph explaining the situation or challenge.
Key insight or lesson learned:
• Bullet point 1 (specific detail)
• Bullet point 2 (measurable outcome)
• Bullet point 3 (unexpected discovery)
Brief story or example that illustrates the point.
Takeaway message with clear value.
Question to encourage engagement?
#Hashtag1 #Hashtag2 #Hashtag3Twitter/X Thread Template
1/ Bold opening statement or question that stops the scroll
2/ Context - why this matters right now
3/ Problem most people face
4/ Conventional solution (and why it falls short)
5/ Better approach - introduction
6/ Step 1 of better approach
• Specific action
• Why it works
7/ Step 2 of better approach
[Continue pattern]
8/ Real example or case study
9/ Common objection addressed
10/ Results you can expect
11/ One powerful tip most people miss
12/ Recap in 3 key points:
- Point 1
- Point 2
- Point 3
13/ CTA: If you found this helpful, [action]
14/ P.S. - Bonus insight or resourceInstagram Caption Template
[Attention-grabbing first line - appears in preview]
[Story or relatable scenario - 2-3 sentences]
Here's what I learned:
[Key insight or lesson]
3 things that changed everything:
1️⃣ [First point]
2️⃣ [Second point]
3️⃣ [Third point]
[Call-out or question to audience]
Drop a [emoji] if you've experienced this too!
What's your biggest challenge with [topic]? Let me know below 👇
-
#hashtag1 #hashtag2 #hashtag3 #hashtag4 #hashtag5
[10-30 relevant hashtags total]3. Email Marketing Templates
Newsletter Template
Subject: [Benefit] + [Urgency/Curiosity]
Preview: [Complements subject, doesn't repeat]
Hi [Name],
[Personal observation or timely hook - 1-2 sentences]
[Transition to main topic - why reading this matters]
## Main Content Section
[Key points in scannable format]
• Point 1: [Benefit-focused]
• Point 2: [Specific example]
• Point 3: [Actionable tip]
[Brief elaboration on most important point - 2-3 sentences]
## Resource of the Week
[Title with link]
[One sentence on why it's valuable]
## Quick Win You Can Implement Today
[Specific, actionable tip - 2-3 steps max]
[Closing thought or question]
[Signature]
[Name]
P.S. [Additional value or soft CTA]Promotional Email Template
Subject: [Specific benefit] by [deadline/timeframe]
Preview: [Scarcity or exclusivity element]
Hi [Name],
[Acknowledge pain point or aspiration]
[Agitate - why this problem persists]
I've got something that can help:
[Solution introduction - what it is]
Here's what you get:
✓ Benefit 1 (not feature)
✓ Benefit 2 (not feature)
✓ Benefit 3 (not feature)
[Social proof - testimonial or results]
[Handle main objection]
[Clear CTA button: "Get Started" / "Claim Yours"]
[Urgency element - deadline or limited availability]
[Signature]
P.S. [Reinforce urgency or add bonus]4. Content Planning Frameworks
Content Pillar Strategy
Pillar 1: Educational (40%)
- How-to guides
- Tutorials
- Best practices
- Tips & tricks
Pillar 2: Inspirational (25%)
- Success stories
- Case studies
- Transformations
- Vision pieces
Pillar 3: Conversational (25%)
- Behind-the-scenes
- Team spotlights
- Q&As
- Polls/questions
Pillar 4: Promotional (10%)
- Product updates
- Offers
- Event announcements
- CTAsMonthly Content Calendar Structure
Week 1:
- Monday: Educational (blog post)
- Wednesday: Inspirational (social)
- Friday: Conversational (email)
Week 2:
- Monday: Educational (video/guide)
- Wednesday: Case study
- Friday: Curated content
Week 3:
- Monday: Educational (infographic)
- Wednesday: Behind-the-scenes
- Friday: Community spotlight
Week 4:
- Monday: Monthly roundup
- Wednesday: Thought leadership
- Friday: Promotional5. SEO Content Framework
SEO-Optimized Article Structure
URL: /primary-keyword-secondary-keyword
Title Tag: Primary Keyword - Secondary Benefit | Brand
Meta Description: Action verb + primary keyword + benefit + CTA (155 chars)
# H1: Primary Keyword + Unique Angle
Introduction (50-100 words)
- Include primary keyword in first 100 words
- State what reader will learn
- Why it matters
## H2: Secondary Keyword Variation 1
[Content with LSI keywords naturally integrated]
### H3: Specific subtopic
- Detail point 1
- Detail point 2
- Detail point 3
## H2: Secondary Keyword Variation 2
[Content continues...]
## H2: Related Questions (FAQ Schema)
### Question 1?
[Concise answer with keyword]
### Question 2?
[Concise answer with keyword]
## Conclusion
- Recap main points
- Include primary keyword
- Clear next action
Internal Links: 2-3 relevant articles
External Links: 1-2 authoritative sources6. Video Script Templates
Educational Video Script
[0-5 seconds: Hook]
"What if I told you [surprising statement]?"
[5-15 seconds: Introduction]
"Hi, I'm [Name] and today we're solving [problem]"
[15-30 seconds: Context]
- Why this matters
- What you'll learn
- What you'll achieve
[30 seconds - 2 minutes: Main Content]
Section 1: [Key Point]
- Explanation
- Example
- Visual aid
Section 2: [Key Point]
[Repeat structure]
Section 3: [Key Point]
[Repeat structure]
[Final 15-30 seconds]
- Quick recap
- Call to action
- End screen elements7. Content Repurposing Matrix
Original: Blog Post (2000 words)
├── Social Media
│ ├── 5 Twitter posts (key quotes)
│ ├── 1 LinkedIn article (executive summary)
│ ├── 3 Instagram carousels (main points)
│ └── 1 Facebook post (intro + link)
├── Email
│ └── Newsletter feature (summary + CTA)
├── Video
│ ├── YouTube explainer (script from post)
│ └── TikTok/Reels (quick tips)
├── Audio
│ └── Podcast talking points
└── Visual
├── Infographic (data points)
└── Slide deck (presentation)Quick-Start Checklists
Pre-Publishing Checklist
- Keyword research completed
- Title under 60 characters
- Meta description written (155 chars)
- Headers properly structured (H1, H2, H3)
- Internal links added (2-3)
- Images optimized with alt text
- CTA included and clear
- Proofread and fact-checked
- Mobile preview checked
Content Quality Checklist
- Addresses specific audience need
- Provides unique value/perspective
- Includes actionable takeaways
- Uses appropriate brand voice
- Contains supporting data/examples
- Free of jargon and complex terms
- Scannable format (bullets, headers)
- Engaging hook in introduction
- Clear conclusion and next steps
Social Media Optimization Guide
Platform-specific best practices, algorithm factors, content optimization strategies, and analytics frameworks.
Table of Contents
- Platform-Specific Best Practices
- Content Optimization Strategies
- Tool Stack Recommendations
- Compliance & Best Practices
Platform-Specific Best Practices
Audience: B2B professionals, decision-makers, thought leaders Best Times: Tuesday-Thursday, 8-10 AM and 5-6 PM Optimal Length: 1,300-2,000 characters for posts
Content Formats
- Text Posts: 1,300 characters optimal, use line breaks
- Articles: 1,900-2,000 words, include 5+ images
- Videos: 30 seconds - 10 minutes, native upload preferred
- Documents: PDF carousels, 10-15 slides
- Polls: 4 options max, 1-2 week duration
Optimization Tips
- First 2 lines are crucial (shown in preview)
- Use emoji sparingly for visual breaks
- Include 3-5 relevant hashtags
- Tag people and companies when relevant
- Native video gets 5x more engagement
- Post consistently (3-5x per week optimal)
Algorithm Factors
- Dwell time (time spent reading)
- Comments valued over likes
- Early engagement (first hour) crucial
- Creator mode boosts reach
- Replies to comments increase visibility
Twitter/X
Audience: News junkies, tech enthusiasts, real-time conversation Best Times: Weekdays 9-10 AM and 7-9 PM Optimal Length: 100-250 characters
Content Formats
- Single Tweets: 250 characters, 1-2 hashtags
- Threads: 5-15 tweets, numbered format
- Images: 16:9 ratio, up to 4 per tweet
- Videos: Up to 2:20, square or landscape
- Polls: 2-4 options, 5 minutes - 7 days
Optimization Tips
- Front-load important information
- Use threads for complex topics
- Include visuals (2-3x more engagement)
- Retweet with comment > regular RT
- Schedule threads for consistency
- Engage genuinely with replies
Algorithm Factors
- Engagement rate (likes, RTs, replies)
- Relationship (mutual follows prioritized)
- Recency over evergreen
- Topic relevance to user interests
- Link posts receive less reach
Audience: Visual-first, millennials & Gen Z, lifestyle focused Best Times: Weekdays 11 AM - 1 PM and 7-9 PM Optimal Length: 138-150 characters shown in preview
Content Formats
- Feed Posts: Square (1:1) or vertical (4:5)
- Stories: 15 seconds max, vertical (9:16)
- Reels: 15-90 seconds, vertical (9:16)
- Carousels: 2-10 images/videos
- IGTV/Video: 1-60 minutes
Optimization Tips
- First sentence crucial (caption preview)
- Use up to 30 hashtags (5-10 in caption, rest in comment)
- Carousel posts get highest engagement
- Stories with polls/questions boost views
- Reels get maximum organic reach
- Post consistently (1-2 feed posts daily)
Algorithm Factors
- Relationship (DMs, comments, tags)
- Interest (based on past interactions)
- Timeliness (newer posts prioritized)
- Frequency of app usage
- Time spent on posts (saves valuable)
Audience: Broad demographic, community-focused, local businesses Best Times: Wednesday-Friday, 11 AM - 2 PM Optimal Length: 50-80 characters for posts
Content Formats
- Text Posts: 50-80 characters optimal
- Images: 1200x630px for links
- Videos: 1-3 minutes, square format
- Stories: Same as Instagram
- Live Videos: Minimum 10 minutes
Optimization Tips
- Native video gets priority
- Ask questions to boost comments
- Share to relevant groups
- Use Facebook Creator Studio
- Tag locations for local reach
- Post 1-2 times per day max
Algorithm Factors
- Meaningful interactions (comments > reactions)
- Video completion rate
- Friends and family prioritized
- Group posts get high visibility
- Live videos get 6x engagement
TikTok
Audience: Gen Z, entertainment-focused, trend-driven Best Times: 6-10 AM and 7-11 PM Optimal Length: 15-30 seconds
Content Formats
- Videos: 15 seconds - 10 minutes
- Aspect Ratio: 9:16 vertical
- Sounds: Trending audio crucial
- Effects: Filters and transitions
Optimization Tips
- Hook viewers in first 3 seconds
- Use trending sounds and hashtags
- Create content for FYP, not followers
- Post 1-4 times daily
- Engage with comments quickly
- Jump on trends within 24-48 hours
Algorithm Factors
- Completion rate most important
- Shares and saves valued
- Comment engagement
- Following similar creators
- Time spent on app
Content Optimization Strategies
Hashtag Strategy
Research Methods
- Competitor Analysis: Study successful competitors
- Platform Search: Use native search for suggestions
- Hashtag Tools: RiteTag, Hashtagify, All Hashtag
- Trending Topics: Monitor daily/weekly trends
- Brand Hashtags: Create unique campaign tags
Hashtag Mix Formula
- 30% High-volume (1M+ posts)
- 40% Medium-volume (100K-1M posts)
- 30% Low-volume/Niche (<100K posts)
Platform-Specific Guidelines
- Instagram: 10-30 hashtags (mix in caption and first comment)
- LinkedIn: 3-5 professional hashtags
- Twitter: 1-2 hashtags max
- Facebook: 1-3 hashtags
- TikTok: 3-5 trending + niche tags
Visual Content Optimization
Image Best Practices
- Resolution: Minimum 1080px width
- File Size: Under 5MB for faster loading
- Alt Text: Always include for accessibility
- Branding: Consistent filters/overlays
- Text Overlay: Less than 20% of image
Video Optimization
- Captions: Always include (85% watch without sound)
- Thumbnail: Custom, eye-catching
- Length: Platform-specific optimal duration
- Format: MP4 for best compatibility
- Aspect Ratio: Vertical for stories/reels, square for feed
Caption Writing Formulas
AIDA Formula
- Attention: Hook in first line
- Interest: Expand on the hook
- Desire: Benefits and value
- Action: Clear CTA
PAS Formula
- Problem: Identify pain point
- Agitate: Emphasize consequences
- Solution: Present your answer
Before-After-Bridge
- Before: Current situation
- After: Desired outcome
- Bridge: How to get there
Engagement Tactics
Conversation Starters
- Ask open-ended questions
- Create polls and surveys
- "Fill in the blank" posts
- "This or that" choices
- Caption contests
- Opinion requests
Community Building
- Respond to comments within 2 hours
- Like and reply to user comments
- Share user-generated content
- Create branded hashtags
- Host Q&A sessions
- Run challenges or contests
Analytics & KPIs
Vanity Metrics (Track but don't obsess)
- Follower count
- Like count
- View count
Performance Metrics (Focus here)
- Engagement rate: (Likes + Comments + Shares) / Reach × 100
- Click-through rate: Clicks / Impressions × 100
- Conversion rate: Conversions / Clicks × 100
- Share/Save rate: Shares / Reach × 100
Business Metrics (Ultimate goal)
- Website traffic from social
- Lead generation
- Sales attribution
- Customer acquisition cost
- Customer lifetime value
Content Calendar Planning
Weekly Posting Schedule Template
Monday: Motivational (Quote/Inspiration)
Tuesday: Educational (How-to/Tips)
Wednesday: Promotional (Product/Service)
Thursday: Engaging (Poll/Question)
Friday: Fun (Behind-scenes/Casual)
Saturday: User-Generated Content
Sunday: Curated Content/RestMonthly Theme Structure
- Week 1: Awareness content
- Week 2: Consideration content
- Week 3: Decision content
- Week 4: Retention/Community
Crisis Management Protocol
Response Timeline
- 0-15 minutes: Acknowledge awareness
- 15-60 minutes: Gather facts
- 1-2 hours: Official response
- 24 hours: Follow-up update
- 48-72 hours: Resolution summary
Response Guidelines
- Acknowledge quickly
- Take responsibility if appropriate
- Show empathy
- Provide facts only
- Outline action steps
- Follow up publicly
Tool Stack Recommendations
Content Creation
- Design: Canva, Adobe Creative Suite
- Video: CapCut, InShot, Adobe Premiere
- Copy: Grammarly, Hemingway Editor
- AI Assistance: ChatGPT, Claude, Jasper
Scheduling & Management
- All-in-One: Hootsuite, Buffer, Sprout Social
- Visual-First: Later, Planoly
- Enterprise: Sprinklr, Khoros
- Free Options: Meta Business Suite, TweetDeck
Analytics & Monitoring
- Native: Platform Insights/Analytics
- Third-Party: Socialbakers, Brandwatch
- Listening: Mention, Brand24
- Competitor Analysis: Social Blade, Rival IQ
Influencer & UGC
- Discovery: AspireIQ, GRIN
- Management: CreatorIQ, Klear
- UGC Curation: TINT, Stackla
- Rights Management: Rights Manager
Compliance & Best Practices
Legal Considerations
- Include #ad or #sponsored for paid partnerships
- Respect copyright and attribution
- Follow GDPR for data collection
- Comply with platform terms of service
- Get permission for UGC usage
Accessibility Guidelines
- Add alt text to all images
- Include captions on videos
- Use CamelCase for hashtags (#LikeThis)
- Avoid text-only images
- Ensure color contrast compliance
Brand Safety
- Moderate comments regularly
- Set up keyword filters
- Have crisis management plan
- Monitor brand mentions
- Establish posting permissions
Install this Skill
Skills give your AI agent a consistent, structured approach to this task — better output than a one-off prompt.
npx skills add alirezarezvani/claude-skills --skill marketing-skill/content-creator Community skill by @alirezarezvani. Need a walkthrough? See the install guide →
Works with
Prefer no terminal? Download the ZIP and place it manually.
Details
- Category
- Marketing
- License
- MIT
- Author
- @alirezarezvani
- Source
- GitHub →
- Source file
-
show path
marketing-skill/content-creator/SKILL.md
People who install this also use
Marketing Content Strategy
Build a content strategy with topic clusters, content calendars, keyword research, and audience-aligned editorial plans.
@alirezarezvani
Social Content Creator
Create platform-specific social media content for LinkedIn, Twitter/X, Instagram, and more — adapted tone, format, and hooks for each channel.
@alirezarezvani
Marketing Seo Audit
Run a comprehensive SEO audit — keyword research, on-page analysis, content gaps, technical checks, and competitor comparison. Use when assessing a site's SEO health, when finding keyword opportunities and content gaps competitors own, or when you need a prioritized action plan split into quick wins and strategic investments.
@anthropics