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>Extracted from the Amplify platform. Each module works standalone or composes into a full audit pipeline.
Programmatic PDP analysis. Title length, description completeness, missing sizing info, tag validation. No API key needed.
98 semantic keywords across 6 categories: sizing, quality, color mismatch, description gap, missing info. Hybrid keyword + LLM.
Weighted composite: return rate (40%), ticket rate (20%), keyword signals (25%), reason concentration via Shannon entropy (15%).
Generates structured JSON diffs: before/after for title, description, tags. Impact estimates with confidence scoring.
# 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 jsonimport { 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 }]The audit tools give you the analysis. The Amplify platform gives you continuous monitoring, auto-fix, and multi-channel sync.
The audit finds the problems. Amplify fixes them across every channel, automatically.
Try Amplify PlatformRun amplify-audit on your entire Shopify catalog. Get a prioritized list of listings that need attention — sorted by return risk.
Paste any Amazon product URL and get instant scoring. Compare your listings against category benchmarks.
Add listing quality checks to your deployment pipeline. Fail builds when listing scores drop below threshold.
No account. No API key. Just one command.
npx github:Vatsal2006350/amplify-audit <your-product-url>