$npx -y skills add nexscope-ai/eCommerce-Skills --skill brand-protection-tiktokTikTok 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.
| 1 | # Brand Protection — TikTok Shop 🛡️ |
| 2 | |
| 3 | Protect your brand from unauthorized sellers and counterfeit products on TikTok Shop. |
| 4 | |
| 5 | ## Installation |
| 6 | |
| 7 | ```bash |
| 8 | npx skills add nexscope-ai/eCommerce-Skills --skill brand-protection-tiktok -g |
| 9 | ``` |
| 10 | |
| 11 | ## Features |
| 12 | |
| 13 | - **Unauthorized Seller Detection** — Find sellers without authorization |
| 14 | - **Price Monitoring** — MAP violation alerts |
| 15 | - **Counterfeit Signals** — Review-based fake detection |
| 16 | - **Affiliate Abuse** — Unauthorized influencer promotion |
| 17 | - **TikTok IP Protection** — Official reporting templates |
| 18 | - **Content Takedown** — Video/post removal requests |
| 19 | |
| 20 | ## TikTok-Specific Detection |
| 21 | |
| 22 | | Dimension | Method | Risk Level | |
| 23 | |-----------|--------|------------| |
| 24 | | Unauthorized Sellers | Shop monitoring | 🔴 High | |
| 25 | | Price Violations | Below MAP detection | 🔴 High | |
| 26 | | Counterfeit | Review/comment analysis | 🔴 High | |
| 27 | | Affiliate Abuse | Creator content scan | ⚠️ Medium | |
| 28 | |
| 29 | ## Risk Levels |
| 30 | |
| 31 | | Level | Description | Action | |
| 32 | |-------|-------------|--------| |
| 33 | | 🔴 High | Active infringement | Report within 24h | |
| 34 | | ⚠️ Medium | Potential concern | Investigate further | |
| 35 | | ✅ Low | Normal activity | Continue monitoring | |
| 36 | |
| 37 | ## Input Configuration |
| 38 | |
| 39 | ```json |
| 40 | { |
| 41 | "brand_name": "YourBrand", |
| 42 | "tiktok_shop_id": "your_shop_id", |
| 43 | "trademark_number": "US12345678", |
| 44 | "authorized_affiliates": ["creator_id_1", "creator_id_2"], |
| 45 | "min_price": 29.99 |
| 46 | } |
| 47 | ``` |
| 48 | |
| 49 | ## Usage |
| 50 | |
| 51 | ### Detection |
| 52 | |
| 53 | ```bash |
| 54 | python3 scripts/detector.py |
| 55 | ``` |
| 56 | |
| 57 | ### Generate Complaint Templates |
| 58 | |
| 59 | ```bash |
| 60 | # TikTok IP Protection report |
| 61 | python3 scripts/templates.py ip-report |
| 62 | |
| 63 | # Seller complaint |
| 64 | python3 scripts/templates.py seller-complaint |
| 65 | |
| 66 | # Content takedown |
| 67 | python3 scripts/templates.py content-takedown |
| 68 | ``` |
| 69 | |
| 70 | ## Output Example |
| 71 | |
| 72 | ``` |
| 73 | 🛡️ TikTok Shop Brand Protection Report |
| 74 | |
| 75 | Brand: YourBrand |
| 76 | Shops Monitored: 5 |
| 77 | Analysis Date: 2024-01-15 |
| 78 | |
| 79 | ━━━━━━━━━━━━━━━━━━━━━━━━ |
| 80 | |
| 81 | 🔴 HIGH RISK ALERTS |
| 82 | |
| 83 | Shop: fake_seller_123 |
| 84 | ├── Selling counterfeit products |
| 85 | ├── Price: $9.99 (MAP: $29.99) |
| 86 | └── Action: File TikTok IP report |
| 87 | |
| 88 | ━━━━━━━━━━━━━━━━━━━━━━━━ |
| 89 | |
| 90 | ⚠️ AFFILIATE ABUSE |
| 91 | |
| 92 | Creator: @unauthorized_creator |
| 93 | ├── Promoting without authorization |
| 94 | ├── Commission rate: 25% |
| 95 | └── Action: Contact creator / Report |
| 96 | ``` |
| 97 | |
| 98 | ## TikTok IP Protection |
| 99 | |
| 100 | TikTok's Intellectual Property Protection program allows brand owners to: |
| 101 | - Report counterfeit listings |
| 102 | - Remove unauthorized content |
| 103 | - Block infringing sellers |
| 104 | |
| 105 | ## Action Workflow |
| 106 | |
| 107 | ``` |
| 108 | Monitor TikTok Shop |
| 109 | ↓ |
| 110 | Detect Violation |
| 111 | ↓ |
| 112 | Collect Evidence |
| 113 | ↓ |
| 114 | File IP Report |
| 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.** |