Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

product-description-generator产品描述生成器

Agent Skill

product-description-generator 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

57,365

周安装

2,439

GitHub Stars

4

下载量

20,097
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:product-description-generator(产品描述生成器)
来源仓库:https://github.com/michael-laffin/product-description-generator
安装命令:
openclaw skills install product-description-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install product-description-generator

简介

为电子商务平台(Amazon、Shopify、eBay、Etsy)生成 SEO 优化的产品描述。使用关键字、功能、优势和号召性用语创建引人注目的、以转化为重点的文案。在创建产品列表、优化现有描述或生成批量产品副本时使用。

SKILL.md

name
product-description-generator
description
Generate SEO-optimized product descriptions for e-commerce platforms (Amazon, Shopify, eBay, Etsy). Create compelling, conversion-focused copy with keywords, features, benefits, and calls-to-action. Use when creating product listings, optimizing existing descriptions, or generating bulk product copy.

Product Description Generator

Overview

Generate high-converting, SEO-optimized product descriptions for any e-commerce platform. Create compelling copy that drives sales while improving search visibility across multiple marketplaces.

Core Capabilities

1. Platform-Specific Optimization

Supported Platforms:

  • Amazon - Title, bullet points, description, search terms, backend keywords
  • Shopify - Product title, description, SEO meta data
  • eBay - Item title, description, item specifics, condition description
  • Etsy - Listing title, description, tags, materials, attributes
  • Shopify/WooCommerce - Product name, description, SEO elements
  • Custom - Flexible format for any platform

2. SEO Optimization

Automatically includes:

  • Primary keyword placement (title, first paragraph)
  • Secondary keywords throughout content
  • Long-tail keyword variations
  • Semantic keywords and related terms
  • Optimized character counts for each platform
  • Meta descriptions and titles for SEO

3. Conversion-Focused Copy

Elements that drive sales:

  • Benefit-oriented features (not just specs)
  • Emotional triggers and storytelling
  • Social proof integration
  • Urgency and scarcity elements
  • Clear value propositions
  • Strong calls-to-action
  • Objection handling

4. Structure Templates

Product description structure:

  1. Hook - Attention-grabbing opening
  2. Problem/Agitation - Address pain points
  3. Solution - How your product helps
  4. Features → Benefits - What it does and why it matters
  5. Social Proof - Reviews, testimonials, stats
  6. Use Cases - When/how to use the product
  7. Specifications - Technical details
  8. FAQ - Common questions answered
  9. CTA - Clear action to take

5. Bulk Generation

Generate descriptions for:

  • Multiple products from CSV
  • Product variations (colors, sizes, models)
  • A/B testing variations
  • Multiple platforms simultaneously
  • International markets (localization)

Quick Start

Generate Amazon Listing

# Use scripts/generate_description.py
python3 scripts/generate_description.py \
  --product "Wireless Bluetooth Headphones" \
  --platform amazon \
  --features "40hr battery,noise cancelling,Bluetooth 5.3" \
  --benefits "crystal clear audio,comfortable fit,fast charging" \
  --tone professional \
  --output amazon_listing.md

Generate Shopify Product Description

python3 scripts/generate_description.py \
  --product "Ergonomic Office Chair" \
  --platform shopify \
  --features "adjustable lumbar support,360° swivel,breathable mesh" \
  --tone conversational \
  --include-faq \
  --output shopify_description.md

Bulk Generate from CSV

# Use scripts/bulk_generate.py
python3 scripts/bulk_generate.py \
  --csv products.csv \
  --platform amazon \
  --output-dir ./descriptions

Optimize Existing Description

# Use scripts/optimize_description.py
python3 scripts/optimize_description.py \
  --input existing_description.md \
  --target-keyword "wireless headphones" \
  --platform amazon \
  --output optimized.md

Scripts

generate_description.py

Generate product description for a single product.

Parameters:

  • --product (required): Product name/title
  • --platform (required): Target platform
  • --features: Product features (comma-separated)
  • --benefits: Benefits/value proposition (comma-separated)
  • --tone: Tone preference (professional, conversational, playful, luxury)
  • --target-audience: Who is this for?
  • --keywords: SEO keywords (comma-separated)
  • --include-faq: Include FAQ section
  • --include-specs: Include specifications section
  • --output: Output file

Example:

python3 scripts/generate_description.py \
  --product "Smart WiFi Thermostat" \
  --platform amazon \
  --features "energy saving,app control,7-day programming" \
  --benefits "lower energy bills,remote access,comfort" \
  --target-audience "homeowners,smart home enthusiasts" \
  --keywords "smart thermostat,programmable thermostat,WiFi thermostat" \
  --include-faq \
  --include-specs \
  --output thermostat_description.md

bulk_generate.py

Generate descriptions for multiple products from CSV.

CSV Format:

product,features,benefits,tone,target_audience,keywords
"Wireless Headphones","40hr battery,noise cancelling","clear audio,comfort","professional","audiophiles","headphones,bluetooth"
"Ergonomic Chair","lumbar support,mesh back","back pain relief,comfort","conversational","office workers","office chair,ergonomic"
"Smart Thermostat","energy saving,app control","lower bills,remote control","professional","homeowners","thermostat,smart home"

Parameters:

  • --csv: Path to CSV file
  • --platform: Target platform (applies to all products)
  • --output-dir: Output directory
  • --format: Output format (markdown, html, csv)

optimize_description.py

Optimize an existing product description for SEO and conversions.

Parameters:

  • --input: Input file path
  • --target-keyword: Primary keyword to optimize for
  • --platform: Target platform
  • add-cta: Add strong call-to-action
  • add-social-proof: Add social proof placeholders
  • output: Output file

generate_variations.py

Generate A/B testing variations of a description.

Parameters:

  • --input: Base description file
  • --variations: Number of variations to generate (default: 3)
  • --test-elements: Elements to test (cta, hook, benefits)
  • --output-dir: Output directory

seo_analyzer.py

Analyze SEO score of product description.

Parameters:

  • --input: Description to analyze
  • --target-keyword: Primary keyword
  • --platform: Platform-specific analysis
  • --output: Analysis report

Platform-Specific Guidelines

Amazon

  • Title: 150-200 characters, primary keyword first
  • Bullet Points: 5-7 points, benefit-focused
  • Description: 2000-3000 characters, full product story
  • Backend Keywords: 250 bytes, comma-separated
  • Style: Professional, informative, detailed

Shopify

  • Title: 70 characters for optimal display
  • Description: 300-500 words, HTML supported
  • Meta Description: 155 characters for SEO
  • Handle: 75 characters max, SEO-friendly URL
  • Style: Brand-consistent, visual, lifestyle-oriented

eBay

  • Title: 80 characters optimal, include key details
  • Description: 500-1000 words, HTML allowed
  • Item Specifics: Fill all relevant fields
  • Condition: Clearly state condition
  • Style: Auction-style urgency, detailed specs

Etsy

  • Title: 140 characters, front-load keywords
  • Description: 500+ words, handmade story
  • Tags: 13 tags, 20 characters each
  • Materials: Accurate listing
  • Style: Personal, story-driven, handmade emphasis

Best Practices

Write Benefits, Not Just Features

  • Bad: "40-hour battery life"
  • Good: "40-hour battery means you can listen for days without charging"

Use Emotional Triggers

  • "Transform your daily routine"
  • "Experience the difference quality makes"
  • "Join thousands of satisfied customers"

Include Social Proof

  • "Trusted by 10,000+ customers"
  • "4.8/5 star average rating"
  • "30-day money-back guarantee"

Handle Objections

  • "Worried about fit? We offer free returns"
  • "Not sure? Try it risk-free for 30 days"
  • "Questions? Our US-based support is here 24/7"

Strong CTAs

  • "Order now and get free shipping"
  • "Limited stock - add to cart today"
  • "Join the thousands who upgraded their experience"

Tone Guidelines

Professional

  • Best for: B2B, tech products, high-ticket items
  • Characteristics: Authoritative, data-driven, precise
  • Example: "Engineered for performance. Backed by science."

Conversational

  • Best for: Consumer products, lifestyle items
  • Characteristics: Friendly, relatable, personal
  • Example: "You're going to love how this fits into your daily routine."

Playful

  • Best for: Trendy items, younger audiences
  • Characteristics: Fun, energetic, emoji-friendly
  • Example: "Ready to level up? Let's do this! 🚀"

Luxury

  • Best for: Premium products, jewelry, designer items
  • Characteristics: Elegant, exclusive, sophisticated
  • Example: "Experience unparalleled craftsmanship. A masterpiece of design."

Automation

Daily Bulk Generation

# Generate descriptions for all products in catalog
0 8 * * * /path/to/product-description-generator/scripts/bulk_generate.py \
  --csv /path/to/products.csv \
  --platform amazon \
  --output-dir /path/to/output

A/B Testing Automation

# Generate variations for top-selling products
0 9 * * 1 /path/to/product-description-generator/scripts/generate_variations.py \
  --input /path/to/bestsellers/ \
  --variations 3 \
  --output-dir /path/to/ab-tests

Integration Opportunities

With SEO Article Generator

# 1. Generate SEO-optimized article
seo-article-gen --keyword "wireless headphones review"

# 2. Extract key benefits and features
# 3. Generate product description
product-description-generator --product "[name]" --features "[extracted]"

With Review Summarizer

# 1. Analyze reviews for insights
review-summarizer/scrape_reviews.py --url "[product_url]"

# 2. Extract top pros/cons
# 3. Generate description addressing cons
product-description-generator --product "[name]" --benefits "[address cons]"

Output Formats

Markdown

Best for documentation, CMS without HTML support, easy reading.

HTML

Best for Amazon, Shopify, eBay - formatted with tags.

CSV

Best for bulk upload, catalog management systems.


Drive sales. Rank higher. Convert visitors.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.97%
按下载量换算15,670

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills