Content Creator → Redirected

This is a deprecated redirect skill that routes legacy 'content creator' requests to the correct specialist skill. It identifies user intent and directs to content-production for writing, SEO, and brand voice tasks, or to content-strategy for planning tasks. It does not handle requests directly.

✨ What it does

  • Routes writing, SEO, and brand voice requests to content-production.
  • Routes planning, topic cluster, and calendar requests to content-strategy.
  • Routes social media content requests to social-content.
  • Provides a clear table mapping user intents to specialist skills.
  • Includes proactive triggers for common phrases like 'content creator' and 'content plan'.

🎯 When to use it

  • When a user invokes 'content creator' or asks to write a blog post, article, or guide.
  • When a user asks for brand voice analysis or SEO optimization.
  • When a user asks to plan content, build a topic cluster, or create a content calendar.
  • When a user asks for social media content creation.

🚀 How to use

Trigger by asking for 'content creator' or related tasks. The skill will redirect you to the appropriate specialist skill. Example prompts:

Write a blog post about AI.
Create a content calendar for next month.

📄 Output: No direct output; it redirects to content-production or content-strategy which produce the actual deliverables.

📦 Add this skill to Claude Code

# 1. Get the skills repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills /tmp/claude-skills

# 2. Copy this skill into your project (or ~/.claude/skills for all projects)
mkdir -p .claude/skills
cp -r /tmp/claude-skills/marketing-skill/skills/content-creator .claude/skills/content-creator

Skill source: marketing-skill/skills/content-creator/SKILL.md

⚠️ Good to know

This skill is deprecated and does not handle requests directly; it only redirects to specialist skills.

❓ FAQ

What happens when I ask for 'content creator'?

It routes to content-production, as writing is the most likely intent.

Where do I go for brand voice analysis?

It routes to content-production, which includes the brand_voice_analyzer.py tool.

Can I get a content calendar from this skill?

No, it redirects to content-strategy for content calendars.

🤖 Overview, features, install steps and FAQ were generated from the project's SKILL.md on Sep 4, 2026. Always check the original source before running commands.