content-creator
Audited by Runlayer on Feb 23, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: content-creator description: Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating social media content, analyzing brand voice, optimizing SEO, planning content calendars, or when user mentions content creation, brand voice, SEO optimization, social media marketing, or content strategy.
Malicious tool definition detected
Tool: assets/content_calendar_template.md Description: # 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*
Malicious tool definition detected
Tool: references/brand_guidelines.md Description: # Brand Voice & Style Guidelines ## Brand Voice Framework ### 1.
Malicious tool definition detected
Tool: references/content_frameworks.md [1/2] Description: # Content Creation Frameworks & Templates ## Content Types & Templates ### 1.
Tool: references/content_frameworks.md [2/2] Description: ✓ 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.
Malicious tool definition detected
Tool: references/social_media_optimization.md [1/2] Description: # Social Media Optimization Guide ## Platform-Specific Best Practices ### LinkedIn **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
Tool: references/social_media_optimization.md [2/2] Description: / 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) Sa
Malicious tool definition detected
Tool: scripts/brand_voice_analyzer.py Description: #!/usr/bin/env python3 """ Brand Voice Analyzer - Analyzes content to establish and maintain brand voice consistency """ import re from typing import Dict, List, Tuple import json class BrandVoiceAnalyzer: def __init__(self): self.voice_dimensions = { 'formality': { 'formal': ['hereby', 'therefore', 'furthermore', 'pursuant', 'regarding'], 'casual': ['hey', 'cool', 'awesome', 'stuff', 'yeah', 'gonna'] }, 'tone': { 'professional': ['expertise', '
Malicious tool definition detected
Tool: scripts/seo_optimizer.py [1/2] Description: #!/usr/bin/env python3 """ SEO Content Optimizer - Analyzes and optimizes content for SEO """ import re from typing import Dict, List, Set import json class SEOOptimizer: def __init__(self): # Common stop words to filter self.stop_words = { 'the', 'a', 'an', 'and', 'or', 'but', 'in', 'on', 'at', 'to', 'for', 'of', 'with', 'by', 'from', 'as', 'is', 'was', 'are', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'do', 'does', 'did', 'will', 'wou
Tool: scripts/seo_optimizer.py [2/2]