Content Creator → Redirected

Deprecated redirect skill that routes legacy 'content creator' requests to the correct specialist.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/content-creator, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/marketing-skill/skills/content-creator#main ~/.claude/skills/content-creator

For one project only, change the path to .claude/skills/content-creator. This skill also uses brand_voice_analyzer.py, seo_optimizer.py — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Content Creator → Redirected

Show the full text56 lines
namedescriptionlicensemetadata
content-creatorDeprecated 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.MIT 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.

  • 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.
1---
2name: "content-creator"
3description: "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."
4license: MIT
5metadata:
6 version: 2.0.0
7 author: Alireza Rezvani
8 category: marketing
9 updated: 2026-03-06
10 status: deprecated
11---
12 
13# Content Creator → Redirected
14 
15> **This skill has been split into two specialist skills.** Use the one that matches your intent:
16 
17| You want to... | Use this instead |
18|----------------|-----------------|
19| **Write** a blog post, article, or guide | [content-production](../content-production/) |
20| **Plan** what content to create, topic clusters, calendar | [content-strategy](../content-strategy/) |
21| **Analyze brand voice** | [content-production](../content-production/) (includes `brand_voice_analyzer.py`) |
22| **Optimize SEO** for existing content | [content-production](../content-production/) (includes `seo_optimizer.py`) |
23| **Create social media content** | [social-content](../social-content/) |
24 
25## Why the Change
26 
27The 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:
28 
29- **content-production** — Full pipeline: research → brief → draft → optimize → publish. Includes all Python tools from the original content-creator.
30- **content-strategy** — Strategic planning: topic clusters, keyword research, content calendars, prioritization frameworks.
31 
32## Proactive Triggers
33 
34- **User asks "content creator"** → Route to content-production (most likely intent is writing).
35- **User asks "content plan" or "what should I write"** → Route to content-strategy.
36 
37## Output Artifacts
38 
39| When you ask for... | Routed to... |
40|---------------------|-------------|
41| "Write a blog post" | content-production |
42| "Content calendar" | content-strategy |
43| "Brand voice analysis" | content-production (`brand_voice_analyzer.py`) |
44| "SEO optimization" | content-production (`seo_optimizer.py`) |
45 
46## Communication
47 
48This is a redirect skill. Route the user to the correct specialist — don't attempt to handle the request here.
49 
50## Related Skills
51 
52- **content-production**: Full content execution pipeline (successor).
53- **content-strategy**: Content planning and topic selection (successor).
54- **content-humanizer**: Post-processing AI content to sound authentic.
55- **marketing-context**: Foundation context that both successors read.
56 

Discussion

Alternatives

Also in Roadmap & prioritiesSee all 277 in Product →