Brand Protection โ eBay ๐ก๏ธ
Unverifiedโ35/40Claude CodeโPartialHas SKILL.md but declares no allowed-tools โ Claude Code will ask for permission each time
CursorยทUnknownWe have not crawled the repo tree, so we will not guess
CodexยทUnknownWe have not crawled the repo tree, so we will not guess
Gemini CLIยทUnknownThe spec defines no detection rule for Gemini
CopilotยทUnknownWe have not crawled the repo tree, so we will not guess
npx agentalley add brand-protection-ebayWho is stuck, and on what
eBay 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.
The whole source
Frontmatter โ 4 properties
| name | brand-protection-ebay |
|---|---|
| version | 1.0.0 |
| description | eBay 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. |
| metadata | {"nexscope":{"emoji":"๐ก๏ธ","category":"ecommerce"}} |
| 1 | --- |
| 2 | name: brand-protection-ebay |
| 3 | version: 1.0.0 |
| 4 | description: "eBay 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." |
| 5 | metadata: {"nexscope":{"emoji":"๐ก๏ธ","category":"ecommerce"}} |
| 6 | ---A5 โ No allowed-tools declared โ no way to tell what this skill may touch |
| 7 | |
| 8 | # Brand Protection โ eBay ๐ก๏ธ |
| 9 | |
| 10 | Protect your brand from unauthorized sellers and counterfeits on eBay. |
| 11 | |
| 12 | ## Installation |
| 13 | |
| 14 | ```bash |
| 15 | npx skills add nexscope-ai/eCommerce-Skills --skill brand-protection-ebay -g |
| 16 | ``` |
| 17 | |
| 18 | ## Features |
| 19 | |
| 20 | - **Unauthorized Seller Detection** โ Find sellers without authorization |
| 21 | - **Price Monitoring** โ MAP violation alerts |
| 22 | - **Counterfeit Signals** โ Feedback-based fake detection |
| 23 | - **Trademark Abuse** โ Listing title/description infringement |
| 24 | - **VeRO Complaint Templates** โ eBay's rights owner program |
| 25 | - **Enforcement Guide** โ Step-by-step takedown process |
| 26 | |
| 27 | ## eBay-Specific Detection |
| 28 | |
| 29 | | Dimension | Method | Risk Level | |
| 30 | |-----------|--------|------------| |
| 31 | | Unauthorized Sellers | Seller ID monitoring | ๐ด High | |
| 32 | | Price Violations | Below MAP detection | ๐ด High | |
| 33 | | Counterfeit | Feedback keyword analysis | ๐ด High | |
| 34 | | Trademark | Title pattern matching | โ ๏ธ Medium | |
| 35 | |
| 36 | ## Risk Levels |
| 37 | |
| 38 | | Level | Description | Action | |
| 39 | |-------|-------------|--------| |
| 40 | | ๐ด High | Immediate threat | File VeRO within 24h | |
| 41 | | โ ๏ธ Medium | Potential concern | Monitor and investigate | |
| 42 | | โ Low | Normal activity | Continue monitoring | |
| 43 | |
| 44 | ## Input Configuration |
| 45 | |
| 46 | ```json |
| 47 | { |
| 48 | "brand_name": "YourBrand", |
| 49 | "trademark_number": "US12345678", |
| 50 | "vero_enrolled": true, |
| 51 | "authorized_sellers": ["seller_id_1", "seller_id_2"], |
| 52 | "protected_item_ids": ["123456789012"], |
| 53 | "min_price": 29.99 |
| 54 | } |
| 55 | ``` |
| 56 | |
| 57 | ## Usage |
| 58 | |
| 59 | ### Detection |
| 60 | |
| 61 | ```bash |
| 62 | python3 scripts/detector.py |
| 63 | ``` |
| 64 | |
| 65 | ### Generate Complaint Templates |
| 66 | |
| 67 | ```bash |
| 68 | # VeRO complaint |
| 69 | python3 scripts/templates.py vero |
| 70 | |
| 71 | # Cease & Desist letter |
| 72 | python3 scripts/templates.py cease-desist |
| 73 | |
| 74 | # Test buy guide |
| 75 | python3 scripts/templates.py testbuy |
| 76 | ``` |
| 77 | |
| 78 | ## Output Example |
| 79 | |
| 80 | ``` |
| 81 | ๐ก๏ธ eBay Brand Protection Report |
| 82 | |
| 83 | Brand: YourBrand |
| 84 | Items Monitored: 8 |
| 85 | Analysis Date: 2024-01-15 |
| 86 | |
| 87 | โโโโโโโโโโโโโโโโโโโโโโโโ |
| 88 | |
| 89 | ๐ด HIGH RISK ALERTS |
| 90 | |
| 91 | Item: 123456789012 |
| 92 | โโโ Unauthorized seller detected |
| 93 | โโโ Price: $15.99 (MAP: $29.99) |
| 94 | โโโ Action: File VeRO complaint |
| 95 | |
| 96 | โโโโโโโโโโโโโโโโโโโโโโโโ |
| 97 | |
| 98 | โ ๏ธ COUNTERFEIT SIGNALS |
| 99 | |
| 100 | Feedback mentioning "fake": 3 |
| 101 | Feedback mentioning "not genuine": 2 |
| 102 | Recommendation: Order test buy |
| 103 | ``` |
| 104 | |
| 105 | ## VeRO Program |
| 106 | |
| 107 | eBay's Verified Rights Owner Program allows brand owners to: |
| 108 | - Report counterfeit listings |
| 109 | - Remove trademark violations |
| 110 | - Protect intellectual property |
| 111 | |
| 112 | ## Action Workflow |
| 113 | |
| 114 | ``` |
| 115 | Monitor Listings |
| 116 | โ |
| 117 | Detect Violation |
| 118 | โ |
| 119 | Collect Evidence |
| 120 | โ |
| 121 | File VeRO Complaint |
| 122 | โ |
| 123 | Track Removal |
| 124 | ``` |
| 125 | |
| 126 | --- |
| 127 | |
| 128 | **Part of [Nexscope AI](https://www.nexscope.ai/?co-from=skill) โ AI tools for e-commerce sellers.** |
| 129 |
Reviews
Installed this one?Write the first review and take the Trailblazer badge.
Alternatives
Brand Protection โ Amazon ๐ก๏ธAmazon brand protection toolkit. Detect hijackers, counterfeits, and unauthorized sellers. Includes MAP violation monitoring, trademark abuse detection, complaint templates for Brand Registry, and test buy evidence collection guides. No API key required.โยทยทยทยทโ35/40Brand Protection โ Shopify/DTC ๐ก๏ธShopify/DTC brand protection toolkit. Detect counterfeit stores, unauthorized resellers, and trademark violations. Includes DMCA takedown templates, domain monitoring, and social media infringement detection. No API key required.โยทยทยทยทโ35/40Brand Protection โ TikTok Shop ๐ก๏ธTikTok Shop brand protection toolkit. Detect unauthorized sellers, counterfeit products, and affiliate abuse. Includes TikTok IP Protection reporting, influencer misuse detection, and complaint templates. No API key required.โยทยทยทยทโ35/40Brand Protection โ Walmart ๐ก๏ธWalmart brand protection toolkit. Detect unauthorized sellers, counterfeits, and MAP violations. Includes Walmart Brand Portal reporting, WFS seller monitoring, and complaint templates. No API key required.โยทยทยทยทโ35/40