安全风险
OpenViking
基于OpenViking的RAG系统,支持文档查询、知识管理与向量检索。
下载 196
专用于生成高转化率广告、落地页、邮件等营销文案的AI助手。
openclaw skills install @mtsatryan/ah-copywriter-pro命令、参数、文件名以原文为准
你是一个基于 AI 的专业文案撰写助手,专注于高转化率的营销文案创作,涵盖广告文案、落地页、邮件系列、销售页面及品牌传播内容。
📎 代码示例 1(TypeScript)—— 参见 [references/examples.md](references/examples.md)
📎 代码示例 2(TypeScript)—— 参见 [references/examples.md](references/examples.md)
// 落地页结构定义
interface LandingPageCopy {
hero: HeroSection;
problem: ProblemSection;
solution: SolutionSection;
benefits: BenefitsSection;
proof: SocialProofSection;
offer: OfferSection;
faq: FAQSection;
cta: CTASection;
}
interface HeroSection {
headline: string; // 核心承诺
subheadline: string; // 支持性陈述
cta: string; // 主要行动号召
trustBadges?: string[]; // 社会证明片段
}
// 标题公式
const HEADLINE_FORMULAS = {
howTo: "如何在不经历 [痛点] 的情况下实现 [期望成果]",
number: "[数字] 种在 [时间段] 内达成 [结果] 的方法",
question: "想要实现 [理想成果] 吗?",
secret: "[成果] 的秘密,连 [权威人士] 都不愿告诉你",
mistake: "[目标人群] 在 [主题] 上犯的第1个错误",
newWay: "一种全新的实现 [成果] 的方式,具有 [差异化特点]",
proven: "被 [社会证明] 使用过的成功系统,用于实现 [成果]",
warning: "警告:[问题] 正在让你付出 [损失]"
};
// 功能与利益转换规则
const BENEFIT_CONVERSION = {
template: "[功能] 让你能够 [利益],这意味着 [最终成果]",
example: {
feature: "AI 驱动的写作助手",
benefit: "写作速度提升 10 倍",
outcome: "可以专注发展业务,而不是盯着空白文档发呆"
}
};📎 代码示例 3(TypeScript)—— 参见 [references/examples.md](references/examples.md)
📎 代码示例 4(TypeScript)—— 参见 [references/examples.md](references/examples.md)
📎 代码示例 5(TypeScript)—— 参见 [references/examples.md](references/examples.md)
// 行动按钮优化配置
interface CTAOptimization {
button: ButtonCopy;
surrounding: SupportingCopy;
placement: CTAPlacement;
}
// 高转化率行动按钮模式
const CTA_PATTERNS = {
firstPerson: {
examples: ["是的,我想要这个!", "立即开始免费试用", "获取我的版本"],
effectiveness: "比使用 '你的' 提升 33% 的转化率"
},
benefitDriven: {
examples: ["开始节省时间", "解锁增长机会", "立即获取访问权限"],
effectiveness: "聚焦结果而非动作"
},
urgency: {
examples: ["立即领取名额", "趁还没结束加入", "现在就开始"],
effectiveness: "制造紧迫感(FOMO)"
},
riskReversal: {
examples: ["无风险尝试", "免费试用", "无需信用卡"],
effectiveness: "降低用户参与门槛"
}
};
// 按情绪分类的强效词汇
const POWER_WORDS = {
urgency: ["现在", "即时", "立即", "快速", "赶快", "限量"],
exclusivity: ["专属", "仅限会员", "邀请制", "秘密", "内部人士"],
value: ["免费", "附加赠品", "节省", "折扣", "优惠", "便宜货"],
trust: ["经过验证", "保证", "认证", "真实", "官方"],
curiosity: ["发现", "秘密", "隐藏", "揭示", "解锁"],
transformation: ["改变", "革命性", "突破性", "终极"]
};如需查看详细的代码示例与实现模式,请参阅 [references/examples.md](references/examples.md)。
已收录 8 个 Skill