Product Description Generator
Overview
Generate high‑converting, SEO‑optimized product descriptions for multiple e‑commerce platforms. The skill creates compelling copy that drives sales while improving search visibility.
Core Workflow
- Collect Input – product name, features, benefits, target audience, tone, and primary keywords.
- Select Platform – Amazon, Shopify, eBay, Etsy, or custom.
- Apply Platform Template – uses platform‑specific structure and length constraints.
- Inject SEO – primary keyword in title and first paragraph, secondary keywords throughout, semantic variations, meta data.
- Add Conversion Elements – hook, problem, solution, benefit‑focused features, social proof, urgency, CTA.
- Render Output – markdown, HTML or CSV as requested.
Usage Examples
Amazon Listing
product-description-generator \
--product "Wireless Bluetooth Headphones" \
--features "40hr battery,noise cancelling,Bluetooth 5.3" \
--benefits "crystal clear audio,comfortable fit,fast charging" \
--tone professional \
--platform amazon \
--output amazon_listing.md
Shopify Product Page
product-description-generator \
--product "Ergonomic Office Chair" \
--features "adjustable lumbar support,360° swivel,breathable mesh" \
--tone conversational \
--platform shopify \
--include-faq \
--output shopify_description.md
Bulk Generation from CSV
product-description-generator \
--csv products.csv \
--platform ebay \
--output-dir ./descriptions
Platform Guidelines (see references/platforms.md)
- Amazon – Title 150‑200 chars, 5 bullet points, 2000‑3000 char description.
- Shopify – Title ≤70 chars, HTML description, SEO meta ≤155 chars.
- eBay – Title ≤80 chars, HTML description, detailed item specifics.
- Etsy – Title ≤140 chars, story‑driven description, 13 tags of 20 chars.
Tone Options
professional – data‑driven, authoritative.
conversational – friendly, relatable.
playful – energetic, emoji‑friendly.
luxury – elegant, exclusive.
Automation
Schedule bulk runs with cron or integrate into product pipelines. See scripts/ folder for CLI helpers.
Drive sales. Rank higher. Convert visitors.
Created by Simon Cai · More e-commerce skills: github.com/simoncai519/open-accio-skill
1---2name: open-accio-product-description-generator3description: Use when user wants to create product descriptions, SEO copy, Amazon listings, eBay item descriptions, Etsy listing copy, Shopify product pages, or any e‑commerce marketplace copy. Generates conversion‑focused, keyword‑rich copy tailored to the target platform.4---567# Product Description Generator89## Overview10Generate high‑converting, SEO‑optimized product descriptions for multiple e‑commerce platforms. The skill creates compelling copy that drives sales while improving search visibility.1112## Core Workflow131. **Collect Input** – product name, features, benefits, target audience, tone, and primary keywords.142. **Select Platform** – Amazon, Shopify, eBay, Etsy, or custom.153. **Apply Platform Template** – uses platform‑specific structure and length constraints.164. **Inject SEO** – primary keyword in title and first paragraph, secondary keywords throughout, semantic variations, meta data.175. **Add Conversion Elements** – hook, problem, solution, benefit‑focused features, social proof, urgency, CTA.186. **Render Output** – markdown, HTML or CSV as requested.1920## Usage Examples2122### Amazon Listing23```bash24product-description-generator \25 --product "Wireless Bluetooth Headphones" \26 --features "40hr battery,noise cancelling,Bluetooth 5.3" \27 --benefits "crystal clear audio,comfortable fit,fast charging" \28 --tone professional \29 --platform amazon \30 --output amazon_listing.md31```3233### Shopify Product Page34```bash35product-description-generator \36 --product "Ergonomic Office Chair" \37 --features "adjustable lumbar support,360° swivel,breathable mesh" \38 --tone conversational \39 --platform shopify \40 --include-faq \41 --output shopify_description.md42```4344### Bulk Generation from CSV45```bash46product-description-generator \47 --csv products.csv \48 --platform ebay \49 --output-dir ./descriptions50```5152## Platform Guidelines (see references/platforms.md)53- **Amazon** – Title 150‑200 chars, 5 bullet points, 2000‑3000 char description.54- **Shopify** – Title ≤70 chars, HTML description, SEO meta ≤155 chars.55- **eBay** – Title ≤80 chars, HTML description, detailed item specifics.56- **Etsy** – Title ≤140 chars, story‑driven description, 13 tags of 20 chars.5758## Tone Options59- `professional` – data‑driven, authoritative.60- `conversational` – friendly, relatable.61- `playful` – energetic, emoji‑friendly.62- `luxury` – elegant, exclusive.6364## Automation65Schedule bulk runs with cron or integrate into product pipelines. See `scripts/` folder for CLI helpers.6667---6869*Drive sales. Rank higher. Convert visitors.*707172---7374**Created by [Simon Cai](https://github.com/simoncai519) · More e-commerce skills: [github.com/simoncai519/open-accio-skill](https://github.com/simoncai519/open-accio-skill)**