← 返回 Skills 市场
tobewin

China Ecommerce Copywriter

作者 ToBeWin · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
935
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install china-ecommerce-copywriter
功能描述
中国电商文案生成器。Use when user needs to create product titles, descriptions, promotional copy for Taobao, JD, Pinduoduo. Supports product listing, marketing copy, c...
使用说明 (SKILL.md)

中国电商文案生成器

生成淘宝、京东、拼多多商品文案。

功能特点

  • 🛒 多平台: 淘宝/京东/拼多多
  • 📝 商品标题: SEO优化、关键词嵌入
  • 📋 商品描述: 详情页文案、卖点提炼
  • 🎯 促销文案: 活动语、促销标语
  • 🇨🇳 中文优化: 符合中国电商风格
  • 快速生成: 即时生成高质量文案

⚠️ 免责声明

本工具生成的文案仅供参考。 不同AI模型能力不同,文案质量可能有差异。 重要营销文案请人工审核。 文案需符合平台规则和广告法。

支持的文案类型

类型 示例
商品标题 淘宝/京东/拼多多商品标题
商品描述 详情页文案、卖点提炼
促销文案 618、双11、日常促销
卖点提炼 FAB法则、USP提炼
评价回复 好评/差评回复模板

使用方式

User: "帮我写一个蓝牙耳机的淘宝标题"
Agent: 生成SEO优化的商品标题

User: "帮我写一个洗面奶的详情页文案"
Agent: 生成完整的商品描述

User: "帮我写双11促销文案"
Agent: 生成促销活动文案

平台规范

淘宝标题规范

  • 长度:60字符以内
  • 格式:品牌+核心卖点+品类+规格
  • 禁用词:最好、第一、绝对

京东标题规范

  • 长度:45字符以内
  • 格式:品牌+型号+核心卖点
  • 需包含:品牌名、核心参数

拼多多标题规范

  • 长度:60字符以内
  • 格式:核心卖点+规格+优惠信息
  • 风格:更口语化、强调性价比

Python代码

class EcommerceCopywriter:
    def __init__(self):
        self.platforms = {
            'taobao': {'max_length': 60, 'style': 'formal'},
            'jd': {'max_length': 45, 'style': 'technical'},
            'pdd': {'max_length': 60, 'style': 'casual'}
        }
    
    def generate_title(self, product, features, platform='taobao'):
        """生成商品标题"""
        
        platform_config = self.platforms.get(platform, self.platforms['taobao'])
        max_length = platform_config['max_length']
        
        # 标题模板
        templates = {
            'taobao': '{brand} {product} {features} {specs}',
            'jd': '{brand} {model} {features}',
            'pdd': '{product} {features} {deal}'
        }
        
        template = templates.get(platform, templates['taobao'])
        
        title = template.format(
            brand=product.get('brand', ''),
            product=product.get('name', ''),
            features=' '.join(features[:3]),
            specs=product.get('specs', ''),
            model=product.get('model', ''),
            deal=product.get('deal', '')
        )
        
        return title[:max_length]
    
    def generate_description(self, product, selling_points, platform='taobao'):
        """生成商品描述"""
        
        desc = []
        desc.append(f"# {product.get('name', 'Product')}")
        desc.append("")
        desc.append("## 产品亮点")
        
        for i, point in enumerate(selling_points, 1):
            desc.append(f"**{i}. {point['title']}**")
            desc.append(f"   {point['description']}")
            desc.append("")
        
        desc.append("## 产品参数")
        for key, value in product.get('specs', {}).items():
            desc.append(f"- {key}: {value}")
        
        return '\
'.join(desc)
    
    def generate_promotion(self, event, products, platform='taobao'):
        """生成促销文案"""
        
        templates = {
            '618': '618大促 | {discount} | 限时抢购',
            'double11': '双11狂欢 | {discount} | 全年最低',
            'daily': '限时特惠 | {discount} | 手慢无'
        }
        
        template = templates.get(event, templates['daily'])
        
        promo = template.format(
            discount=products.get('discount', '优惠进行中')
        )
        
        return promo

# 使用示例
writer = EcommerceCopywriter()

# 生成标题
title = writer.generate_title(
    {'brand': '华为', 'name': '蓝牙耳机', 'specs': '降噪续航'},
    ['主动降噪', '40小时续航', '高清音质'],
    platform='taobao'
)

# 生成描述
desc = writer.generate_description(
    {'name': '华为蓝牙耳机'},
    [
        {'title': '主动降噪', 'description': '采用ANC主动降噪技术'},
        {'title': '超长续航', 'description': '40小时续航,充电10分钟听歌3小时'}
    ]
)

Notes

  • 专注中国电商(淘宝/京东/拼多多)
  • 文案需符合平台规范
  • 支持中文文案生成
  • 参考现有商品描述风格
安全使用建议
This skill appears internally consistent and safe to install as it is instruction-only and requests no credentials. Before using it in production: (1) treat all generated marketing copy as drafts — manually review for compliance with platform rules, advertising law, trademark claims, and factual accuracy; (2) do not paste sensitive customer data into prompts when generating copy; (3) understand the embedded Python is an example only and will not run automatically; if you later add integrations (APIs, publishing automation), expect those to require credentials and warrant a new security review.
功能分析
Type: OpenClaw Skill Name: china-ecommerce-copywriter Version: 1.0.0 The skill is a legitimate e-commerce copywriting tool designed to generate product titles and descriptions for Chinese platforms like Taobao and JD. The Python code in SKILL.md performs simple string formatting and template-based text generation without any network calls, file system access, or suspicious logic.
能力评估
Purpose & Capability
The name and description (Taobao/JD/Pinduoduo copywriting) match the SKILL.md content. There are no declared environment variables, binaries, or config paths that would be unnecessary for a text-generation helper.
Instruction Scope
The SKILL.md provides detailed guidance and platform-specific constraints and includes an embedded Python example for local usage. The file does not instruct the agent to read system files, access environment variables, or transmit data to external endpoints. Note: the Python snippet is illustrative only — there are no code files to execute as part of installation.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing will be written to disk or downloaded during install. This is the lowest-risk install profile.
Credentials
The skill declares no required environment variables, credentials, or config paths. Requested capabilities are proportional to a text-generation/copywriting helper.
Persistence & Privilege
always:false (default) and the skill may be invoked autonomously by the agent (platform default). Autonomous invocation is normal; this skill does not request elevated persistence or modify other skills/configurations.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install china-ecommerce-copywriter
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /china-ecommerce-copywriter 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
中国电商文案生成器:支持淘宝/京东/拼多多,商品标题/描述/促销文案,中文优化
元数据
Slug china-ecommerce-copywriter
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

China Ecommerce Copywriter 是什么?

中国电商文案生成器。Use when user needs to create product titles, descriptions, promotional copy for Taobao, JD, Pinduoduo. Supports product listing, marketing copy, c... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 935 次。

如何安装 China Ecommerce Copywriter?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install china-ecommerce-copywriter」即可一键安装,无需额外配置。

China Ecommerce Copywriter 是免费的吗?

是的,China Ecommerce Copywriter 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

China Ecommerce Copywriter 支持哪些平台?

China Ecommerce Copywriter 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 China Ecommerce Copywriter?

由 ToBeWin(@tobewin)开发并维护,当前版本 v1.0.0。

💬 留言讨论