2026-01-15 11:41:29 -08:00
# Marketing Skills for Claude Code
A collection of AI agent skills focused on marketing tasks. Built for technical marketers and founders who want Claude Code (or similar AI coding assistants) to help with conversion optimization, copywriting, SEO, analytics, and growth engineering.
2026-01-21 13:50:39 -08:00
Built by [Corey Haines ](https://corey.co?ref=marketingskills ). Need hands-on help? Check out [Conversion Factory ](https://conversionfactory.co?ref=marketingskills ) — Corey's agency for conversion optimization, landing pages, and growth strategy. Want to learn more about marketing? Subscribe to [Swipe Files ](https://swipefiles.com?ref=marketingskills ).
2026-01-16 00:31:16 -08:00
2026-01-24 14:14:47 -08:00
New to the terminal and coding agents? Check out the companion guide [Coding for Marketers ](https://codingformarketers.com?ref=marketingskills ).
2026-01-16 00:31:16 -08:00
**Contributions welcome! ** Found a way to improve a skill or have a new one to add? [Open a PR ](#contributing ).
2026-01-15 11:41:29 -08:00
## What are Skills?
Skills are markdown files that give AI agents specialized knowledge and workflows for specific tasks. When you add these to your project, Claude Code can recognize when you're working on a marketing task and apply the right frameworks and best practices.
## Available Skills
| Skill | Description | Triggers |
|-------|-------------|----------|
2026-01-16 10:58:39 -08:00
| [ab-test-setup ](skills/ab-test-setup/ ) | Plan and implement A/B tests | "A/B test," "split test," "experiment" |
| [analytics-tracking ](skills/analytics-tracking/ ) | Set up tracking and measurement | "tracking," "GA4," "GTM," "events" |
| [competitor-alternatives ](skills/competitor-alternatives/ ) | Competitor comparison and alternative pages | "vs page," "alternative page," "[X] vs [Y]" |
| [copy-editing ](skills/copy-editing/ ) | Edit and polish existing copy | "edit this copy," "review my copy," "copy sweep" |
| [copywriting ](skills/copywriting/ ) | Write or improve marketing copy | "write copy," "rewrite," "headlines," "CTA copy" |
| [email-sequence ](skills/email-sequence/ ) | Build email sequences and drip campaigns | "email sequence," "drip campaign," "nurture" |
| [form-cro ](skills/form-cro/ ) | Optimize lead capture and contact forms | "form optimization," "lead form," "contact form" |
| [free-tool-strategy ](skills/free-tool-strategy/ ) | Plan engineering-as-marketing tools | "free tool," "calculator," "lead gen tool" |
| [launch-strategy ](skills/launch-strategy/ ) | Product launches and feature announcements | "launch," "Product Hunt," "feature release" |
| [marketing-ideas ](skills/marketing-ideas/ ) | 140 SaaS marketing ideas and strategies | "marketing ideas," "growth ideas," "how to market" |
| [marketing-psychology ](skills/marketing-psychology/ ) | 70+ mental models for marketing | "psychology," "mental models," "cognitive bias" |
| [onboarding-cro ](skills/onboarding-cro/ ) | Improve user activation and onboarding | "onboarding," "activation," "first-run experience" |
| [page-cro ](skills/page-cro/ ) | Conversion optimization for any marketing page | "optimize [page]," "CRO," "page isn't converting" |
| [paid-ads ](skills/paid-ads/ ) | Create and optimize paid ad campaigns | "PPC," "Google Ads," "Meta ads," "paid media" |
| [paywall-upgrade-cro ](skills/paywall-upgrade-cro/ ) | In-app paywalls and upgrade screens | "paywall," "upgrade screen," "feature gate" |
| [popup-cro ](skills/popup-cro/ ) | Create/optimize popups and modals | "popup," "modal," "exit intent" |
| [pricing-strategy ](skills/pricing-strategy/ ) | Design pricing, packaging, and monetization | "pricing," "tiers," "freemium," "willingness to pay" |
| [programmatic-seo ](skills/programmatic-seo/ ) | Build SEO pages at scale | "programmatic SEO," "template pages," "pages at scale" |
| [referral-program ](skills/referral-program/ ) | Design referral and affiliate programs | "referral," "affiliate," "word of mouth," "viral" |
| [schema-markup ](skills/schema-markup/ ) | Add structured data and rich snippets | "schema," "JSON-LD," "structured data" |
| [seo-audit ](skills/seo-audit/ ) | Audit technical and on-page SEO | "SEO audit," "technical SEO," "not ranking" |
| [signup-flow-cro ](skills/signup-flow-cro/ ) | Optimize signup and registration flows | "signup optimization," "registration form" |
| [social-content ](skills/social-content/ ) | Create and schedule social media content | "LinkedIn post," "Twitter thread," "social media" |
2026-01-15 11:41:29 -08:00
## Installation
2026-01-16 11:43:06 -08:00
### Option 1: CLI Install (Recommended)
2026-01-15 11:41:29 -08:00
2026-01-16 10:58:39 -08:00
Use [add-skill ](https://github.com/vercel-labs/add-skill ) to install skills directly:
2026-01-15 11:41:29 -08:00
``` bash
2026-01-16 10:58:39 -08:00
# Install all skills
npx add-skill coreyhaines31/marketingskills
2026-01-15 11:41:29 -08:00
2026-01-16 10:58:39 -08:00
# Install specific skills
npx add-skill coreyhaines31/marketingskills --skill page-cro copywriting
# List available skills
npx add-skill coreyhaines31/marketingskills --list
2026-01-15 11:41:29 -08:00
```
2026-01-16 10:58:39 -08:00
This automatically installs to your `.claude/skills/` directory.
2026-01-16 11:43:06 -08:00
### Option 2: Claude Code Plugin
Install via Claude Code's built-in plugin system:
``` bash
# Add the marketplace
/plugin marketplace add coreyhaines31/marketingskills
# Install all marketing skills
/plugin install marketing-skills
```
### Option 3: Clone and Copy
2026-01-15 11:41:29 -08:00
Clone the entire repo and copy the skills folder:
``` bash
2026-01-16 10:58:39 -08:00
git clone https://github.com/coreyhaines31/marketingskills.git
cp -r marketingskills/skills/* .claude/skills/
2026-01-15 11:41:29 -08:00
```
2026-01-16 11:43:06 -08:00
### Option 4: Git Submodule
2026-01-15 11:41:29 -08:00
Add as a submodule for easy updates:
``` bash
2026-01-16 10:58:39 -08:00
git submodule add https://github.com/coreyhaines31/marketingskills.git .claude/marketingskills
2026-01-15 11:41:29 -08:00
```
Then reference skills from `.claude/marketingskills/skills/` .
2026-01-16 11:43:06 -08:00
### Option 5: Fork and Customize
2026-01-15 11:41:29 -08:00
1. Fork this repository
2. Customize skills for your specific needs
3. Clone your fork into your projects
## Usage
Once installed, just ask Claude Code to help with marketing tasks:
```
"Help me optimize this landing page for conversions"
→ Uses page-cro skill
"Write homepage copy for my SaaS"
2026-01-16 01:01:02 -08:00
→ Uses copywriting skill
2026-01-15 11:41:29 -08:00
"Set up GA4 tracking for signups"
→ Uses analytics-tracking skill
"Create a 5-email welcome sequence"
→ Uses email-sequence skill
```
You can also invoke skills directly:
```
/page-cro
/email-sequence
/seo-audit
```
## Skill Categories
### Conversion Optimization
- `page-cro` - Any marketing page
- `signup-flow-cro` - Registration flows
- `onboarding-cro` - Post-signup activation
- `form-cro` - Lead capture forms
- `popup-cro` - Modals and overlays
- `paywall-upgrade-cro` - In-app upgrade moments
### Content & Copy
2026-01-16 01:01:02 -08:00
- `copywriting` - Marketing page copy
2026-01-16 00:51:35 -08:00
- `copy-editing` - Edit and polish existing copy
2026-01-15 11:41:29 -08:00
- `email-sequence` - Automated email flows
2026-01-16 01:14:55 -08:00
- `social-content` - Social media content
2026-01-15 11:41:29 -08:00
### SEO & Discovery
- `seo-audit` - Technical and on-page SEO
- `programmatic-seo` - Scaled page generation
2026-01-15 15:43:04 -08:00
- `competitor-alternatives` - Comparison and alternative pages
2026-01-15 11:41:29 -08:00
- `schema-markup` - Structured data
2026-01-16 01:14:55 -08:00
### Paid & Distribution
- `paid-ads` - Google, Meta, LinkedIn ad campaigns
- `social-content` - Social media scheduling and strategy
2026-01-15 11:41:29 -08:00
### Measurement & Testing
- `analytics-tracking` - Event tracking setup
- `ab-test-setup` - Experiment design
### Growth Engineering
- `free-tool-strategy` - Marketing tools and calculators
2026-01-16 01:14:55 -08:00
- `referral-program` - Referral and affiliate programs
2026-01-15 11:41:29 -08:00
2026-01-16 01:14:55 -08:00
### Strategy & Monetization
2026-01-16 00:37:21 -08:00
- `marketing-ideas` - 140 SaaS marketing ideas
2026-01-16 00:45:46 -08:00
- `marketing-psychology` - Mental models and psychology
2026-01-16 00:48:21 -08:00
- `launch-strategy` - Product launches and announcements
2026-01-16 01:14:55 -08:00
- `pricing-strategy` - Pricing, packaging, and monetization
2026-01-16 00:37:21 -08:00
2026-01-15 11:41:29 -08:00
## Contributing
2026-01-16 00:31:16 -08:00
Found a way to improve a skill? Have a new skill to suggest? PRs and issues welcome!
2026-01-26 09:37:57 +11:00
See [CONTRIBUTING.md ](CONTRIBUTING.md ) for guidelines on adding or improving skills.
2026-01-15 11:41:29 -08:00
## License
2026-01-26 09:37:57 +11:00
[MIT ](LICENSE ) - Use these however you want.