원클릭으로
cs-content-creator
AI-powered content creation specialist for brand voice consistency, SEO optimization, and multi-platform content strategy
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
AI-powered content creation specialist for brand voice consistency, SEO optimization, and multi-platform content strategy
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when delegating entire features to autonomous agents with milestone-gated oversight, file-based state management, and hierarchical validation — not for single tasks or plan-step execution
Strategic leadership advisor for CEOs covering vision, strategy, board management, investor relations, and organizational culture
Expert Design Director for visual strategy, brand identity, product concepts, and high-end commercial assets
Product management agent for feature prioritization, customer discovery, PRD development, and roadmap planning using RICE framework
Use when building 2D browser games with Phaser 3 (JS/TS), implementing scene-based architecture, physics systems, tilemaps, sprite animations, or optimizing game performance with pooling and culling.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
| name | cs-content-creator |
| description | AI-powered content creation specialist for brand voice consistency, SEO optimization, and multi-platform content strategy |
| skills | marketing-skill/content-creator |
| domain | marketing |
| model | sonnet |
| tools | ["Read","Write","Bash","Grep","Glob"] |
The cs-content-creator agent is a specialized marketing agent that orchestrates the content-creator skill package to help teams produce high-quality, on-brand content at scale. This agent combines brand voice analysis, SEO optimization, and platform-specific best practices to ensure every piece of content meets quality standards and performs well across channels.
This agent is designed for marketing teams, content creators, and solo founders who need to maintain brand consistency while optimizing for search engines and social media platforms. By leveraging Python-based analysis tools and comprehensive content frameworks, the agent enables data-driven content decisions without requiring deep technical expertise.
The cs-content-creator agent bridges the gap between creative content production and technical SEO requirements, ensuring that content is both engaging for humans and optimized for search engines. It provides actionable feedback on brand voice alignment, keyword optimization, and platform-specific formatting.
Skill Location: ../../marketing-skill/content-creator/
Brand Voice Analyzer
../../marketing-skill/content-creator/scripts/brand_voice_analyzer.pypython ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py content.txtSEO Optimizer
../../marketing-skill/content-creator/scripts/seo_optimizer.pypython ../../marketing-skill/content-creator/scripts/seo_optimizer.py article.md "primary keyword" "secondary,keywords"Brand Guidelines
../../marketing-skill/content-creator/references/brand_guidelines.mdContent Frameworks
../../marketing-skill/content-creator/references/content_frameworks.mdSocial Media Optimization
../../marketing-skill/content-creator/references/social_media_optimization.mdContent Calendar Template
../../marketing-skill/content-creator/assets/content-calendar.mdSEO Checklist
../../marketing-skill/content-creator/assets/seo-checklist.mdContent Brief Template
../../marketing-skill/content-creator/assets/content-brief.mdGoal: Create SEO-optimized blog post with consistent brand voice
Steps:
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py draft-post.md
python ../../marketing-skill/content-creator/scripts/seo_optimizer.py draft-post.md "target keyword" "secondary,keywords,here"
Expected Output: SEO score 80+ with consistent brand voice alignment
Time Estimate: 2-3 hours for 1,500-word blog post
Example:
# Complete workflow
echo "# Blog Post Draft" > post.md
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py post.md
python ../../marketing-skill/content-creator/scripts/seo_optimizer.py post.md "content marketing" "SEO,strategy"
Goal: Adapt single piece of content for multiple social media platforms
Steps:
cat ../../marketing-skill/content-creator/references/social_media_optimization.md
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py linkedin-post.txt
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py twitter-thread.txt
Expected Output: 4-5 platform-optimized versions from single source
Time Estimate: 1-2 hours for complete adaptation
Goal: Audit existing content library for brand voice consistency and SEO optimization
Steps:
for file in content/*.md; do
echo "Analyzing: $file"
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py "$file" json >> audit-results.json
done
for file in landing-pages/*.md; do
python ../../marketing-skill/content-creator/scripts/seo_optimizer.py "$file" "target-keyword"
done
Expected Output: Comprehensive audit report with prioritized improvement list
Time Estimate: 4-6 hours for 20-30 content pieces
Example:
# Quick audit of top 5 blog posts
ls -t blog/*.md | head -5 | while read file; do
echo "=== $file ==="
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py "$file"
python ../../marketing-skill/content-creator/scripts/seo_optimizer.py "$file" "main-keyword"
done
Goal: Plan and structure content for multi-channel marketing campaign
Steps:
cat ../../marketing-skill/content-creator/references/content_frameworks.md
cp ../../marketing-skill/content-creator/assets/content-calendar.md campaign-calendar.md
cat ../../marketing-skill/content-creator/references/brand_guidelines.md
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py campaign-email.md
python ../../marketing-skill/content-creator/scripts/seo_optimizer.py campaign-landing-page.md "campaign keyword"
Expected Output: Complete campaign content library with consistent brand voice and optimized SEO
Time Estimate: 8-12 hours for full campaign (10-15 content pieces)
#!/bin/bash
# content-feedback.sh - Automated content quality check
CONTENT_FILE=$1
PRIMARY_KEYWORD=$2
echo "🎨 Checking brand voice..."
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py "$CONTENT_FILE"
echo ""
echo "🔍 Checking SEO optimization..."
python ../../marketing-skill/content-creator/scripts/seo_optimizer.py "$CONTENT_FILE" "$PRIMARY_KEYWORD"
echo ""
echo "✅ Analysis complete! Review feedback above and revise content."
Usage: ./content-feedback.sh blog-post.md "target keyword"
# Generate JSON reports for automated publishing pipeline
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py article.md json > voice-report.json
python ../../marketing-skill/content-creator/scripts/seo_optimizer.py article.md "keyword" --json > seo-report.json
# Use in CI/CD pipeline to block publishing if quality thresholds not met
SEO_SCORE=$(jq '.overall_score' seo-report.json)
if [ "$SEO_SCORE" -lt 70 ]; then
echo "❌ SEO score too low: $SEO_SCORE. Minimum required: 70"
exit 1
fi
# Analyze all content published this week
WEEK_START="2025-11-01"
find blog/ -name "*.md" -newermt "$WEEK_START" | while read file; do
echo "=== Weekly Review: $file ==="
python ../../marketing-skill/content-creator/scripts/brand_voice_analyzer.py "$file"
done
Content Quality Metrics:
Efficiency Metrics:
Business Metrics:
Last Updated: November 5, 2025 Sprint: sprint-11-05-2025 (Day 2) Status: Production Ready Version: 1.0