Amazon Review Checker

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a local Amazon review analysis helper, with a few install and HTML-reporting cautions users should notice.

This skill is reasonable for local review analysis. Before installing, verify the source you are installing from; if you use the HTML report feature, be aware it loads Chart.js from a CDN and should escape dynamic content before opening reports built from untrusted text.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user relies on the external repository state at install time, so the installed content could differ from the reviewed artifacts if the source changes.

Why it was flagged

The documented install command pulls from an external skill source and installs globally without a pinned version or commit in the instruction.

Skill content
npx skills add nexscope-ai/eCommerce-Skills --skill amazon-review-checker -g
Recommendation

Install only from a trusted source, prefer pinned versions or commits when available, and review the installed files before use.

What this means

Opening a generated report depends on remote JavaScript; a compromised or changed CDN dependency could affect the report page.

Why it was flagged

Generated HTML reports load Chart.js from a third-party CDN, apparently without a pinned version or integrity check.

Skill content
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
Recommendation

Pin the Chart.js version and add Subresource Integrity, or bundle a reviewed local copy for offline reports.

What this means

A maliciously crafted value included in a report could potentially affect the local HTML page when opened.

Why it was flagged

The HTML report template interpolates dynamic values directly into HTML. If untrusted strings reach these fields, a browser may interpret injected markup.

Skill content
<title>Review Analysis Report - {asin}</title> ... <strong>Summary:</strong> {summary}
Recommendation

HTML-escape dynamic report fields and render review-derived content with safe text APIs rather than raw HTML interpolation.