diff --git a/marketing-skill/content-creator/SKILL.md b/marketing-skill/content-creator/SKILL.md index 0600add..ea86087 100644 --- a/marketing-skill/content-creator/SKILL.md +++ b/marketing-skill/content-creator/SKILL.md @@ -16,160 +16,251 @@ metadata: Professional-grade brand voice analysis, SEO optimization, and platform-specific content frameworks. +--- + +## Table of Contents + +- [Keywords](#keywords) +- [Quick Start](#quick-start) +- [Core Workflows](#core-workflows) +- [Tools](#tools) +- [Reference Guides](#reference-guides) +- [Best Practices](#best-practices) +- [Integration Points](#integration-points) + +--- + ## Keywords + content creation, blog posts, SEO, brand voice, social media, content calendar, marketing content, content strategy, content marketing, brand consistency, content optimization, social media marketing, content planning, blog writing, content frameworks, brand guidelines, social media strategy +--- + ## Quick Start -### For Brand Voice Development +### Brand Voice Development + 1. Run `scripts/brand_voice_analyzer.py` on existing content to establish baseline 2. Review `references/brand_guidelines.md` to select voice attributes 3. Apply chosen voice consistently across all content -### For Blog Content Creation +### Blog Content Creation + 1. Choose template from `references/content_frameworks.md` 2. Research keywords for topic 3. Write content following template structure 4. Run `scripts/seo_optimizer.py [file] [primary-keyword]` to optimize 5. Apply recommendations before publishing -### For Social Media Content +### Social Media Content + 1. Review platform best practices in `references/social_media_optimization.md` 2. Use appropriate template from `references/content_frameworks.md` 3. Optimize based on platform-specific guidelines 4. Schedule using `assets/content_calendar_template.md` +--- + ## Core Workflows -### Establishing Brand Voice (First Time Setup) +### Workflow 1: Establish Brand Voice (First Time Setup) -When creating content for a new brand or client: +For new brands or clients: -1. **Analyze Existing Content** (if available) - ```bash - python scripts/brand_voice_analyzer.py existing_content.txt - ``` - -2. **Define Voice Attributes** - - Review brand personality archetypes in `references/brand_guidelines.md` - - Select primary and secondary archetypes - - Choose 3-5 tone attributes - - Document in brand guidelines +**Step 1: Analyze Existing Content (if available)** -3. **Create Voice Sample** - - Write 3 sample pieces in chosen voice - - Test consistency using analyzer - - Refine based on results +```bash +python scripts/brand_voice_analyzer.py existing_content.txt +``` -### Creating SEO-Optimized Blog Posts +**Step 2: Define Voice Attributes** -1. **Keyword Research** - - Identify primary keyword (search volume 500-5000/month) - - Find 3-5 secondary keywords - - List 10-15 LSI keywords +- Review brand personality archetypes in `references/brand_guidelines.md` +- Select primary and secondary archetypes +- Choose 3-5 tone attributes +- Document in brand guidelines -2. **Content Structure** - - Use blog template from `references/content_frameworks.md` - - Include keyword in title, first paragraph, and 2-3 H2s - - Aim for 1,500-2,500 words for comprehensive coverage +**Step 3: Create Voice Sample** -3. **Optimization Check** - ```bash - python scripts/seo_optimizer.py blog_post.md "primary keyword" "secondary,keywords,list" - ``` +- Write 3 sample pieces in chosen voice +- Test consistency using analyzer +- Refine based on results -4. **Apply SEO Recommendations** - - Adjust keyword density to 1-3% - - Ensure proper heading structure - - Add internal and external links - - Optimize meta description +### Workflow 2: Create SEO-Optimized Blog Posts -### Social Media Content Creation +**Step 1: Keyword Research** -1. **Platform Selection** - - Identify primary platforms based on audience - - Review platform-specific guidelines in `references/social_media_optimization.md` +- Identify primary keyword (search volume 500-5000/month) +- Find 3-5 secondary keywords +- List 10-15 LSI keywords -2. **Content Adaptation** - - Start with blog post or core message - - Use repurposing matrix from `references/content_frameworks.md` - - Adapt for each platform following templates +**Step 2: Content Structure** -3. **Optimization Checklist** - - Platform-appropriate length - - Optimal posting time - - Correct image dimensions - - Platform-specific hashtags - - Engagement elements (polls, questions) +- Use blog template from `references/content_frameworks.md` +- Include keyword in title, first paragraph, and 2-3 H2s +- Aim for 1,500-2,500 words for comprehensive coverage -### Content Calendar Planning +**Step 3: Optimization Check** -1. **Monthly Planning** - - Copy `assets/content_calendar_template.md` - - Set monthly goals and KPIs - - Identify key campaigns/themes +```bash +python scripts/seo_optimizer.py blog_post.md "primary keyword" "secondary,keywords,list" +``` -2. **Weekly Distribution** - - Follow 40/25/25/10 content pillar ratio - - Balance platforms throughout week - - Align with optimal posting times +**Step 4: Apply SEO Recommendations** -3. **Batch Creation** - - Create all weekly content in one session - - Maintain consistent voice across pieces - - Prepare all visual assets together +- Adjust keyword density to 1-3% +- Ensure proper heading structure +- Add internal and external links +- Optimize meta description -## Key Scripts +### Workflow 3: Create Social Media Content + +**Step 1: Platform Selection** + +- Identify primary platforms based on audience +- Review platform-specific guidelines in `references/social_media_optimization.md` + +**Step 2: Content Adaptation** + +- Start with blog post or core message +- Use repurposing matrix from `references/content_frameworks.md` +- Adapt for each platform following templates + +**Step 3: Optimization Checklist** + +- Platform-appropriate length +- Optimal posting time +- Correct image dimensions +- Platform-specific hashtags +- Engagement elements (polls, questions) + +### Workflow 4: Plan Content Calendar + +**Step 1: Monthly Planning** + +- Copy `assets/content_calendar_template.md` +- Set monthly goals and KPIs +- Identify key campaigns/themes + +**Step 2: Weekly Distribution** + +- Follow 40/25/25/10 content pillar ratio +- Balance platforms throughout week +- Align with optimal posting times + +**Step 3: Batch Creation** + +- Create all weekly content in one session +- Maintain consistent voice across pieces +- Prepare all visual assets together + +--- + +## Tools + +### Brand Voice Analyzer -### brand_voice_analyzer.py Analyzes text content for voice characteristics, readability, and consistency. -**Usage**: `python scripts/brand_voice_analyzer.py [json|text]` +**Usage:** + +```bash +# Human-readable output +python scripts/brand_voice_analyzer.py content.txt + +# JSON output for integrations +python scripts/brand_voice_analyzer.py content.txt json +``` + +**Parameters:** + +| Parameter | Required | Description | +|-----------|----------|-------------| +| `file` | Yes | Path to content file | +| `format` | No | Output format: `text` (default) or `json` | + +**Output:** -**Returns**: - Voice profile (formality, tone, perspective) -- Readability score +- Readability score (Flesch Reading Ease) - Sentence structure analysis - Improvement recommendations -### seo_optimizer.py +### SEO Optimizer + Analyzes content for SEO optimization and provides actionable recommendations. -**Usage**: `python scripts/seo_optimizer.py [primary_keyword] [secondary_keywords]` +**Usage:** + +```bash +# Basic analysis +python scripts/seo_optimizer.py article.md "main keyword" + +# With secondary keywords +python scripts/seo_optimizer.py article.md "main keyword" "secondary,keywords,list" + +# JSON output +python scripts/seo_optimizer.py article.md "keyword" --json +``` + +**Parameters:** + +| Parameter | Required | Description | +|-----------|----------|-------------| +| `file` | Yes | Path to content file (md or html) | +| `primary_keyword` | Yes | Main target keyword | +| `secondary_keywords` | No | Comma-separated secondary keywords | +| `--json` | No | Output in JSON format | + +**Output:** -**Returns**: - SEO score (0-100) - Keyword density analysis - Structure assessment - Meta tag suggestions - Specific optimization recommendations +--- + ## Reference Guides ### When to Use Each Reference **references/brand_guidelines.md** + - Setting up new brand voice - Ensuring consistency across content - Training new team members - Resolving voice/tone questions **references/content_frameworks.md** + - Starting any new content piece - Structuring different content types - Creating content templates - Planning content repurposing **references/social_media_optimization.md** + - Platform-specific optimization - Hashtag strategy development - Understanding algorithm factors - Setting up analytics tracking +**references/analytics_guide.md** + +- Tracking content performance +- Setting up measurement frameworks +- Creating performance reports +- Attribution modeling + +--- + ## Best Practices ### Content Creation Process -1. Always start with audience need/pain point + +1. Start with audience need/pain point 2. Research before writing 3. Create outline using templates 4. Write first draft without editing @@ -180,6 +271,7 @@ Analyzes content for SEO optimization and provides actionable recommendations. 9. Schedule strategically ### Quality Indicators + - SEO score above 75/100 - Readability appropriate for audience - Consistent brand voice throughout @@ -189,6 +281,7 @@ Analyzes content for SEO optimization and provides actionable recommendations. - Platform-optimized ### Common Pitfalls to Avoid + - Writing before researching keywords - Ignoring platform-specific requirements - Inconsistent brand voice @@ -197,52 +290,14 @@ Analyzes content for SEO optimization and provides actionable recommendations. - Publishing without proofreading - Ignoring analytics feedback -## Performance Metrics - -Track these KPIs for content success: - -### Content Metrics -- Organic traffic growth -- Average time on page -- Bounce rate -- Social shares -- Backlinks earned - -### Engagement Metrics -- Comments and discussions -- Email click-through rates -- Social media engagement rate -- Content downloads -- Form submissions - -### Business Metrics -- Leads generated -- Conversion rate -- Customer acquisition cost -- Revenue attribution -- ROI per content piece +--- ## Integration Points This skill works best with: -- Analytics platforms (Google Analytics, social media insights) -- SEO tools (for keyword research) -- Design tools (for visual content) -- Scheduling platforms (for content distribution) -- Email marketing systems (for newsletter content) -## Quick Commands - -```bash -# Analyze brand voice -python scripts/brand_voice_analyzer.py content.txt - -# Optimize for SEO -python scripts/seo_optimizer.py article.md "main keyword" - -# Check content against brand guidelines -grep -f references/brand_guidelines.md content.txt - -# Create monthly calendar -cp assets/content_calendar_template.md this_month_calendar.md -``` +- **Analytics platforms** - Google Analytics, social media insights for tracking (see `references/analytics_guide.md`) +- **SEO tools** - For keyword research and competitive analysis +- **Design tools** - Canva, Figma for visual content +- **Scheduling platforms** - Buffer, Hootsuite for content distribution +- **Email marketing systems** - For newsletter content campaigns diff --git a/marketing-skill/content-creator/examples/brand_voice_analysis_example.md b/marketing-skill/content-creator/examples/brand_voice_analysis_example.md new file mode 100644 index 0000000..eceb0a2 --- /dev/null +++ b/marketing-skill/content-creator/examples/brand_voice_analysis_example.md @@ -0,0 +1,180 @@ +# 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 + +```bash +python scripts/brand_voice_analyzer.py sample_blog_post.txt +``` + +--- + +## Sample 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) + +```bash +python scripts/brand_voice_analyzer.py sample_blog_post.txt json +``` + +```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 +``` diff --git a/marketing-skill/content-creator/examples/seo_optimization_example.md b/marketing-skill/content-creator/examples/seo_optimization_example.md new file mode 100644 index 0000000..ffa3be9 --- /dev/null +++ b/marketing-skill/content-creator/examples/seo_optimization_example.md @@ -0,0 +1,259 @@ +# SEO Optimization Example + +Demonstration of seo_optimizer.py input and output. + +--- + +## Sample Input + +**File: `draft_article.md`** + +```markdown +# 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 + +```bash +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) + +```bash +python scripts/seo_optimizer.py draft_article.md "content marketing strategy" --json +``` + +```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) + +```markdown +# 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) +``` diff --git a/marketing-skill/content-creator/references/analytics_guide.md b/marketing-skill/content-creator/references/analytics_guide.md new file mode 100644 index 0000000..7115684 --- /dev/null +++ b/marketing-skill/content-creator/references/analytics_guide.md @@ -0,0 +1,352 @@ +# Content Analytics & Performance Metrics + +Comprehensive guide for tracking, measuring, and optimizing content performance. + +--- + +## Table of Contents + +- [Content Metrics](#content-metrics) +- [Engagement Metrics](#engagement-metrics) +- [Business Metrics](#business-metrics) +- [Platform-Specific Analytics](#platform-specific-analytics) +- [Reporting Frameworks](#reporting-frameworks) +- [Attribution Models](#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:** +1. Track assisted conversions in GA4 +2. Map content to funnel stage +3. Weight by stage importance + +**For Social Content:** +1. Use UTM parameters consistently +2. Track view-through conversions +3. Monitor social-assisted conversions + +**For Email Content:** +1. Track email-attributed revenue +2. Monitor nurture sequence effectiveness +3. 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 diff --git a/marketing-skill/content-creator/references/brand_guidelines.md b/marketing-skill/content-creator/references/brand_guidelines.md index 90b3124..36b6b0a 100644 --- a/marketing-skill/content-creator/references/brand_guidelines.md +++ b/marketing-skill/content-creator/references/brand_guidelines.md @@ -1,5 +1,25 @@ # Brand Voice & Style Guidelines +Comprehensive framework for establishing and maintaining consistent brand voice across all content. + +--- + +## Table of Contents + +- [Voice Dimensions](#1-voice-dimensions) +- [Brand Personality Archetypes](#2-brand-personality-archetypes) +- [Writing Principles](#3-writing-principles) +- [Language Guidelines](#4-language-guidelines) +- [Content Structure Templates](#5-content-structure-templates) +- [Messaging Pillars](#6-messaging-pillars) +- [Audience Personas](#7-audience-personas) +- [Channel-Specific Guidelines](#8-channel-specific-guidelines) +- [Grammar & Mechanics](#9-grammar--mechanics) +- [Inclusivity Guidelines](#10-inclusivity-guidelines) +- [Quick Reference Checklist](#quick-reference-checklist) + +--- + ## Brand Voice Framework ### 1. Voice Dimensions diff --git a/marketing-skill/content-creator/references/content_frameworks.md b/marketing-skill/content-creator/references/content_frameworks.md index 8ecdc06..ab2da6a 100644 --- a/marketing-skill/content-creator/references/content_frameworks.md +++ b/marketing-skill/content-creator/references/content_frameworks.md @@ -1,5 +1,22 @@ # 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](#1-blog-post-templates) +- [Social Media Templates](#2-social-media-templates) +- [Email Marketing Templates](#3-email-marketing-templates) +- [Content Planning Frameworks](#4-content-planning-frameworks) +- [SEO Content Framework](#5-seo-content-framework) +- [Video Script Templates](#6-video-script-templates) +- [Content Repurposing Matrix](#7-content-repurposing-matrix) +- [Quick-Start Checklists](#quick-start-checklists) + +--- + ## Content Types & Templates ### 1. Blog Post Templates @@ -138,7 +155,7 @@ 2. Best practice discovered 3. Unexpected benefit -## How You Can Achieve Similar Results +## Achieving Similar Results - Prerequisite conditions - Implementation roadmap - Success factors diff --git a/marketing-skill/content-creator/references/social_media_optimization.md b/marketing-skill/content-creator/references/social_media_optimization.md index d93766a..567a799 100644 --- a/marketing-skill/content-creator/references/social_media_optimization.md +++ b/marketing-skill/content-creator/references/social_media_optimization.md @@ -1,5 +1,30 @@ # Social Media Optimization Guide +Platform-specific best practices, algorithm factors, content optimization strategies, and analytics frameworks. + +--- + +## Table of Contents + +- [Platform-Specific Best Practices](#platform-specific-best-practices) + - [LinkedIn](#linkedin) + - [Twitter/X](#twitterx) + - [Instagram](#instagram) + - [Facebook](#facebook) + - [TikTok](#tiktok) +- [Content Optimization Strategies](#content-optimization-strategies) + - [Hashtag Strategy](#hashtag-strategy) + - [Visual Content Optimization](#visual-content-optimization) + - [Caption Writing Formulas](#caption-writing-formulas) + - [Engagement Tactics](#engagement-tactics) + - [Analytics & KPIs](#analytics--kpis) + - [Content Calendar Planning](#content-calendar-planning) + - [Crisis Management Protocol](#crisis-management-protocol) +- [Tool Stack Recommendations](#tool-stack-recommendations) +- [Compliance & Best Practices](#compliance--best-practices) + +--- + ## Platform-Specific Best Practices ### LinkedIn