Merge pull request #68 from coreyhaines31/feature/agents-directory-migration
Migrate context paths from .claude/ to .agents/
This commit is contained in:
commit
e47e3a3073
35 changed files with 127 additions and 108 deletions
|
|
@ -4,7 +4,7 @@ Guidelines for AI agents working in this repository.
|
||||||
|
|
||||||
## Repository Overview
|
## Repository Overview
|
||||||
|
|
||||||
This repository contains **Agent Skills** for AI agents following the [Agent Skills specification](https://agentskills.io/specification.md). It also serves as a **Claude Code plugin marketplace** via `.claude-plugin/marketplace.json`.
|
This repository contains **Agent Skills** for AI agents following the [Agent Skills specification](https://agentskills.io/specification.md). Skills install to `.agents/skills/` (the cross-agent standard). This repo also serves as a **Claude Code plugin marketplace** via `.claude-plugin/marketplace.json`.
|
||||||
|
|
||||||
- **Name**: Marketing Skills
|
- **Name**: Marketing Skills
|
||||||
- **GitHub**: [coreyhaines31/marketingskills](https://github.com/coreyhaines31/marketingskills)
|
- **GitHub**: [coreyhaines31/marketingskills](https://github.com/coreyhaines31/marketingskills)
|
||||||
|
|
|
||||||
27
README.md
27
README.md
|
|
@ -1,6 +1,6 @@
|
||||||
# Marketing Skills for Claude Code
|
# Marketing Skills for AI Agents
|
||||||
|
|
||||||
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.
|
A collection of AI agent skills focused on marketing tasks. Built for technical marketers and founders who want AI coding agents to help with conversion optimization, copywriting, SEO, analytics, and growth engineering. Works with Claude Code, OpenAI Codex, Cursor, Windsurf, and any agent that supports the [Agent Skills spec](https://agentskills.io).
|
||||||
|
|
||||||
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). Want an autonomous AI agent that uses these skills to be your CMO? Try [Magister](https://magistermarketing.com?ref=marketingskills).
|
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). Want an autonomous AI agent that uses these skills to be your CMO? Try [Magister](https://magistermarketing.com?ref=marketingskills).
|
||||||
|
|
||||||
|
|
@ -12,7 +12,7 @@ Run into a problem or have a question? [Open an issue](https://github.com/coreyh
|
||||||
|
|
||||||
## What are Skills?
|
## 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.
|
Skills are markdown files that give AI agents specialized knowledge and workflows for specific tasks. When you add these to your project, your agent can recognize when you're working on a marketing task and apply the right frameworks and best practices.
|
||||||
|
|
||||||
## How Skills Work Together
|
## How Skills Work Together
|
||||||
|
|
||||||
|
|
@ -104,7 +104,7 @@ npx skills add coreyhaines31/marketingskills --skill page-cro copywriting
|
||||||
npx skills add coreyhaines31/marketingskills --list
|
npx skills add coreyhaines31/marketingskills --list
|
||||||
```
|
```
|
||||||
|
|
||||||
This automatically installs to your `.claude/skills/` directory.
|
This automatically installs to your `.agents/skills/` directory (and symlinks into `.claude/skills/` for Claude Code compatibility).
|
||||||
|
|
||||||
### Option 2: Claude Code Plugin
|
### Option 2: Claude Code Plugin
|
||||||
|
|
||||||
|
|
@ -124,7 +124,7 @@ Clone the entire repo and copy the skills folder:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/coreyhaines31/marketingskills.git
|
git clone https://github.com/coreyhaines31/marketingskills.git
|
||||||
cp -r marketingskills/skills/* .claude/skills/
|
cp -r marketingskills/skills/* .agents/skills/
|
||||||
```
|
```
|
||||||
|
|
||||||
### Option 4: Git Submodule
|
### Option 4: Git Submodule
|
||||||
|
|
@ -132,10 +132,10 @@ cp -r marketingskills/skills/* .claude/skills/
|
||||||
Add as a submodule for easy updates:
|
Add as a submodule for easy updates:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git submodule add https://github.com/coreyhaines31/marketingskills.git .claude/marketingskills
|
git submodule add https://github.com/coreyhaines31/marketingskills.git .agents/marketingskills
|
||||||
```
|
```
|
||||||
|
|
||||||
Then reference skills from `.claude/marketingskills/skills/`.
|
Then reference skills from `.agents/marketingskills/skills/`.
|
||||||
|
|
||||||
### Option 5: Fork and Customize
|
### Option 5: Fork and Customize
|
||||||
|
|
||||||
|
|
@ -158,9 +158,20 @@ npx skillkit install coreyhaines31/marketingskills --skill page-cro copywriting
|
||||||
npx skillkit install coreyhaines31/marketingskills --list
|
npx skillkit install coreyhaines31/marketingskills --list
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Upgrading from v1.0
|
||||||
|
|
||||||
|
Skills now use `.agents/` instead of `.claude/` for the product marketing context file. Move your existing context file:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p .agents
|
||||||
|
mv .claude/product-marketing-context.md .agents/product-marketing-context.md
|
||||||
|
```
|
||||||
|
|
||||||
|
Skills will still check `.claude/` as a fallback, so nothing breaks if you don't.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Once installed, just ask Claude Code to help with marketing tasks:
|
Once installed, just ask your agent to help with marketing tasks:
|
||||||
|
|
||||||
```
|
```
|
||||||
"Help me optimize this landing page for conversions"
|
"Help me optimize this landing page for conversions"
|
||||||
|
|
|
||||||
70
VERSIONS.md
70
VERSIONS.md
|
|
@ -4,41 +4,47 @@ Current versions of all skills. Agents can compare against local versions to che
|
||||||
|
|
||||||
| Skill | Version | Last Updated |
|
| Skill | Version | Last Updated |
|
||||||
|-------|---------|--------------|
|
|-------|---------|--------------|
|
||||||
| ab-test-setup | 1.0.0 | 2026-01-27 |
|
| ab-test-setup | 1.1.0 | 2026-02-27 |
|
||||||
| ad-creative | 1.0.0 | 2026-02-17 |
|
| ad-creative | 1.1.0 | 2026-02-27 |
|
||||||
| ai-seo | 1.0.0 | 2026-02-18 |
|
| ai-seo | 1.1.0 | 2026-02-27 |
|
||||||
| analytics-tracking | 1.0.0 | 2026-01-27 |
|
| analytics-tracking | 1.1.0 | 2026-02-27 |
|
||||||
| churn-prevention | 1.0.0 | 2026-02-18 |
|
| churn-prevention | 1.1.0 | 2026-02-27 |
|
||||||
| cold-email | 1.0.0 | 2026-02-14 |
|
| cold-email | 1.1.0 | 2026-02-27 |
|
||||||
| competitor-alternatives | 1.0.0 | 2026-01-27 |
|
| competitor-alternatives | 1.1.0 | 2026-02-27 |
|
||||||
| content-strategy | 1.0.0 | 2026-01-27 |
|
| content-strategy | 1.1.0 | 2026-02-27 |
|
||||||
| copy-editing | 1.0.0 | 2026-01-27 |
|
| copy-editing | 1.1.0 | 2026-02-27 |
|
||||||
| copywriting | 1.0.0 | 2026-01-27 |
|
| copywriting | 1.1.0 | 2026-02-27 |
|
||||||
| email-sequence | 1.0.0 | 2026-01-27 |
|
| email-sequence | 1.1.0 | 2026-02-27 |
|
||||||
| form-cro | 1.0.0 | 2026-01-27 |
|
| form-cro | 1.1.0 | 2026-02-27 |
|
||||||
| free-tool-strategy | 1.0.0 | 2026-01-27 |
|
| free-tool-strategy | 1.1.0 | 2026-02-27 |
|
||||||
| launch-strategy | 1.0.0 | 2026-01-27 |
|
| launch-strategy | 1.1.0 | 2026-02-27 |
|
||||||
| marketing-ideas | 1.0.0 | 2026-01-27 |
|
| marketing-ideas | 1.1.0 | 2026-02-27 |
|
||||||
| marketing-psychology | 1.0.0 | 2026-01-27 |
|
| marketing-psychology | 1.1.0 | 2026-02-27 |
|
||||||
| onboarding-cro | 1.0.0 | 2026-01-27 |
|
| onboarding-cro | 1.1.0 | 2026-02-27 |
|
||||||
| page-cro | 1.0.0 | 2026-01-27 |
|
| page-cro | 1.1.0 | 2026-02-27 |
|
||||||
| paid-ads | 1.0.0 | 2026-01-27 |
|
| paid-ads | 1.1.0 | 2026-02-27 |
|
||||||
| paywall-upgrade-cro | 1.0.0 | 2026-01-27 |
|
| paywall-upgrade-cro | 1.1.0 | 2026-02-27 |
|
||||||
| popup-cro | 1.0.0 | 2026-01-27 |
|
| popup-cro | 1.1.0 | 2026-02-27 |
|
||||||
| pricing-strategy | 1.0.0 | 2026-01-27 |
|
| pricing-strategy | 1.1.0 | 2026-02-27 |
|
||||||
| product-marketing-context | 1.0.0 | 2026-01-27 |
|
| product-marketing-context | 1.1.0 | 2026-02-27 |
|
||||||
| programmatic-seo | 1.0.0 | 2026-01-27 |
|
| programmatic-seo | 1.1.0 | 2026-02-27 |
|
||||||
| referral-program | 1.0.0 | 2026-01-27 |
|
| referral-program | 1.1.0 | 2026-02-27 |
|
||||||
| revops | 1.0.0 | 2026-02-22 |
|
| revops | 1.1.0 | 2026-02-27 |
|
||||||
| sales-enablement | 1.0.0 | 2026-02-22 |
|
| sales-enablement | 1.1.0 | 2026-02-27 |
|
||||||
| schema-markup | 1.0.0 | 2026-01-27 |
|
| schema-markup | 1.1.0 | 2026-02-27 |
|
||||||
| seo-audit | 1.0.0 | 2026-01-27 |
|
| seo-audit | 1.1.0 | 2026-02-27 |
|
||||||
| signup-flow-cro | 1.0.0 | 2026-01-27 |
|
| signup-flow-cro | 1.1.0 | 2026-02-27 |
|
||||||
| site-architecture | 1.0.0 | 2026-02-21 |
|
| site-architecture | 1.1.0 | 2026-02-27 |
|
||||||
| social-content | 1.0.0 | 2026-01-27 |
|
| social-content | 1.1.0 | 2026-02-27 |
|
||||||
|
|
||||||
## Recent Changes
|
## Recent Changes
|
||||||
|
|
||||||
|
### 2026-02-27
|
||||||
|
- Migrated context path from `.claude/` to `.agents/` for agent-agnostic compatibility
|
||||||
|
- All skills now check `.agents/product-marketing-context.md` first, with `.claude/` fallback for older setups
|
||||||
|
- Updated install paths in README to reference `.agents/skills/`
|
||||||
|
- Bumped all 32 skills from 1.0.0 → 1.1.0
|
||||||
|
|
||||||
### 2026-02-22
|
### 2026-02-22
|
||||||
- Added `revops` skill for revenue operations, lead lifecycle, scoring, routing, pipeline management, and CRM automation
|
- Added `revops` skill for revenue operations, lead lifecycle, scoring, routing, pipeline management, and CRM automation
|
||||||
- Added `sales-enablement` skill for sales decks, one-pagers, objection handling, demo scripts, and sales playbooks
|
- Added `sales-enablement` skill for sales decks, one-pagers, objection handling, demo scripts, and sales playbooks
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: ab-test-setup
|
name: ab-test-setup
|
||||||
description: When the user wants to plan, design, or implement an A/B test or experiment. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," or "hypothesis." For tracking implementation, see analytics-tracking.
|
description: When the user wants to plan, design, or implement an A/B test or experiment. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," or "hypothesis." For tracking implementation, see analytics-tracking.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# A/B Test Setup
|
# A/B Test Setup
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in experimentation and A/B testing. Your goal is to help desig
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before designing a test, understand:
|
Before designing a test, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: ad-creative
|
name: ad-creative
|
||||||
description: "When the user wants to generate, iterate, or scale ad creative — headlines, descriptions, primary text, or full ad variations — for any paid advertising platform. Also use when the user mentions 'ad copy variations,' 'ad creative,' 'generate headlines,' 'RSA headlines,' 'bulk ad copy,' 'ad iterations,' 'creative testing,' or 'ad performance optimization.' This skill covers generating ad creative at scale, iterating based on performance data, and enforcing platform character limits. For campaign strategy and targeting, see paid-ads. For landing page copy, see copywriting."
|
description: "When the user wants to generate, iterate, or scale ad creative — headlines, descriptions, primary text, or full ad variations — for any paid advertising platform. Also use when the user mentions 'ad copy variations,' 'ad creative,' 'generate headlines,' 'RSA headlines,' 'bulk ad copy,' 'ad iterations,' 'creative testing,' or 'ad performance optimization.' This skill covers generating ad creative at scale, iterating based on performance data, and enforcing platform character limits. For campaign strategy and targeting, see paid-ads. For landing page copy, see copywriting."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Ad Creative
|
# Ad Creative
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert performance creative strategist. Your goal is to generate high
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: ai-seo
|
name: ai-seo
|
||||||
description: "When the user wants to optimize content for AI search engines, get cited by LLMs, or appear in AI-generated answers. Also use when the user mentions 'AI SEO,' 'AEO,' 'GEO,' 'LLMO,' 'answer engine optimization,' 'generative engine optimization,' 'LLM optimization,' 'AI Overviews,' 'optimize for ChatGPT,' 'optimize for Perplexity,' 'AI citations,' 'AI visibility,' or 'zero-click search.' This skill covers content optimization for AI answer engines, monitoring AI visibility, and getting cited as a source. For traditional technical and on-page SEO audits, see seo-audit. For structured data implementation, see schema-markup."
|
description: "When the user wants to optimize content for AI search engines, get cited by LLMs, or appear in AI-generated answers. Also use when the user mentions 'AI SEO,' 'AEO,' 'GEO,' 'LLMO,' 'answer engine optimization,' 'generative engine optimization,' 'LLM optimization,' 'AI Overviews,' 'optimize for ChatGPT,' 'optimize for Perplexity,' 'AI citations,' 'AI visibility,' or 'zero-click search.' This skill covers content optimization for AI answer engines, monitoring AI visibility, and getting cited as a source. For traditional technical and on-page SEO audits, see seo-audit. For structured data implementation, see schema-markup."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# AI SEO
|
# AI SEO
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in AI search optimization — the practice of making content d
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: analytics-tracking
|
name: analytics-tracking
|
||||||
description: When the user wants to set up, improve, or audit analytics tracking and measurement. Also use when the user mentions "set up tracking," "GA4," "Google Analytics," "conversion tracking," "event tracking," "UTM parameters," "tag manager," "GTM," "analytics implementation," or "tracking plan." For A/B test measurement, see ab-test-setup.
|
description: When the user wants to set up, improve, or audit analytics tracking and measurement. Also use when the user mentions "set up tracking," "GA4," "Google Analytics," "conversion tracking," "event tracking," "UTM parameters," "tag manager," "GTM," "analytics implementation," or "tracking plan." For A/B test measurement, see ab-test-setup.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Analytics Tracking
|
# Analytics Tracking
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in analytics implementation and measurement. Your goal is to h
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before implementing tracking, understand:
|
Before implementing tracking, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: churn-prevention
|
name: churn-prevention
|
||||||
description: "When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' or 'involuntary churn.' This skill covers voluntary churn (cancel flows, save offers, exit surveys) and involuntary churn (dunning, payment recovery). For post-cancel win-back email sequences, see email-sequence. For in-app upgrade paywalls, see paywall-upgrade-cro."
|
description: "When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' or 'involuntary churn.' This skill covers voluntary churn (cancel flows, save offers, exit surveys) and involuntary churn (dunning, payment recovery). For post-cancel win-back email sequences, see email-sequence. For in-app upgrade paywalls, see paywall-upgrade-cro."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Churn Prevention
|
# Churn Prevention
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in SaaS retention and churn prevention. Your goal is to help r
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
---
|
---
|
||||||
name: cold-email
|
name: cold-email
|
||||||
description: Write B2B cold emails and follow-up sequences that get replies. Use when the user wants to write cold outreach emails, prospecting emails, cold email campaigns, sales development emails, or SDR emails. Covers subject lines, opening lines, body copy, CTAs, personalization, and multi-touch follow-up sequences.
|
description: Write B2B cold emails and follow-up sequences that get replies. Use when the user wants to write cold outreach emails, prospecting emails, cold email campaigns, sales development emails, or SDR emails. Covers subject lines, opening lines, body copy, CTAs, personalization, and multi-touch follow-up sequences.
|
||||||
|
metadata:
|
||||||
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Cold Email Writing
|
# Cold Email Writing
|
||||||
|
|
@ -10,7 +12,7 @@ You are an expert cold email writer. Your goal is to write emails that sound lik
|
||||||
## Before Writing
|
## Before Writing
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Understand the situation (ask if not provided):
|
Understand the situation (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: competitor-alternatives
|
name: competitor-alternatives
|
||||||
description: "When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' or 'competitive landing pages.' Covers four formats: singular alternative, plural alternatives, you vs competitor, and competitor vs competitor. Emphasizes deep research, modular content architecture, and varied section types beyond feature tables."
|
description: "When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' or 'competitive landing pages.' Covers four formats: singular alternative, plural alternatives, you vs competitor, and competitor vs competitor. Emphasizes deep research, modular content architecture, and varied section types beyond feature tables."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Competitor & Alternative Pages
|
# Competitor & Alternative Pages
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in creating competitor comparison and alternative pages. Your
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before creating competitor pages, understand:
|
Before creating competitor pages, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: content-strategy
|
name: content-strategy
|
||||||
description: When the user wants to plan a content strategy, decide what content to create, or figure out what topics to cover. Also use when the user mentions "content strategy," "what should I write about," "content ideas," "blog strategy," "topic clusters," or "content planning." For writing individual pieces, see copywriting. For SEO-specific audits, see seo-audit.
|
description: When the user wants to plan a content strategy, decide what content to create, or figure out what topics to cover. Also use when the user mentions "content strategy," "what should I write about," "content ideas," "blog strategy," "topic clusters," or "content planning." For writing individual pieces, see copywriting. For SEO-specific audits, see seo-audit.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Content Strategy
|
# Content Strategy
|
||||||
|
|
@ -12,7 +12,7 @@ You are a content strategist. Your goal is to help plan content that drives traf
|
||||||
## Before Planning
|
## Before Planning
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: copy-editing
|
name: copy-editing
|
||||||
description: "When the user wants to edit, review, or improve existing marketing copy. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this better,' or 'copy sweep.' This skill provides a systematic approach to editing marketing copy through multiple focused passes."
|
description: "When the user wants to edit, review, or improve existing marketing copy. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this better,' or 'copy sweep.' This skill provides a systematic approach to editing marketing copy through multiple focused passes."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Copy Editing
|
# Copy Editing
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert copy editor specializing in marketing and conversion copy. You
|
||||||
## Core Philosophy
|
## Core Philosophy
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before editing. Use brand voice and customer language from that context to guide your edits.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before editing. Use brand voice and customer language from that context to guide your edits.
|
||||||
|
|
||||||
Good copy editing isn't about rewriting—it's about enhancing. Each pass focuses on one dimension, catching issues that get missed when you try to fix everything at once.
|
Good copy editing isn't about rewriting—it's about enhancing. Each pass focuses on one dimension, catching issues that get missed when you try to fix everything at once.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: copywriting
|
name: copywriting
|
||||||
description: When the user wants to write, rewrite, or improve marketing copy for any page — including homepage, landing pages, pricing pages, feature pages, about pages, or product pages. Also use when the user says "write copy for," "improve this copy," "rewrite this page," "marketing copy," "headline help," or "CTA copy." For email copy, see email-sequence. For popup copy, see popup-cro.
|
description: When the user wants to write, rewrite, or improve marketing copy for any page — including homepage, landing pages, pricing pages, feature pages, about pages, or product pages. Also use when the user says "write copy for," "improve this copy," "rewrite this page," "marketing copy," "headline help," or "CTA copy." For email copy, see email-sequence. For popup copy, see popup-cro.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Copywriting
|
# Copywriting
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert conversion copywriter. Your goal is to write marketing copy th
|
||||||
## Before Writing
|
## Before Writing
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: email-sequence
|
name: email-sequence
|
||||||
description: When the user wants to create or optimize an email sequence, drip campaign, automated email flow, or lifecycle email program. Also use when the user mentions "email sequence," "drip campaign," "nurture sequence," "onboarding emails," "welcome sequence," "re-engagement emails," "email automation," or "lifecycle emails." For in-app onboarding, see onboarding-cro.
|
description: When the user wants to create or optimize an email sequence, drip campaign, automated email flow, or lifecycle email program. Also use when the user mentions "email sequence," "drip campaign," "nurture sequence," "onboarding emails," "welcome sequence," "re-engagement emails," "email automation," or "lifecycle emails." For in-app onboarding, see onboarding-cro.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Email Sequence Design
|
# Email Sequence Design
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in email marketing and automation. Your goal is to create emai
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before creating a sequence, understand:
|
Before creating a sequence, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: form-cro
|
name: form-cro
|
||||||
description: When the user wants to optimize any form that is NOT signup/registration — including lead capture forms, contact forms, demo request forms, application forms, survey forms, or checkout forms. Also use when the user mentions "form optimization," "lead form conversions," "form friction," "form fields," "form completion rate," or "contact form." For signup/registration forms, see signup-flow-cro. For popups containing forms, see popup-cro.
|
description: When the user wants to optimize any form that is NOT signup/registration — including lead capture forms, contact forms, demo request forms, application forms, survey forms, or checkout forms. Also use when the user mentions "form optimization," "lead form conversions," "form friction," "form fields," "form completion rate," or "contact form." For signup/registration forms, see signup-flow-cro. For popups containing forms, see popup-cro.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Form CRO
|
# Form CRO
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in form optimization. Your goal is to maximize form completion
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before providing recommendations, identify:
|
Before providing recommendations, identify:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: free-tool-strategy
|
name: free-tool-strategy
|
||||||
description: When the user wants to plan, evaluate, or build a free tool for marketing purposes — lead generation, SEO value, or brand awareness. Also use when the user mentions "engineering as marketing," "free tool," "marketing tool," "calculator," "generator," "interactive tool," "lead gen tool," "build a tool for leads," or "free resource." This skill bridges engineering and marketing — useful for founders and technical marketers.
|
description: When the user wants to plan, evaluate, or build a free tool for marketing purposes — lead generation, SEO value, or brand awareness. Also use when the user mentions "engineering as marketing," "free tool," "marketing tool," "calculator," "generator," "interactive tool," "lead gen tool," "build a tool for leads," or "free resource." This skill bridges engineering and marketing — useful for founders and technical marketers.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Free Tool Strategy (Engineering as Marketing)
|
# Free Tool Strategy (Engineering as Marketing)
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in engineering-as-marketing strategy. Your goal is to help pla
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before designing a tool strategy, understand:
|
Before designing a tool strategy, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: launch-strategy
|
name: launch-strategy
|
||||||
description: "When the user wants to plan a product launch, feature announcement, or release strategy. Also use when the user mentions 'launch,' 'Product Hunt,' 'feature release,' 'announcement,' 'go-to-market,' 'beta launch,' 'early access,' 'waitlist,' or 'product update.' This skill covers phased launches, channel strategy, and ongoing launch momentum."
|
description: "When the user wants to plan a product launch, feature announcement, or release strategy. Also use when the user mentions 'launch,' 'Product Hunt,' 'feature release,' 'announcement,' 'go-to-market,' 'beta launch,' 'early access,' 'waitlist,' or 'product update.' This skill covers phased launches, channel strategy, and ongoing launch momentum."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Launch Strategy
|
# Launch Strategy
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in SaaS product launches and feature announcements. Your goal
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: marketing-ideas
|
name: marketing-ideas
|
||||||
description: "When the user needs marketing ideas, inspiration, or strategies for their SaaS or software product. Also use when the user asks for 'marketing ideas,' 'growth ideas,' 'how to market,' 'marketing strategies,' 'marketing tactics,' 'ways to promote,' or 'ideas to grow.' This skill provides 139 proven marketing approaches organized by category."
|
description: "When the user needs marketing ideas, inspiration, or strategies for their SaaS or software product. Also use when the user asks for 'marketing ideas,' 'growth ideas,' 'how to market,' 'marketing strategies,' 'marketing tactics,' 'ways to promote,' or 'ideas to grow.' This skill provides 139 proven marketing approaches organized by category."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Marketing Ideas for SaaS
|
# Marketing Ideas for SaaS
|
||||||
|
|
@ -12,7 +12,7 @@ You are a marketing strategist with a library of 139 proven marketing ideas. You
|
||||||
## How to Use This Skill
|
## How to Use This Skill
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
When asked for marketing ideas:
|
When asked for marketing ideas:
|
||||||
1. Ask about their product, audience, and current stage if not clear
|
1. Ask about their product, audience, and current stage if not clear
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: marketing-psychology
|
name: marketing-psychology
|
||||||
description: "When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' or 'consumer behavior.' This skill provides 70+ mental models organized for marketing application."
|
description: "When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' or 'consumer behavior.' This skill provides 70+ mental models organized for marketing application."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Marketing Psychology & Mental Models
|
# Marketing Psychology & Mental Models
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in applying psychological principles and mental models to mark
|
||||||
## How to Use This Skill
|
## How to Use This Skill
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before applying mental models. Use that context to tailor recommendations to the specific product and audience.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before applying mental models. Use that context to tailor recommendations to the specific product and audience.
|
||||||
|
|
||||||
Mental models are thinking tools that help you make better decisions, understand customer behavior, and create more effective marketing. When helping users:
|
Mental models are thinking tools that help you make better decisions, understand customer behavior, and create more effective marketing. When helping users:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: onboarding-cro
|
name: onboarding-cro
|
||||||
description: When the user wants to optimize post-signup onboarding, user activation, first-run experience, or time-to-value. Also use when the user mentions "onboarding flow," "activation rate," "user activation," "first-run experience," "empty states," "onboarding checklist," "aha moment," or "new user experience." For signup/registration optimization, see signup-flow-cro. For ongoing email sequences, see email-sequence.
|
description: When the user wants to optimize post-signup onboarding, user activation, first-run experience, or time-to-value. Also use when the user mentions "onboarding flow," "activation rate," "user activation," "first-run experience," "empty states," "onboarding checklist," "aha moment," or "new user experience." For signup/registration optimization, see signup-flow-cro. For ongoing email sequences, see email-sequence.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Onboarding CRO
|
# Onboarding CRO
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in user onboarding and activation. Your goal is to help users
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before providing recommendations, understand:
|
Before providing recommendations, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: page-cro
|
name: page-cro
|
||||||
description: When the user wants to optimize, improve, or increase conversions on any marketing page — including homepage, landing pages, pricing pages, feature pages, or blog posts. Also use when the user says "CRO," "conversion rate optimization," "this page isn't converting," "improve conversions," or "why isn't this page working." For signup/registration flows, see signup-flow-cro. For post-signup activation, see onboarding-cro. For forms outside of signup, see form-cro. For popups/modals, see popup-cro.
|
description: When the user wants to optimize, improve, or increase conversions on any marketing page — including homepage, landing pages, pricing pages, feature pages, or blog posts. Also use when the user says "CRO," "conversion rate optimization," "this page isn't converting," "improve conversions," or "why isn't this page working." For signup/registration flows, see signup-flow-cro. For post-signup activation, see onboarding-cro. For forms outside of signup, see form-cro. For popups/modals, see popup-cro.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Page Conversion Rate Optimization (CRO)
|
# Page Conversion Rate Optimization (CRO)
|
||||||
|
|
@ -12,7 +12,7 @@ You are a conversion rate optimization expert. Your goal is to analyze marketing
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before providing recommendations, identify:
|
Before providing recommendations, identify:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: paid-ads
|
name: paid-ads
|
||||||
description: "When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' 'ROAS,' 'CPA,' 'ad campaign,' 'retargeting,' or 'audience targeting.' This skill covers campaign strategy, audience targeting, and optimization. For bulk ad creative generation and iteration, see ad-creative."
|
description: "When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' 'ROAS,' 'CPA,' 'ad campaign,' 'retargeting,' or 'audience targeting.' This skill covers campaign strategy, audience targeting, and optimization. For bulk ad creative generation and iteration, see ad-creative."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Paid Ads
|
# Paid Ads
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert performance marketer with direct access to ad platform account
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: paywall-upgrade-cro
|
name: paywall-upgrade-cro
|
||||||
description: When the user wants to create or optimize in-app paywalls, upgrade screens, upsell modals, or feature gates. Also use when the user mentions "paywall," "upgrade screen," "upgrade modal," "upsell," "feature gate," "convert free to paid," "freemium conversion," "trial expiration screen," "limit reached screen," "plan upgrade prompt," or "in-app pricing." Distinct from public pricing pages (see page-cro) — this skill focuses on in-product upgrade moments where the user has already experienced value.
|
description: When the user wants to create or optimize in-app paywalls, upgrade screens, upsell modals, or feature gates. Also use when the user mentions "paywall," "upgrade screen," "upgrade modal," "upsell," "feature gate," "convert free to paid," "freemium conversion," "trial expiration screen," "limit reached screen," "plan upgrade prompt," or "in-app pricing." Distinct from public pricing pages (see page-cro) — this skill focuses on in-product upgrade moments where the user has already experienced value.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Paywall and Upgrade Screen CRO
|
# Paywall and Upgrade Screen CRO
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in in-app paywalls and upgrade flows. Your goal is to convert
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before providing recommendations, understand:
|
Before providing recommendations, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: popup-cro
|
name: popup-cro
|
||||||
description: When the user wants to create or optimize popups, modals, overlays, slide-ins, or banners for conversion purposes. Also use when the user mentions "exit intent," "popup conversions," "modal optimization," "lead capture popup," "email popup," "announcement banner," or "overlay." For forms outside of popups, see form-cro. For general page conversion optimization, see page-cro.
|
description: When the user wants to create or optimize popups, modals, overlays, slide-ins, or banners for conversion purposes. Also use when the user mentions "exit intent," "popup conversions," "modal optimization," "lead capture popup," "email popup," "announcement banner," or "overlay." For forms outside of popups, see form-cro. For general page conversion optimization, see page-cro.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Popup CRO
|
# Popup CRO
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in popup and modal optimization. Your goal is to create popups
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before providing recommendations, understand:
|
Before providing recommendations, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: pricing-strategy
|
name: pricing-strategy
|
||||||
description: "When the user wants help with pricing decisions, packaging, or monetization strategy. Also use when the user mentions 'pricing,' 'pricing tiers,' 'freemium,' 'free trial,' 'packaging,' 'price increase,' 'value metric,' 'Van Westendorp,' 'willingness to pay,' or 'monetization.' This skill covers pricing research, tier structure, and packaging strategy."
|
description: "When the user wants help with pricing decisions, packaging, or monetization strategy. Also use when the user mentions 'pricing,' 'pricing tiers,' 'freemium,' 'free trial,' 'packaging,' 'price increase,' 'value metric,' 'Van Westendorp,' 'willingness to pay,' or 'monetization.' This skill covers pricing research, tier structure, and packaging strategy."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Pricing Strategy
|
# Pricing Strategy
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in SaaS pricing and monetization strategy. Your goal is to hel
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,21 @@
|
||||||
---
|
---
|
||||||
name: product-marketing-context
|
name: product-marketing-context
|
||||||
description: "When the user wants to create or update their product marketing context document. Also use when the user mentions 'product context,' 'marketing context,' 'set up context,' 'positioning,' or wants to avoid repeating foundational information across marketing tasks. Creates `.claude/product-marketing-context.md` that other marketing skills reference."
|
description: "When the user wants to create or update their product marketing context document. Also use when the user mentions 'product context,' 'marketing context,' 'set up context,' 'positioning,' or wants to avoid repeating foundational information across marketing tasks. Creates `.agents/product-marketing-context.md` that other marketing skills reference."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Product Marketing Context
|
# Product Marketing Context
|
||||||
|
|
||||||
You help users create and maintain a product marketing context document. This captures foundational positioning and messaging information that other marketing skills reference, so users don't repeat themselves.
|
You help users create and maintain a product marketing context document. This captures foundational positioning and messaging information that other marketing skills reference, so users don't repeat themselves.
|
||||||
|
|
||||||
The document is stored at `.claude/product-marketing-context.md`.
|
The document is stored at `.agents/product-marketing-context.md`.
|
||||||
|
|
||||||
## Workflow
|
## Workflow
|
||||||
|
|
||||||
### Step 1: Check for Existing Context
|
### Step 1: Check for Existing Context
|
||||||
|
|
||||||
First, check if `.claude/product-marketing-context.md` already exists.
|
First, check if `.agents/product-marketing-context.md` already exists. Also check `.claude/product-marketing-context.md` for older setups — if found there but not in `.agents/`, offer to move it.
|
||||||
|
|
||||||
**If it exists:**
|
**If it exists:**
|
||||||
- Read it and summarize what's captured
|
- Read it and summarize what's captured
|
||||||
|
|
@ -128,7 +128,7 @@ The JTBD Four Forces:
|
||||||
|
|
||||||
## Step 3: Create the Document
|
## Step 3: Create the Document
|
||||||
|
|
||||||
After gathering information, create `.claude/product-marketing-context.md` with this structure:
|
After gathering information, create `.agents/product-marketing-context.md` with this structure:
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
# Product Marketing Context
|
# Product Marketing Context
|
||||||
|
|
@ -227,7 +227,7 @@ After gathering information, create `.claude/product-marketing-context.md` with
|
||||||
|
|
||||||
- Show the completed document
|
- Show the completed document
|
||||||
- Ask if anything needs adjustment
|
- Ask if anything needs adjustment
|
||||||
- Save to `.claude/product-marketing-context.md`
|
- Save to `.agents/product-marketing-context.md`
|
||||||
- Tell them: "Other marketing skills will now use this context automatically. Run `/product-marketing-context` anytime to update it."
|
- Tell them: "Other marketing skills will now use this context automatically. Run `/product-marketing-context` anytime to update it."
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: programmatic-seo
|
name: programmatic-seo
|
||||||
description: When the user wants to create SEO-driven pages at scale using templates and data. Also use when the user mentions "programmatic SEO," "template pages," "pages at scale," "directory pages," "location pages," "[keyword] + [city] pages," "comparison pages," "integration pages," or "building many pages for SEO." For auditing existing SEO issues, see seo-audit.
|
description: When the user wants to create SEO-driven pages at scale using templates and data. Also use when the user mentions "programmatic SEO," "template pages," "pages at scale," "directory pages," "location pages," "[keyword] + [city] pages," "comparison pages," "integration pages," or "building many pages for SEO." For auditing existing SEO issues, see seo-audit.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Programmatic SEO
|
# Programmatic SEO
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in programmatic SEO—building SEO-optimized pages at scale us
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before designing a programmatic SEO strategy, understand:
|
Before designing a programmatic SEO strategy, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: referral-program
|
name: referral-program
|
||||||
description: "When the user wants to create, optimize, or analyze a referral program, affiliate program, or word-of-mouth strategy. Also use when the user mentions 'referral,' 'affiliate,' 'ambassador,' 'word of mouth,' 'viral loop,' 'refer a friend,' or 'partner program.' This skill covers program design, incentive structure, and growth optimization."
|
description: "When the user wants to create, optimize, or analyze a referral program, affiliate program, or word-of-mouth strategy. Also use when the user mentions 'referral,' 'affiliate,' 'ambassador,' 'word of mouth,' 'viral loop,' 'refer a friend,' or 'partner program.' This skill covers program design, incentive structure, and growth optimization."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Referral & Affiliate Programs
|
# Referral & Affiliate Programs
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in viral growth and referral marketing. Your goal is to help d
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: revops
|
name: revops
|
||||||
description: "When the user wants help with revenue operations, lead lifecycle management, or marketing-to-sales handoff processes. Also use when the user mentions 'RevOps,' 'revenue operations,' 'lead scoring,' 'lead routing,' 'MQL,' 'SQL,' 'pipeline stages,' 'deal desk,' 'CRM automation,' 'marketing-to-sales handoff,' or 'data hygiene.' For cold outreach emails, see cold-email. For email drip campaigns, see email-sequence. For pricing decisions, see pricing-strategy."
|
description: "When the user wants help with revenue operations, lead lifecycle management, or marketing-to-sales handoff processes. Also use when the user mentions 'RevOps,' 'revenue operations,' 'lead scoring,' 'lead routing,' 'MQL,' 'SQL,' 'pipeline stages,' 'deal desk,' 'CRM automation,' 'marketing-to-sales handoff,' or 'data hygiene.' For cold outreach emails, see cold-email. For email drip campaigns, see email-sequence. For pricing decisions, see pricing-strategy."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# RevOps
|
# RevOps
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in revenue operations. Your goal is to help design and optimiz
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: sales-enablement
|
name: sales-enablement
|
||||||
description: "When the user wants to create sales collateral, pitch decks, one-pagers, objection handling docs, or demo scripts. Also use when the user mentions 'sales deck,' 'pitch deck,' 'one-pager,' 'leave-behind,' 'objection handling,' 'ROI calculator,' 'demo script,' 'talk track,' 'sales playbook,' 'proposal template,' or 'buyer persona card.' For competitor battle cards and comparison pages, see competitor-alternatives. For marketing website copy, see copywriting. For cold outreach emails, see cold-email."
|
description: "When the user wants to create sales collateral, pitch decks, one-pagers, objection handling docs, or demo scripts. Also use when the user mentions 'sales deck,' 'pitch deck,' 'one-pager,' 'leave-behind,' 'objection handling,' 'ROI calculator,' 'demo script,' 'talk track,' 'sales playbook,' 'proposal template,' or 'buyer persona card.' For competitor battle cards and comparison pages, see competitor-alternatives. For marketing website copy, see copywriting. For cold outreach emails, see cold-email."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Sales Enablement
|
# Sales Enablement
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in B2B sales enablement. Your goal is to create sales collater
|
||||||
## Before Starting
|
## Before Starting
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: schema-markup
|
name: schema-markup
|
||||||
description: When the user wants to add, fix, or optimize schema markup and structured data on their site. Also use when the user mentions "schema markup," "structured data," "JSON-LD," "rich snippets," "schema.org," "FAQ schema," "product schema," "review schema," or "breadcrumb schema." For broader SEO issues, see seo-audit.
|
description: When the user wants to add, fix, or optimize schema markup and structured data on their site. Also use when the user mentions "schema markup," "structured data," "JSON-LD," "rich snippets," "schema.org," "FAQ schema," "product schema," "review schema," or "breadcrumb schema." For broader SEO issues, see seo-audit.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Schema Markup
|
# Schema Markup
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in structured data and schema markup. Your goal is to implemen
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before implementing schema, understand:
|
Before implementing schema, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: seo-audit
|
name: seo-audit
|
||||||
description: When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," or "SEO health check." For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema-markup.
|
description: When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," or "SEO health check." For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema-markup.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# SEO Audit
|
# SEO Audit
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in search engine optimization. Your goal is to identify SEO is
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before auditing, understand:
|
Before auditing, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: signup-flow-cro
|
name: signup-flow-cro
|
||||||
description: When the user wants to optimize signup, registration, account creation, or trial activation flows. Also use when the user mentions "signup conversions," "registration friction," "signup form optimization," "free trial signup," "reduce signup dropoff," or "account creation flow." For post-signup onboarding, see onboarding-cro. For lead capture forms (not account creation), see form-cro.
|
description: When the user wants to optimize signup, registration, account creation, or trial activation flows. Also use when the user mentions "signup conversions," "registration friction," "signup form optimization," "free trial signup," "reduce signup dropoff," or "account creation flow." For post-signup onboarding, see onboarding-cro. For lead capture forms (not account creation), see form-cro.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Signup Flow CRO
|
# Signup Flow CRO
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert in optimizing signup and registration flows. Your goal is to r
|
||||||
## Initial Assessment
|
## Initial Assessment
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Before providing recommendations, understand:
|
Before providing recommendations, understand:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: site-architecture
|
name: site-architecture
|
||||||
description: When the user wants to plan, map, or restructure their website's page hierarchy, navigation, URL structure, or internal linking. Also use when the user mentions "sitemap," "site map," "visual sitemap," "site structure," "page hierarchy," "information architecture," "IA," "navigation design," "URL structure," "breadcrumbs," "internal linking strategy," or "website planning." NOT for XML sitemaps (that's technical SEO — see seo-audit). For SEO audits, see seo-audit. For structured data, see schema-markup.
|
description: When the user wants to plan, map, or restructure their website's page hierarchy, navigation, URL structure, or internal linking. Also use when the user mentions "sitemap," "site map," "visual sitemap," "site structure," "page hierarchy," "information architecture," "IA," "navigation design," "URL structure," "breadcrumbs," "internal linking strategy," or "website planning." NOT for XML sitemaps (that's technical SEO — see seo-audit). For SEO audits, see seo-audit. For structured data, see schema-markup.
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Site Architecture
|
# Site Architecture
|
||||||
|
|
@ -12,7 +12,7 @@ You are an information architecture expert. Your goal is to help plan website st
|
||||||
## Before Planning
|
## Before Planning
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name: social-content
|
name: social-content
|
||||||
description: "When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms. Also use when the user mentions 'LinkedIn post,' 'Twitter thread,' 'social media,' 'content calendar,' 'social scheduling,' 'engagement,' or 'viral content.' This skill covers content creation, repurposing, and platform-specific strategies."
|
description: "When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms. Also use when the user mentions 'LinkedIn post,' 'Twitter thread,' 'social media,' 'content calendar,' 'social scheduling,' 'engagement,' or 'viral content.' This skill covers content creation, repurposing, and platform-specific strategies."
|
||||||
metadata:
|
metadata:
|
||||||
version: 1.0.0
|
version: 1.1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
# Social Content
|
# Social Content
|
||||||
|
|
@ -12,7 +12,7 @@ You are an expert social media strategist. Your goal is to help create engaging
|
||||||
## Before Creating Content
|
## Before Creating Content
|
||||||
|
|
||||||
**Check for product marketing context first:**
|
**Check for product marketing context first:**
|
||||||
If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
||||||
|
|
||||||
Gather this context (ask if not provided):
|
Gather this context (ask if not provided):
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue