Skill by ara.so — Daily 2026 Skills collection.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionmarketingskills-ai-agentsExecute the skills CLI command in your project's root directory to begin installation:
Fetches marketingskills-ai-agents from aradotso/trending-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate marketingskills-ai-agents. Access via /marketingskills-ai-agents in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
1
total installs
1
this week
22
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
22
stars
Skill by ara.so — Daily 2026 Skills collection.
coreyhaines31/marketingskills is a collection of markdown-based AI agent skills covering CRO, copywriting, SEO, analytics, paid ads, email, and growth engineering. Install them once and any compatible agent (Claude Code, Cursor, Codex, Windsurf) gains specialized marketing expertise and frameworks.
Each skill is a markdown file that tells AI agents:
All skills read product-marketing-context first — it's the shared foundation containing your product, audience, and positioning.
# Install all 33 skills at once
npx skills add coreyhaines31/marketingskills
# Install only specific skills
npx skills add coreyhaines31/marketingskills --skill page-cro copywriting seo-audit
# See all available skills before installing
npx skills add coreyhaines31/marketingskills --list
Skills land in .agents/skills/ with a symlink to .claude/skills/ for Claude Code.
/plugin marketplace add coreyhaines31/marketingskills
/plugin install marketing-skills
git clone https://github.com/coreyhaines31/marketingskills.git
cp -r marketingskills/skills/* .agents/skills/
git submodule add https://github.com/coreyhaines31/marketingskills.git .agents/marketingskills
# Reference skills from .agents/marketingskills/skills/
marketingskills/
├── skills/
│ ├── product-marketing-context/ ← Start here — foundation for all others
│ ├── page-cro/
│ ├── copywriting/
│ ├── seo-audit/
│ ├── ab-test-setup/
│ ├── email-sequence/
│ ├── paid-ads/
│ └── ... (33 skills total)
└── README.md
Each skill directory contains a SKILL.md (or README.md) with structured instructions the agent reads.
Before using any other skill, create your context file. This is the single most important step.
"Create my product marketing context"
The agent will generate .agents/skills/product-marketing-context/context.md by asking about:
Every other skill reads this file automatically before executing.
| Skill | Use When |
|---|---|
product-marketing-context |
Creating or updating your shared product/positioning doc |
| Skill | Use When |
|---|---|
seo-audit |
Auditing or diagnosing SEO issues |
ai-seo |
Optimizing for LLM/AI search citations |
site-architecture |
Planning URL structure, navigation, internal links |
programmatic-seo |
Building SEO pages at scale from templates + data |
schema-markup |
Adding structured data / JSON-LD |
content-strategy |
Planning what content to create and why |
| Skill | Use When |
|---|---|
page-cro |
Optimizing any marketing or landing page |
signup-flow-cro |
Improving signup/trial activation flows |
onboarding-cro |
Improving post-signup activation and time-to-value |
form-cro |
Optimizing lead capture, contact, or non-signup forms |
popup-cro |
Creating or improving popups, modals, slide-ins |
paywall-upgrade-cro |
In-app paywalls, upgrade screens, feature gates |
| Skill | Use When |
|---|---|
copywriting |
Writing homepage, landing page, or any marketing copy |
copy-editing |
Editing or improving existing copy |
cold-email |
Writing B2B cold outreach sequences |
email-sequence |
Building drip, lifecycle, or onboarding emails |
social-content |
LinkedIn, Twitter/X, Instagram content |
| Skill | Use When |
|---|---|
paid-ads |
Google Ads, Meta, LinkedIn, Twitter campaigns |
ad-creative |
Generating ad headlines, descriptions, primary text |
ab-test-setup |
Planning and implementing A/B experiments |
analytics-tracking |
Setting up or auditing GA4, Segment, Mixpanel |
| Skill | Use When |
|---|---|
referral-program |
Building referral or affiliate programs |
free-tool-strategy |
Planning free tools for lead gen or SEO |
churn-prevention |
Cancellation flows, save offers, dunning |
lead-magnets |
Creating email capture lead magnets |
| Skill | Use When |
|---|---|
revops |
Lead lifecycle, CRM, marketing-to-sales handoff |
sales-enablement |
Pitch decks, one-pagers, objection handling |
launch-strategy |
Product launches, feature announcements |
pricing-strategy |
Pricing, packaging, monetization decisions |
competitor-alternatives |
Comparison and alternative pages |
| Skill | Use When |
|---|---|
marketing-ideas |
Brainstorming marketing strategies and tactics |
marketing-psychology |
Applying behavioral science to marketing |
"Audit my landing page at src/pages/index.tsx and suggest CRO improvements"
The agent reads product-marketing-context, activates page-cro, then:
"Write homepage copy for my SaaS product using the copywriting skill"
Output includes hero headline variants, subheadline, feature sections, social proof blocks, and CTAs — all grounded in your product-marketing-context.
"Help me set up an A/B test for my pricing page CTA button"
The agent activates ab-test-setup and generates:
// Example output: Google Optimize / custom A/B test scaffold
const experiments = {
pricing_cta_test: {
id: 'pricing-cta-v1',
variants: [
{ id: 'control', cta: 'Start Free Trial' },
{ id: 'variant_a', cta: 'Get Started Free' },
{ id: 'variant_b', cta: 'Try It Free — No Card Required' }
],
metric: 'signup_click',
minimumDetectableEffect: 0.05,
confidenceLevel: 0.95
}
};
// Split traffic deterministically by user ID
function getVariant(userId, experimentId) {
const hash = simpleHash(`${userId}-${experimentId}`);
const variantIndex = hash % experiments[experimentId].variants.length;
return experiments[experimentId].variants[variantIndex];
}
"Create a programmatic SEO page template for '[tool] alternatives' pages"
The agent activates programmatic-seo + competitor-alternatives and scaffolds:
// Next.js dynamic route: /pages/[competitor]-alternatives.js
export async function getStaticPaths() {
const competitors = await fetchCompetitors(); // your data source
return {
paths: competitors.map(c => ({ params: { competitor: c.slug } })),
fallback: 'blocking'
};
}
export async function getStaticProps({ params }) {
const data = await getCompetitorData(params.competitor);
return { props: { competitor: data }, revalidate: 86400 };
}
"Write a 5-email onboarding sequence for new trial users"
Activates email-sequence + onboarding-cro. Produces:
Each with subject line, preview text, body copy, and CTA.
"Add schema markup to my blog post template"
// Output: JSON-LD for Article schema
const articleSchema = {
"@context": "https://schema.org",
"@type": "Article",
"headline": post.title,
"description": post.excerpt,
"author": {
"@type": "Person",
"name": post.author.name,
"url": post.author.url
Implementation Guide
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
- 1Install skill using provided installation command
- 2Test with simple use case relevant to your work
- 3Evaluate output quality and relevance
- 4Iterate on prompts to improve results
- 5Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Related Skills
claude-peers-mcp
7aradotso/trending-skills
AI/MLsame repomodly-image-to-3d
32aradotso/trending-skills
Productivitysame repoml-paper-writing
75davila7/claude-code-templates
AI/MLsame categorybeautiful-mermaid
31intellectronica/agent-skills
AI/MLsame categoryllm-council
26am-will/codex-skills
AI/MLsame categorybrainstorming
16sickn33/antigravity-awesome-skills
AI/MLsame categoryReviews
4.5★★★★★27 reviews- OOlivia Ghosh★★★★★Dec 28, 2024
marketingskills-ai-agents has been reliable in day-to-day use. Documentation quality is above average for community skills.
- GGanesh Mohane★★★★★Dec 20, 2024
Registry listing for marketingskills-ai-agents matched our evaluation — installs cleanly and behaves as described in the markdown.
- SShikha Mishra★★★★★Dec 16, 2024
We added marketingskills-ai-agents from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- EEmma Thomas★★★★★Nov 19, 2024
marketingskills-ai-agents reduced setup friction for our internal harness; good balance of opinion and flexibility.
- YYash Thakker★★★★★Nov 7, 2024
marketingskills-ai-agents fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- DDhruvi Jain★★★★★Oct 26, 2024
marketingskills-ai-agents is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- AAma Jain★★★★★Oct 10, 2024
I recommend marketingskills-ai-agents for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- OOlivia Gill★★★★★Sep 25, 2024
marketingskills-ai-agents has been reliable in day-to-day use. Documentation quality is above average for community skills.
- HHenry Khanna★★★★★Aug 16, 2024
Useful defaults in marketingskills-ai-agents — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- HHenry Patel★★★★★Jul 7, 2024
I recommend marketingskills-ai-agents for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 27
1 / 3Discussion
Comments — not star reviews- No comments yet — start the thread.