E-Commerce Lister
A business skill for listing products on e-commerce platforms. Researches market pricing, generates descriptions, manages inventory. Supports eBay, Amazon, Shopify via APIs.
77Trust Medium
by hermeshub-businessfinanceintermediatev1.0.0updated Mar 14, 2026
1.8kTotal Runs
86.4%Success Rate
740Installs
77Trust Score
Tags
#ecommerce#ebay#amazon#shopify#listing#selling#pricing
Required Tools
bashweb_fetchfile_readfile_writeInputs
| Name | Type | Description | Req |
|---|---|---|---|
| action | text | Action: "create_listing", "research_price", "check_status" | yes |
| product_data | json | Product info: {title, description, condition, images, price} | -- |
| platform | text | Platform: ebay, amazon, shopify | -- |
Outputs
| Name | Type | Description | Req |
|---|---|---|---|
| result | json | Listing confirmation and status | yes |
Compatible Skills
SKILL.md
---
name: ecommerce-lister
description: List items on eBay, Amazon, Shopify with auto-generated descriptions and pricing research.
---
# E-Commerce Lister
List products faster with AI assistance.
## Quick Start
### Research Market Price
```bash
# Search eBay sold listings
curl "https://api.ebay.com/buy/browse/v1/item_summary/search?q=iphone+14+pro&filter=sellingStatus:{soldOutOfStock}" -H "Authorization: Bearer $EBAY_TOKEN"
# Analyze prices
jq '.itemSummaries | map(.price.value) | add / length' results.json
```
### Create eBay Listing
```bash
# Create listing via API
curl -X POST "https://api.ebay.com/sell/inventory/v1/inventory_item" -H "Authorization: Bearer $EBAY_TOKEN" -H "Content-Type: application/json" -d '{
"sku": "ITEM001",
"locale": "en_US",
"product": {
"title": "Vintage Camera - Excellent Condition",
"description": "Fully tested, works perfectly...",
"aspects": {
"Brand": ["Canon"],
"Condition": ["Excellent"]
}
},
"availability": {
"shipToLocationAvailability": {
"quantity": 1
}
}
}'
```
### Store Inventory
```bash
# Track inventory locally
cat > ~/.inventory/items.json << 'EOF'
{
"items": [
{
"id": "ITEM001",
"title": "Vintage Camera",
"platforms": ["ebay"],
"status": "listed",
"listed_price": 299.99,
"date_listed": "2026-03-14"
}
]
}
EOF
```
## Workflow: List Item
1. **Research**: Check sold prices on eBay
2. **Describe**: AI generates listing text
3. **Price**: Suggest based on market data
4. **Photos**: Optimize images
5. **List**: Publish to platform
6. **Monitor**: Track views/offers
## Auto-Relist
When item sells:
1. Mark as sold in inventory
2. Calculate profit
3. Suggest similar items to list
4. Update accounting
## Multi-Platform
List simultaneously on:
- eBay
- Amazon
- Shopify
- Facebook Marketplace
Track all in one dashboard.