Add etsy-upload skill: photo folder → draft Etsy listing - #1
Merged
Conversation
Generic, shop-agnostic skill that turns a folder of product photos into a DRAFT Etsy listing via the Open API v3 (OAuth2/PKCE, auto token refresh): infers style/price/category from the shop's existing active listings, writes SEO copy + tags, optional multilingual translations & variations, then creates the draft (never auto-publishes). - Shop-specific voice/languages/pricing come from a personal shop-profile.md read from the data dir (default ~/.claude/etsy-tools/, ETSY_TOOLS_DIR override) — never committed. - Secrets (config.json, .auth.json) live in the data dir too; only a config.example.json template ships. Scripts read config via etsy.py from ETSY_TOOLS_DIR so a marketplace install (read-only skill dir) works. - Guided fallback for an empty shop's first listing (nothing to infer from). - Catalog row added to README.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
New skill etsy-upload: turns a folder of product photos into a draft Etsy listing via the Open API v3 (OAuth2/PKCE, auto token refresh). Infers style/price/category from the shop's existing active listings, writes SEO copy + tags, optional multilingual translations & variations, then creates the draft — never auto-publishes.
Built via
skill-creator(prior-art research, template, catalog row, validation).Design
shop-profile.mdread from the data dir (default~/.claude/etsy-tools/,ETSY_TOOLS_DIRoverride) — never committed. Ships ashop-profile.example.mdtemplate.config.json+.auth.jsonlive in the data dir; onlyconfig.example.json(placeholders) ships.etsy.pyreads config fromETSY_TOOLS_DIR, so a marketplace install (read-only skill dir, wiped on update) works.shop-profile.md.Prior art
Existing Etsy MCP servers are generic API wrappers; the eBay skill in
claude-social-skillsuses the scripts+skills pattern. Gap: no opinionated one-shot "photo folder → complete draft" workflow with shop-style inference + multilingual + draft-only safety. This is a differentiated build.Validation
bash scripts/validate-skills.sh→ PASS. Python scripts compile (py_compile). No secrets committed.🤖 Generated with Claude Code