Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By srstomp
Professional copywriting skills library for Claude Code: persuasion frameworks, domain patterns, and anti-slop quality enforcement across marketing, email, UX, editorial, brand, sales, social, and conversion copy
npx claudepluginhub srstomp/copyskills --plugin copyskillsReviews and improves existing copy. Use when evaluating, critiquing, scoring, or improving copy that already exists. Does NOT generate copy from scratch.
Autonomous end-to-end copywriting agent. Use when writing new copy of any type: marketing, email, UX, or any domain. Handles briefing, framework selection, drafting, quality enforcement, and structured output.
Workflow-driven generator for brand voice definition, tone guides, messaging hierarchies, and style guides. Use when the task involves defining how a brand sounds, creating voice guidelines, building messaging frameworks, or writing style guides.
Workflow-driven generator for A/B test variants, pricing pages, signup flows, checkout copy, trial-to-paid, and funnel optimization. Use when copy type involves conversion optimization, pricing, registration, checkout, or A/B testing.
Repurpose existing copy for a different channel, format, or audience. Use when transforming copy from one format to another (e.g., landing page to LinkedIn post, blog post to email, long-form to short-form).
Gathers and validates context needed before writing copy. Three modes: interactive interview for humans, agent handshake for multi-agent systems, fast-path for complete briefs. Use before any copy generation to ensure minimum context requirements are met.
Evaluates existing copy against quality dimensions, identifies issues, suggests fixes, and optionally rewrites flagged sections. Use when reviewing or evaluating copy that already exists, not when generating new copy.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Unity Development Toolkit - Expert agents for scripting/refactoring/optimization, script templates, and Agent Skills for Unity C# development
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research
AI-powered development workflows with task tracking, skill-based routing, and guaranteed execution hooks.
Professional copywriting skills for AI agents and humans. 15 skills covering 8 domains, 10 persuasion frameworks, and a built-in anti-slop system that catches AI writing patterns before they ship.
Works as a Claude Code plugin, an MCP server, a CLI tool, or a TypeScript library.
New here? Read USAGE.md for a walkthrough with concrete recipes for each interface. The rest of this README is reference material.
Install from the marketplace:
claude plugin marketplace add srstomp/copyskills
claude plugin install copyskills@copyskills
Or from inside a Claude Code session:
/plugin marketplace add srstomp/copyskills
/plugin install copyskills@copyskills
Then use slash commands:
/write cold outreach email for SakeBox targeting restaurant owners
/critique ./landing-page-copy.md
/adapt this case study as a LinkedIn post
Add to your MCP client config:
{
"mcpServers": {
"copydoc": {
"command": "npx",
"args": ["@copydoc/mcp"]
}
}
}
The server exposes copywriting knowledge as MCP resources, tools, and prompts. Your agent reads what it needs.
npm install -g @copydoc/cli
copydoc init
copydoc write "pricing page for a developer tools SaaS"
npm install @copydoc/core
import { createLoader, createAssembler, selectFramework, createAntiSlopChecker } from '@copydoc/core';
import { createRequire } from 'module';
import path from 'path';
// Skills are bundled inside @copydoc/core at dist/skills/
const require = createRequire(import.meta.url);
const coreDir = path.dirname(require.resolve('@copydoc/core/package.json'));
const loader = createLoader(path.join(coreDir, 'dist', 'skills'));
const assembler = createAssembler(loader, selectFramework);
const { systemPrompt, userPrompt } = assembler.assemble({
type: 'cold outreach email',
goal: 'Book a demo call',
audience: { who: 'Restaurant owners', pain: 'Bad sake selection' },
product: { name: 'SakeBox', differentiator: 'Direct from 40+ Japanese breweries' },
});
// Send to any LLM
const copy = await yourLLM.generate(systemPrompt, userPrompt);
// Check for AI patterns
const checker = createAntiSlopChecker(loader);
const { score, issues } = checker.check(copy);
Copyskills works with any tool that supports MCP or the SKILL.md standard.
npx @copydoc/integrations install
Auto-detects and configures: Cursor, Codex, OpenCode, Hermes, OpenClaw, Pi.
Each tool gets the integration that fits it best:
| Tool | What it gets |
|---|---|
| Cursor | MCP server config + .mdc rule files for each domain skill |
| Codex | MCP server config + skills directory symlink |
| OpenCode | MCP server config in .opencode.json |
| Hermes | MCP server config in ~/.hermes/config.yaml + skills symlink |
| OpenClaw | MCP server + skills directory in ~/.openclaw/openclaw.json |
| Pi | Skills symlink + TypeScript extension stub wrapping @copydoc/core |
Add to your tool's MCP config:
{
"mcpServers": {
"copydoc": {
"command": "npx",
"args": ["@copydoc/mcp"]
}
}
}
npx @copydoc/integrations status # Check which tools are detected and configured
npx @copydoc/integrations uninstall # Remove all copydoc integrations
npx @copydoc/integrations install --tool cursor # Configure only one tool
Layer 1: Framework References (the methodology)
| Skill | What it provides |
|---|---|
| persuasion-frameworks | 10 frameworks (AIDA, PAS, BAB, FAB, ACCA, PASTOR, QUEST, 4Ps, PPPP, Star-Story-Solution) with decision matrix for when to use each |
| quality-frameworks | 7-dimension scoring rubric, anti-slop detection, Cialdini principles, readability targets |
| headline-formulas | 26 proven headline templates, power words categorized by emotion |
Layer 2: Domain Skills (the patterns)
| Skill | Covers |
|---|---|
| marketing-copy | Landing pages, ads (Google/Meta/LinkedIn with char limits), CTAs, value propositions |
| email-copy | Drip sequences, cold outreach, newsletters, subject lines |
| ux-copy | Microcopy, error messages, onboarding flows, empty states |
| editorial-copy | Blog posts, SEO content, thought leadership, whitepapers |
| brand-copy | Voice profiles, messaging hierarchies, style guides |
| sales-copy | Case studies, proposals, pitch decks, one-pagers |
| social-copy | Platform-specific content (X, LinkedIn, Instagram, TikTok), threads, carousels |
| conversion-copy | A/B test variants, pricing pages, signup flows, checkout copy |
Layer 3: Workflow Skills (the orchestration)