Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aradotso avatar

Ai Marketing Claude Suite

  • 982 installs
  • 6 repo stars
  • Updated July 18, 2026
  • aradotso/marketing-skills

ai-marketing-claude-suite is a Claude Code skill bundle that generates optimized marketing copy, runs website audits, creates email sequences, and produces client-ready PDF reports for developers shipping products that n

About

ai-marketing-claude-suite is a comprehensive marketing automation skill from aradotso/marketing-skills that equips Claude Code with 15 skills spanning website audits, copywriting, email sequences, ad campaigns, competitive analysis, social media calendars, and PDF reporting. Trigger phrases include "audit this website's marketing," "generate marketing copy for this page," "create an email sequence," and "run a complete marketing audit." The suite produces client-ready deliverables such as optimized page copy, multi-step email flows, ad copy variants, and PDF marketing proposals. Developers reach for ai-marketing-claude-suite when a shipped product needs professional marketing assets without switching to a separate marketing toolchain.

  • 15 specialized marketing skills with parallel subagent execution
  • Audits websites across 6 marketing dimensions: content, conversion, SEO, competitive, brand, growth
  • Generates before/after optimized marketing copy, email sequences, and 30-day social calendars
  • Performs automated competitive intelligence and produces client PDF reports
  • Triggers include audit this website's marketing, generate marketing copy for this page, create an email sequence

Ai Marketing Claude Suite by the numbers

  • 982 all-time installs (skills.sh)
  • +3 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #443 of 1,881 Marketing & SEO skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aradotso/marketing-skills --skill ai-marketing-claude-suite

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs982
repo stars6
Last updatedJuly 18, 2026
Repositoryaradotso/marketing-skills

How do you generate marketing copy and audit a website?

Instantly generate optimized marketing copy, run website audits, create email sequences, and produce client-ready PDF reports using Claude Code.

Who is it for?

Developers and technical founders who need landing-page copy, email sequences, and marketing audits generated directly inside Claude Code.

Skip if: Skip ai-marketing-claude-suite when the task is pure application code, API design, or infrastructure work unrelated to marketing content.

When should I use this skill?

The user asks to audit website marketing, generate copy, create email sequences, build social calendars, or produce client marketing proposals.

What you get

Optimized page copy, email sequences, ad campaign drafts, social media calendars, competitive analysis notes, and PDF marketing reports.

  • Marketing copy drafts
  • Email sequence outlines
  • PDF marketing reports

By the numbers

  • Bundles 15 marketing skills including audits, copywriting, and email sequences

Files

SKILL.mdMarkdownGitHub ↗

AI Marketing Suite for Claude Code

Skill by ara.so — Marketing Skills collection.

This skill enables Claude Code to perform comprehensive marketing analysis, copywriting, competitive intelligence, and automation tasks. It includes 15 specialized marketing skills with parallel subagent execution, automated website analysis, and client-ready PDF report generation.

What This Project Does

AI Marketing Claude is a comprehensive marketing automation suite that:

  • Audits websites across 6 marketing dimensions (content, conversion, SEO, competitive, brand, growth)
  • Generates marketing copy with before/after optimization examples
  • Creates email sequences (welcome, nurture, launch) with full automation
  • Builds content calendars for 30-day social media planning
  • Analyzes competitors with automated intelligence gathering
  • Produces PDF reports suitable for client deliverables
  • Scores marketing effectiveness with weighted methodology (0-100)

All functionality is accessible through /market commands in Claude Code.

Installation

One-Command Install

curl -fsSL https://raw.githubusercontent.com/zubair-trabzada/ai-marketing-claude/main/install.sh | bash

Manual Installation

git clone https://github.com/zubair-trabzada/ai-marketing-claude.git
cd ai-marketing-claude
./install.sh

The installer copies skill files to ~/.claude/skills/ and agent definitions to ~/.claude/agents/.

Optional PDF Support

For client-ready PDF reports:

pip install reportlab

Python Dependencies

pip install -r requirements.txt

Required packages:

  • requests - HTTP requests for webpage analysis
  • beautifulsoup4 - HTML parsing and content extraction
  • reportlab - PDF generation (optional)

Core Commands

CommandPurposeOutput
/market audit <url>Full marketing audit with 5 parallel agentsScored report (69/100 format)
/market quick <url>60-second marketing snapshotQuick analysis
/market copy <url>Generate optimized copyBefore/after examples
/market emails <topic>Email sequence generator5-8 email sequence
/market social <topic>Social media calendar30-day content plan
/market ads <url>Ad creative and copyMulti-platform ads
/market funnel <url>Sales funnel analysisFunnel optimization
/market competitors <url>Competitive intelligenceCompetitor report
/market landing <url>Landing page CROCRO recommendations
/market launch <product>Product launch playbookLaunch checklist
/market proposal <client>Client proposal generatorProposal document
/market report <url>Marketing report (Markdown).md file
/market report-pdf <url>Professional PDF report.pdf file
/market seo <url>SEO content auditSEO analysis
/market brand <url>Brand voice analysisBrand guidelines

Usage Patterns

Running a Full Marketing Audit

/market audit https://example.com

This command: 1. Launches 5 parallel subagents (content, conversion, SEO, competitive, strategy) 2. Scores the website across 6 dimensions 3. Generates actionable recommendations 4. Saves output to MARKETING-AUDIT.md

Expected output format:

Launching 5 parallel agents...
✓ Content & Messaging Analysis     — Score: 72/100
✓ Conversion Optimization          — Score: 58/100
✓ SEO & Discoverability            — Score: 81/100
✓ Competitive Positioning          — Score: 64/100
✓ Brand & Trust                    — Score: 76/100
✓ Growth & Strategy                — Score: 61/100

Overall Marketing Score: 69/100

Full report saved to MARKETING-AUDIT.md

Generating Email Sequences

/market emails SaaS product launch

Produces a complete email sequence with:

  • Subject lines and preview text
  • Email bodies with personalization
  • CTAs and timing recommendations
  • A/B test variations

Creating Social Media Calendars

/market social AI productivity tools

Generates 30-day content calendar with:

  • Daily post ideas
  • Platform-specific formatting
  • Hashtag recommendations
  • Engagement strategies

Competitor Analysis

/market competitors https://example.com

Automated competitive intelligence:

  • Identifies top competitors
  • Analyzes positioning and messaging
  • Extracts pricing strategies
  • Maps feature comparisons

Generating Client Proposals

/market proposal "Tech startup needing SEO services"

Creates customized proposal with:

  • Executive summary
  • Recommended services
  • Pricing tiers
  • Timeline and deliverables

Python Script Integration

The suite includes Python scripts for automated analysis:

Website Analysis Script

# scripts/analyze_page.py
import requests
from bs4 import BeautifulSoup
import json

def analyze_marketing(url):
    """
    Analyzes a webpage for marketing effectiveness
    Returns structured data for scoring
    """
    response = requests.get(url, headers={
        'User-Agent': 'Mozilla/5.0 (Marketing Analysis Bot)'
    })
    soup = BeautifulSoup(response.content, 'html.parser')
    
    analysis = {
        'headlines': extract_headlines(soup),
        'ctas': extract_ctas(soup),
        'value_props': extract_value_propositions(soup),
        'social_proof': extract_social_proof(soup),
        'seo_elements': extract_seo_elements(soup)
    }
    
    return analysis

Usage from Claude Code:

python scripts/analyze_page.py https://example.com

Competitor Scanner

# scripts/competitor_scanner.py
def scan_competitors(base_url):
    """
    Identifies and analyzes competitor websites
    """
    competitors = discover_competitors(base_url)
    
    reports = []
    for competitor in competitors:
        reports.append({
            'url': competitor,
            'positioning': analyze_positioning(competitor),
            'pricing': extract_pricing(competitor),
            'features': extract_features(competitor)
        })
    
    return reports

Social Calendar Generator

# scripts/social_calendar.py
def generate_calendar(topic, days=30, platforms=['linkedin', 'twitter']):
    """
    Generates social media content calendar
    """
    calendar = []
    
    for day in range(days):
        for platform in platforms:
            post = {
                'day': day + 1,
                'platform': platform,
                'content': generate_post_idea(topic, platform),
                'hashtags': suggest_hashtags(topic, platform),
                'best_time': get_optimal_posting_time(platform)
            }
            calendar.append(post)
    
    return calendar

PDF Report Generator

# scripts/generate_pdf_report.py
from reportlab.lib.pagesizes import letter
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer
from reportlab.lib.styles import getSampleStyleSheet

def generate_pdf(audit_data, output_path='marketing-report.pdf'):
    """
    Generates professional PDF marketing report
    Requires: pip install reportlab
    """
    doc = SimpleDocTemplate(output_path, pagesize=letter)
    story = []
    styles = getSampleStyleSheet()
    
    # Title
    story.append(Paragraph(f"Marketing Audit: {audit_data['url']}", styles['Title']))
    story.append(Spacer(1, 12))
    
    # Overall score
    story.append(Paragraph(f"Overall Score: {audit_data['overall_score']}/100", styles['Heading1']))
    
    # Category scores
    for category, score in audit_data['categories'].items():
        story.append(Paragraph(f"{category}: {score}/100", styles['Heading2']))
        story.append(Paragraph(audit_data['recommendations'][category], styles['BodyText']))
        story.append(Spacer(1, 12))
    
    doc.build(story)
    return output_path

Architecture Overview

Skill Hierarchy

market/SKILL.md                     # Main orchestrator (routes all commands)
├── skills/market-audit/SKILL.md    # Full audit coordination
├── skills/market-copy/SKILL.md     # Copywriting generation
├── skills/market-emails/SKILL.md   # Email sequences
├── skills/market-social/SKILL.md   # Social calendars
└── [11 more specialized skills]

Parallel Subagents

The audit command spawns 5 parallel agents:

1. market-content.md - Analyzes messaging, headlines, value propositions, CTAs 2. market-conversion.md - Reviews funnels, forms, friction points, urgency 3. market-competitive.md - Assesses positioning, differentiation, market awareness 4. market-technical.md - Evaluates SEO, tracking, technical performance 5. market-strategy.md - Examines brand, pricing, growth channels

Each agent returns a structured score and recommendations.

Scoring Methodology

Marketing effectiveness is scored across 6 weighted dimensions:

CategoryWeightCriteria
Content & Messaging25%Copy quality, headlines, value props, CTAs
Conversion Optimization20%Funnel design, forms, social proof, urgency
SEO & Discoverability20%On-page SEO, technical SEO, content structure
Competitive Positioning15%Differentiation, market awareness, alternatives
Brand & Trust10%Design quality, trust signals, authority
Growth & Strategy10%Pricing model, channels, retention

Overall Score = Weighted average (0-100 scale)

Configuration

Environment Setup

No API keys required — all analysis runs locally or via public web scraping.

For custom configurations, edit skill files:

~/.claude/skills/market/SKILL.md

Custom Templates

Modify marketing templates in the templates/ directory:

templates/
├── email-welcome.md        # Welcome sequence template
├── email-nurture.md        # Lead nurture template
├── email-launch.md         # Product launch template
├── proposal-template.md    # Client proposal structure
├── content-calendar.md     # Content calendar format
└── launch-checklist.md     # Launch playbook structure

Common Workflows

Agency Sales Flow

# 1. Audit prospect's website
/market audit https://prospect.com

# 2. Generate competitive analysis
/market competitors https://prospect.com

# 3. Create proposal
/market proposal "B2B SaaS company needing content marketing"

# 4. Generate PDF report for presentation
/market report-pdf https://prospect.com

Product Launch

# 1. Create launch playbook
/market launch "AI-powered email assistant"

# 2. Generate email sequence
/market emails "Product launch for email assistant"

# 3. Build social calendar
/market social "AI email assistant launch"

# 4. Create ad campaigns
/market ads https://product-landing-page.com

Website Optimization

# 1. Run full audit
/market audit https://mysite.com

# 2. Analyze landing pages
/market landing https://mysite.com/pricing

# 3. Optimize copy
/market copy https://mysite.com

# 4. Check SEO
/market seo https://mysite.com

Troubleshooting

PDF Generation Fails

Problem: /market report-pdf command fails

Solution: Install reportlab

pip install reportlab

Website Analysis Timeout

Problem: Analysis hangs on large websites

Solution: Use /market quick for faster analysis or break into specific commands:

/market seo https://example.com
/market copy https://example.com

Skills Not Found

Problem: Claude doesn't recognize /market commands

Solution: Verify installation

ls -la ~/.claude/skills/market*
ls -la ~/.claude/agents/market-*

Re-run installer if needed:

./install.sh

Python Script Errors

Problem: Python scripts fail with import errors

Solution: Install all dependencies

pip install -r requirements.txt

For specific scripts:

pip install requests beautifulsoup4 reportlab

Competitor Analysis Returns Empty

Problem: No competitors found

Solution: Manually specify competitor URLs:

# Edit scripts/competitor_scanner.py
MANUAL_COMPETITORS = [
    'https://competitor1.com',
    'https://competitor2.com'
]

Uninstallation

Remove all marketing skills:

./uninstall.sh

Or manually:

rm -rf ~/.claude/skills/market*
rm -f ~/.claude/agents/market-*.md

Best Practices

For Accurate Audits

  • Use full URLs including https://
  • Ensure target website is publicly accessible
  • Run audits on primary landing pages, not deep subpages

For Email Sequences

  • Be specific with topic (e.g., "SaaS trial to paid conversion" not "emails")
  • Specify audience segment when possible
  • Request specific sequence length (5, 7, or 10 emails)

For Client Deliverables

  • Always generate PDF reports for professional presentation
  • Combine multiple analyses (audit + competitors + proposal)
  • Customize templates before generation

For Best Results

  • Run multiple specific commands rather than one generic command
  • Use /market quick first, then deep-dive with specific skills
  • Save all outputs before re-running analyses

Related skills

How it compares

Pick ai-marketing-claude-suite over single-purpose copywriting skills when you need audits, email sequences, ads, and PDF reports in one Claude Code workflow.

FAQ

How many skills does ai-marketing-claude-suite include?

ai-marketing-claude-suite bundles 15 skills covering website audits, copywriting, email sequences, ad campaigns, competitive analysis, social media calendars, and PDF reporting. Each skill activates through natural-language trigger phrases inside Claude Code.

What deliverables does ai-marketing-claude-suite produce?

ai-marketing-claude-suite produces optimized marketing copy, multi-step email sequences, ad campaign drafts, social media calendars, competitive analysis summaries, and client-ready PDF marketing reports. Outputs are designed for direct use on landing pages and client presentatio

When should developers invoke ai-marketing-claude-suite?

Developers should invoke ai-marketing-claude-suite when they need to audit a website's marketing, generate page copy, create email sequences, or build ad campaigns. Trigger phrases include "run a complete marketing audit" and "generate marketing copy for this page."

Marketing & SEOseocontentlifecycle

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.