$npx -y skills add nexscope-ai/eCommerce-Skills --skill brand-protection-ebayeBay brand protection toolkit. Detect unauthorized sellers, counterfeits, and VeRO violations. Includes price monitoring, trademark abuse detection, VeRO complaint templates, and enforcement guides. No API key required.
| 1 | # Brand Protection — eBay 🛡️ |
| 2 | |
| 3 | Protect your brand from unauthorized sellers and counterfeits on eBay. |
| 4 | |
| 5 | ## Installation |
| 6 | |
| 7 | ```bash |
| 8 | npx skills add nexscope-ai/eCommerce-Skills --skill brand-protection-ebay -g |
| 9 | ``` |
| 10 | |
| 11 | ## Features |
| 12 | |
| 13 | - **Unauthorized Seller Detection** — Find sellers without authorization |
| 14 | - **Price Monitoring** — MAP violation alerts |
| 15 | - **Counterfeit Signals** — Feedback-based fake detection |
| 16 | - **Trademark Abuse** — Listing title/description infringement |
| 17 | - **VeRO Complaint Templates** — eBay's rights owner program |
| 18 | - **Enforcement Guide** — Step-by-step takedown process |
| 19 | |
| 20 | ## eBay-Specific Detection |
| 21 | |
| 22 | | Dimension | Method | Risk Level | |
| 23 | |-----------|--------|------------| |
| 24 | | Unauthorized Sellers | Seller ID monitoring | 🔴 High | |
| 25 | | Price Violations | Below MAP detection | 🔴 High | |
| 26 | | Counterfeit | Feedback keyword analysis | 🔴 High | |
| 27 | | Trademark | Title pattern matching | ⚠️ Medium | |
| 28 | |
| 29 | ## Risk Levels |
| 30 | |
| 31 | | Level | Description | Action | |
| 32 | |-------|-------------|--------| |
| 33 | | 🔴 High | Immediate threat | File VeRO within 24h | |
| 34 | | ⚠️ Medium | Potential concern | Monitor and investigate | |
| 35 | | ✅ Low | Normal activity | Continue monitoring | |
| 36 | |
| 37 | ## Input Configuration |
| 38 | |
| 39 | ```json |
| 40 | { |
| 41 | "brand_name": "YourBrand", |
| 42 | "trademark_number": "US12345678", |
| 43 | "vero_enrolled": true, |
| 44 | "authorized_sellers": ["seller_id_1", "seller_id_2"], |
| 45 | "protected_item_ids": ["123456789012"], |
| 46 | "min_price": 29.99 |
| 47 | } |
| 48 | ``` |
| 49 | |
| 50 | ## Usage |
| 51 | |
| 52 | ### Detection |
| 53 | |
| 54 | ```bash |
| 55 | python3 scripts/detector.py |
| 56 | ``` |
| 57 | |
| 58 | ### Generate Complaint Templates |
| 59 | |
| 60 | ```bash |
| 61 | # VeRO complaint |
| 62 | python3 scripts/templates.py vero |
| 63 | |
| 64 | # Cease & Desist letter |
| 65 | python3 scripts/templates.py cease-desist |
| 66 | |
| 67 | # Test buy guide |
| 68 | python3 scripts/templates.py testbuy |
| 69 | ``` |
| 70 | |
| 71 | ## Output Example |
| 72 | |
| 73 | ``` |
| 74 | 🛡️ eBay Brand Protection Report |
| 75 | |
| 76 | Brand: YourBrand |
| 77 | Items Monitored: 8 |
| 78 | Analysis Date: 2024-01-15 |
| 79 | |
| 80 | ━━━━━━━━━━━━━━━━━━━━━━━━ |
| 81 | |
| 82 | 🔴 HIGH RISK ALERTS |
| 83 | |
| 84 | Item: 123456789012 |
| 85 | ├── Unauthorized seller detected |
| 86 | ├── Price: $15.99 (MAP: $29.99) |
| 87 | └── Action: File VeRO complaint |
| 88 | |
| 89 | ━━━━━━━━━━━━━━━━━━━━━━━━ |
| 90 | |
| 91 | ⚠️ COUNTERFEIT SIGNALS |
| 92 | |
| 93 | Feedback mentioning "fake": 3 |
| 94 | Feedback mentioning "not genuine": 2 |
| 95 | Recommendation: Order test buy |
| 96 | ``` |
| 97 | |
| 98 | ## VeRO Program |
| 99 | |
| 100 | eBay's Verified Rights Owner Program allows brand owners to: |
| 101 | - Report counterfeit listings |
| 102 | - Remove trademark violations |
| 103 | - Protect intellectual property |
| 104 | |
| 105 | ## Action Workflow |
| 106 | |
| 107 | ``` |
| 108 | Monitor Listings |
| 109 | ↓ |
| 110 | Detect Violation |
| 111 | ↓ |
| 112 | Collect Evidence |
| 113 | ↓ |
| 114 | File VeRO Complaint |
| 115 | ↓ |
| 116 | Track Removal |
| 117 | ``` |
| 118 | |
| 119 | --- |
| 120 | |
| 121 | **Part of [Nexscope AI](https://www.nexscope.ai/?co-from=skill) — AI tools for e-commerce sellers.** |