OPEN SOURCE

Audit any product listing. Instantly.

Paste a product URL. Get a quality score, return risk assessment, and AI-generated improvements. Free, open source, no account required.

$npx github:Vatsal2006350/amplify-audit <product-url>
Star on GitHub
PLATE 01 — TERMINAL
$
01WHAT’S INCLUDED

Four production-grade modules.Zero vendor lock-in.

Extracted from the Amplify platform. Each module works standalone or composes into a full audit pipeline.

Listing Quality Scorer

~400 lines
01

Programmatic PDP analysis. Title length, description completeness, missing sizing info, tag validation. No API key needed.

Return Reason Classifier

~300 lines
02

98 semantic keywords across 6 categories: sizing, quality, color mismatch, description gap, missing info. Hybrid keyword + LLM.

SKU Health Scorer

~150 lines
03

Weighted composite: return rate (40%), ticket rate (20%), keyword signals (25%), reason concentration via Shannon entropy (15%).

Recommendation Engine

~400 lines
04

Generates structured JSON diffs: before/after for title, description, tags. Impact estimates with confidence scoring.

02USAGE

Clone. Import. Ship.

CLI — Zero config
bash
# Audit a single product
npx github:Vatsal2006350/amplify-audit https://amazon.com/dp/B09V3KXJPB

# Audit with return data
npx github:Vatsal2006350/amplify-audit \
  --product ./product.json \
  --returns ./returns.csv

# Output as JSON for CI/CD
npx github:Vatsal2006350/amplify-audit <url> --format json
Library — Full control
typescript
import { audit } from 'amplify-audit'

const report = await audit({
  url: 'https://amazon.com/dp/B09V3KXJPB',
  // Optional: include return data
  returns: returnData,
})

console.log(report.score)        // 42
console.log(report.issues)       // [{ type, severity, text }]
console.log(report.returnRisk)   // { score, topReasons }
console.log(report.fixes)        // [{ field, before, after }]
03ARCHITECTURE

Open core. Full pipeline behind it.

The audit tools give you the analysis. The Amplify platform gives you continuous monitoring, auto-fix, and multi-channel sync.

OPEN SOURCEFREE
Listing Scorer
Return Classifier
SKU Scorer
Recommendation Engine
AMPLIFY PLATFORMMANAGED
Multi-Marketplace Sync
Continuous Monitoring
Auto-Apply Pipeline
Impact Measurement
powers

The audit finds the problems. Amplify fixes them across every channel, automatically.

Try Amplify Platform
04USE CASES

Shopify Store Audit

Run amplify-audit on your entire Shopify catalog. Get a prioritized list of listings that need attention — sorted by return risk.

$ npx github:Vatsal2006350/amplify-audit --shopify mystore.myshopify.com

Amazon Listing Check

Paste any Amazon product URL and get instant scoring. Compare your listings against category benchmarks.

$ npx github:Vatsal2006350/amplify-audit https://amazon.com/dp/...

CI/CD Quality Gate

Add listing quality checks to your deployment pipeline. Fail builds when listing scores drop below threshold.

$ amplify-audit --ci --min-score 70

Start auditing in 30 seconds.

No account. No API key. Just one command.

$npx github:Vatsal2006350/amplify-audit <your-product-url>