amazon-review-checker ยท v1.0.0 ยท 2026-04-09 ยท sha256 31f9d556505c9418

amazon-review-checker v1.0.0A

Immutable. This exact content is served forever at /api/v1/blob/31f9d556505c9418.

---
name: amazon-review-checker
version: 1.0.0
description: "Amazon review authenticity analyzer. Detect fake reviews, suspicious patterns, and rating manipulation. Includes time clustering detection, content similarity analysis, rating distribution checks, and verified purchase validation. Progressive analysis with L1-L4 depth levels. No API key required."
metadata: {"nexscope":{"emoji":"๐Ÿ”","category":"ecommerce"}}
---

# Amazon Review Checker ๐Ÿ”

Review authenticity analyzer โ€” detect fake reviews, suspicious patterns, and rating manipulation.

## Installation

```bash
npx skills add nexscope-ai/eCommerce-Skills --skill amazon-review-checker -g
```

## Features

- **Authenticity Score** โ€” 0-100 comprehensive rating
- **Suspicious Pattern Detection** โ€” Time clustering, content similarity, rating anomalies
- **Fake Review Flagging** โ€” Mark high-risk reviews with explanations
- **Progressive Analysis** โ€” More data = deeper insights

## Progressive Analysis Levels

| Level | Required Data | Unlocked Analysis |
|-------|---------------|-------------------|
| **L1 Basic** | Review content | Similarity, length, keywords |
| **L2 Advanced** | + Review date | Time clustering detection |
| **L3 Deep** | + Star rating | Rating distribution analysis |
| **L4 Complete** | + VP status | Verified purchase validation |

## Detection Dimensions

| Dimension | Weight | Method |
|-----------|--------|--------|
| Time Clustering | 25% | Sliding window + burst detection |
| Content Similarity | 20% | N-gram + Jaccard similarity |
| Rating Distribution | 20% | Chi-square test vs natural distribution |
| VP Ratio | 15% | Compare to category benchmark |
| Review Length | 5% | Entropy analysis |
| Suspicious Keywords | 5% | Keyword pattern matching |

## Risk Levels

| Score | Level | Description |
|-------|-------|-------------|
| 70-100 | โœ… Low Risk | Reviews appear authentic |
| 50-69 | โš ๏ธ Medium Risk | Some concerns found |
| 30-49 | ๐Ÿ”ด High Risk | Multiple red flags |
| 0-29 | ๐Ÿ’€ Critical | Likely mass fake reviews |

## Usage

### Method 1: Paste Reviews

Paste reviews directly in conversation:

```
Check these reviews:

5 stars - Great product! Works perfectly.
5 stars - Amazing! Best purchase ever.
1 star - Not as described.
```

### Method 2: JSON Input

```bash
python3 scripts/analyzer.py '[
  {"content": "Great product!", "rating": 5, "date": "2024-01-15", "verified_purchase": true},
  {"content": "Amazing!", "rating": 5, "date": "2024-01-15", "verified_purchase": false}
]'
```

### Method 3: Demo Mode

```bash
python3 scripts/analyzer.py --demo
```

## Output Example

```
๐Ÿ“Š Review Authenticity Report

ASIN: B08XXXXX
Reviews: 10
Analysis Level: L4

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”

Authenticity Score: 66/100 โš ๏ธ

Medium Risk - Some concerns found.

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”

Detection Dimensions

๐Ÿ”ด Time Clustering: 70/100
   Max 6 reviews within 48h

โœ… Content Similarity: 24/100
   Found 0 highly similar review groups

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”

High-Risk Reviews (Top 3)

1. Risk 75% - "Perfect!"
   Reason: Too short, non-VP, templated 5-star

๐Ÿ” Want more accurate analysis? Add:
โ€ข Reviewer info โ†’ Unlock "Account Profile Analysis"
```

## Interaction Flow

```
User Input (any format)
        โ†“
Smart field detection
        โ†“
Analyze with available data
        โ†“
Results + depth suggestions
        โ†“
User continues or ends
```

---

**Part of [Nexscope AI](https://www.nexscope.ai/?co-from=skill) โ€” AI tools for e-commerce sellers.**