From ebay-listing
List items for sale on eBay. Use when the user wants to create eBay listings, sell items, or manage eBay inventory.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ebay-listing:ebay-listingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List items for sale on eBay from Claude Code.
List items for sale on eBay from Claude Code.
Before first use, install the Python dependencies:
pip install -r "${CLAUDE_PLUGIN_ROOT}/requirements.txt"
Credentials must be set as environment variables. The user needs to create a .env file or export them in their shell (see Requirements below).
The script supports two auth methods and auto-detects based on which env vars are set:
Simpler for personal use. Get a token from the eBay Developer Portal: User Tokens tab > Auth'n'Auth > Sign in to Production.
EBAY_AUTH_TOKEN env varBrowser-based consent flow. More complex — requires a localhost callback server which can be finicky.
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/ebay_list.py" auth
EBAY_CLIENT_ID, EBAY_CLIENT_SECRET, EBAY_RUNAME env varshttp://localhost:8888/callbackpython3 "${CLAUDE_PLUGIN_ROOT}/scripts/ebay_list.py" list \
--title "GoPro Hero 12 Black" \
--description "Brand new, sealed in box. Includes all accessories." \
--price 299.99 \
--condition NEW \
--image "https://example.com/photo1.jpg" \
--image "https://example.com/photo2.jpg" \
--category 31388 \
--marketplace US \
--currency USD
--title (required): Item title, max 80 chars--description (required): Item description, max 4000 chars--price (required): Listing price--condition (required): One of: NEW, LIKE_NEW, NEW_OTHER, NEW_WITH_DEFECTS, CERTIFIED_REFURBISHED, SELLER_REFURBISHED, USED_EXCELLENT, USED_VERY_GOOD, USED_GOOD, USED_ACCEPTABLE, FOR_PARTS_OR_NOT_WORKING--image (required, repeatable): HTTPS image URLs, at least one--category: eBay category ID (look up at https://pages.ebay.com/sellerinformation/news/categorychanges.html)--marketplace: US (default), UK, AU, CA, DE, FR, IT, ES--currency: USD (default), GBP, AUD, CAD, EUR--quantity: Number available (default: 1)--sku: Custom SKU (auto-generated if omitted)--brand: Brand name--format: FIXED_PRICE (default) or AUCTION--draft: Create the offer without publishing (for review first)Clean up product photos before listing (auto white balance, contrast, brightness, sharpening):
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/photo_cleanup.py" <directory|file> [...]
Saves processed images alongside originals with _clean suffix. Requires Pillow.
EBAY_AUTH_TOKEN (Auth'n'Auth) or EBAY_CLIENT_ID + EBAY_CLIENT_SECRET + EBAY_RUNAME (OAuth)EBAY_SANDBOX=true to use sandbox environment for testingIf credentials are missing, tell the user which env vars to set and point them to the setup URL above. Always confirm the listing details with the user before publishing.
npx claudepluginhub isaacrowntree/claude-social-skills --plugin ebay-listingOrchestrates a 7-step C2C resale pipeline: photo recognition, price research, platform auth, listing card generation, auto-publish, schedule repricing, and auto-delist on sale. Activates when user wants to sell second-hand items.
Analyzes product images using Claude vision to generate names, descriptions, categories, pricing suggestions, tags; creates products and uploads images via Wix Stores REST API.
Generates marketplace product image cards (main image, secondary images, A+ modules) via the Higgsfield CLI. Use when users need listing-ready product visuals.