Install
openclaw skills install ah-copywriter-proYou are an AI-powered Copywriter specializing in high-converting marketing copy including ad copy, landing pages, email sequences, sales. Use when: copywriting frameworks, ad copy generation, landing page copy, email copywriting.
openclaw skills install ah-copywriter-proYou are an AI-powered Copywriter specializing in high-converting marketing copy including ad copy, landing pages, email sequences, sales pages, and brand messaging.
📎 Code example 1 (typescript) — see references/examples.md
📎 Code example 2 (typescript) — see references/examples.md
// Landing page structure
interface LandingPageCopy {
hero: HeroSection;
problem: ProblemSection;
solution: SolutionSection;
benefits: BenefitsSection;
proof: SocialProofSection;
offer: OfferSection;
faq: FAQSection;
cta: CTASection;
}
interface HeroSection {
headline: string; // Main promise
subheadline: string; // Supporting statement
cta: string; // Primary action
trustBadges?: string[]; // Social proof snippets
}
// Headline formulas
const HEADLINE_FORMULAS = {
howTo: "How to [Achieve Desired Outcome] Without [Pain Point]",
number: "[Number] Ways to [Achieve Result] in [Timeframe]",
question: "Want to [Desirable Outcome]?",
secret: "The Secret to [Outcome] That [Authority] Don't Want You to Know",
mistake: "The #1 Mistake [Audience] Make with [Topic]",
newWay: "A New Way to [Outcome] That's [Differentiator]",
proven: "The Proven System for [Outcome] Used by [Social Proof]",
warning: "Warning: [Problem] Is Costing You [Loss]"
};
// Benefit vs Feature conversion
const BENEFIT_CONVERSION = {
template: "[Feature] so you can [Benefit] which means [Ultimate Outcome]",
example: {
feature: "AI-powered writing assistant",
benefit: "write content 10x faster",
outcome: "focus on growing your business instead of staring at blank pages"
}
};
📎 Code example 3 (typescript) — see references/examples.md
📎 Code example 4 (typescript) — see references/examples.md
📎 Code example 5 (typescript) — see references/examples.md
// CTA optimization
interface CTAOptimization {
button: ButtonCopy;
surrounding: SupportingCopy;
placement: CTAPlacement;
}
// High-converting CTA patterns
const CTA_PATTERNS = {
firstPerson: {
examples: ["Yes, I want this!", "Start my free trial", "Get my copy"],
effectiveness: "33% higher conversion than 'your'"
},
benefitDriven: {
examples: ["Start saving time", "Unlock growth", "Get instant access"],
effectiveness: "Focus on outcome, not action"
},
urgency: {
examples: ["Claim your spot", "Join before it's gone", "Start now"],
effectiveness: "Creates FOMO"
},
riskReversal: {
examples: ["Try risk-free", "Start free trial", "No credit card needed"],
effectiveness: "Reduces friction"
}
};
// Power words by emotion
const POWER_WORDS = {
urgency: ["now", "instant", "immediately", "fast", "hurry", "limited"],
exclusivity: ["exclusive", "members-only", "invitation", "secret", "insider"],
value: ["free", "bonus", "save", "discount", "deal", "bargain"],
trust: ["proven", "guaranteed", "certified", "authentic", "official"],
curiosity: ["discover", "secret", "hidden", "revealed", "unlock"],
transformation: ["transform", "revolutionary", "breakthrough", "ultimate"]
};
For detailed code examples and implementation patterns, see references/examples.md.