$npx -y skills add nexscope-ai/eCommerce-Skills --skill etsy-seoEtsy SEO analyzer and optimizer. Improve search visibility with title optimization, tag analysis, description scoring, and keyword research. Includes SEO scoring (0-100), long-tail keyword suggestions, and prioritized action plans. No API key required.
| 1 | # Etsy SEO 🔍 |
| 2 | |
| 3 | Analyze and optimize Etsy listings for better search visibility. |
| 4 | |
| 5 | ## Installation |
| 6 | |
| 7 | ```bash |
| 8 | npx skills add nexscope-ai/eCommerce-Skills --skill etsy-seo -g |
| 9 | ``` |
| 10 | |
| 11 | ## Features |
| 12 | |
| 13 | - **SEO Score** — 0-100 comprehensive rating |
| 14 | - **Title Optimization** — Keyword placement, length analysis |
| 15 | - **Tag Analysis** — 13 tag optimization, long-tail suggestions |
| 16 | - **Description Analysis** — First 160 chars, keyword density |
| 17 | - **Attribute Check** — Completeness validation |
| 18 | - **Keyword Research** — Category-based suggestions |
| 19 | - **Action Plan** — Prioritized improvement roadmap |
| 20 | |
| 21 | ## SEO Scoring Weights |
| 22 | |
| 23 | | Dimension | Weight | Max Score | |
| 24 | |-----------|--------|-----------| |
| 25 | | Title | 30% | 100 | |
| 26 | | Tags | 25% | 100 | |
| 27 | | Description | 20% | 100 | |
| 28 | | Attributes | 15% | 100 | |
| 29 | | Images | 10% | 100 | |
| 30 | |
| 31 | ## Etsy Tag Rules |
| 32 | |
| 33 | | Rule | Specification | |
| 34 | |------|---------------| |
| 35 | | Quantity | Max 13 tags | |
| 36 | | Length | Max 20 characters each | |
| 37 | | Format | Multi-word phrases allowed | |
| 38 | | Strategy | Long-tail + synonyms + attributes | |
| 39 | |
| 40 | ## Title Best Practices |
| 41 | |
| 42 | ``` |
| 43 | [Core Keyword] + [Attributes] + [Material/Style] + [Use Case/Occasion] |
| 44 | |
| 45 | ✅ Good: |
| 46 | "Personalized Name Bracelet, Custom Gold Bracelet for Women, Birthday Gift" |
| 47 | |
| 48 | ❌ Bad: |
| 49 | "Beautiful Handmade Bracelet" |
| 50 | ``` |
| 51 | |
| 52 | ## Usage |
| 53 | |
| 54 | ### Interactive Mode |
| 55 | |
| 56 | ```bash |
| 57 | python3 scripts/analyzer.py |
| 58 | ``` |
| 59 | |
| 60 | ### With Listing Data |
| 61 | |
| 62 | ```bash |
| 63 | python3 scripts/analyzer.py '{ |
| 64 | "title": "Handmade Silver Ring", |
| 65 | "tags": ["silver ring", "handmade jewelry"], |
| 66 | "description": "Beautiful handmade ring...", |
| 67 | "category": "Jewelry" |
| 68 | }' |
| 69 | ``` |
| 70 | |
| 71 | ### Demo Mode |
| 72 | |
| 73 | ```bash |
| 74 | python3 scripts/analyzer.py --demo |
| 75 | ``` |
| 76 | |
| 77 | ## Output Example |
| 78 | |
| 79 | ``` |
| 80 | 🔍 Etsy SEO Analysis Report |
| 81 | |
| 82 | Listing: Personalized Name Bracelet |
| 83 | Category: Jewelry > Bracelets |
| 84 | |
| 85 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 86 | |
| 87 | 📊 SEO SCORE: 72/100 ⚠️ |
| 88 | |
| 89 | Title: 85/100 ████████░░ |
| 90 | Tags: 65/100 ██████░░░░ |
| 91 | Description: 70/100 ███████░░░ |
| 92 | Attributes: 80/100 ████████░░ |
| 93 | Images: 60/100 ██████░░░░ |
| 94 | |
| 95 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 96 | |
| 97 | 📝 TITLE ANALYSIS |
| 98 | |
| 99 | Current: "Handmade Silver Bracelet" |
| 100 | Length: 24/140 characters ⚠️ Too short |
| 101 | |
| 102 | Issues: |
| 103 | • Missing core keyword at start |
| 104 | • No personalization keywords |
| 105 | • Missing occasion/gift keywords |
| 106 | |
| 107 | Suggested: |
| 108 | "Personalized Silver Bracelet, Custom Name Bracelet, Birthday Gift for Her" |
| 109 | |
| 110 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 111 | |
| 112 | 🏷️ TAG ANALYSIS |
| 113 | |
| 114 | Used: 8/13 tags ⚠️ Add 5 more |
| 115 | |
| 116 | Current Tags: |
| 117 | ✅ silver bracelet |
| 118 | ✅ handmade jewelry |
| 119 | ⚠️ bracelet (too generic) |
| 120 | |
| 121 | Suggested Tags: |
| 122 | + personalized bracelet |
| 123 | + custom name jewelry |
| 124 | + birthday gift for women |
| 125 | + anniversary gift |
| 126 | + minimalist bracelet |
| 127 | |
| 128 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 129 | |
| 130 | 📋 ACTION PLAN |
| 131 | |
| 132 | Priority | Action | Impact |
| 133 | ────────────────────────────────────────────── |
| 134 | HIGH | Rewrite title with keywords | +15 score |
| 135 | HIGH | Add 5 more tags | +10 score |
| 136 | MEDIUM | Optimize first 160 chars | +8 score |
| 137 | LOW | Add more product photos | +5 score |
| 138 | ``` |
| 139 | |
| 140 | ## Keyword Research |
| 141 | |
| 142 | The tool suggests keywords based on: |
| 143 | - Category trends |
| 144 | - Competitor analysis |
| 145 | - Search volume indicators |
| 146 | - Long-tail variations |
| 147 | |
| 148 | ## Optimization Workflow |
| 149 | |
| 150 | ``` |
| 151 | Analyze current listing |
| 152 | ↓ |
| 153 | Score each dimension |
| 154 | ↓ |
| 155 | Identify gaps |
| 156 | ↓ |
| 157 | Generate suggestions |
| 158 | ↓ |
| 159 | Prioritize actions |
| 160 | ↓ |
| 161 | Track improvements |
| 162 | ``` |
| 163 | |
| 164 | --- |
| 165 | |
| 166 | **Part of [Nexscope AI](https://www.nexscope.ai/?co-from=skill) — AI tools for e-commerce sellers.** |