/install skill-amazon-review-request
skill-amazon-review-request
Sends Amazon review requests for eligible Shipped orders via SP-API Messaging API. Hardened with retry logic, deduplication, eligibility window enforcement, and dry-run mode.
Prerequisites
- SP-API credentials in
~/amazon-sp-api.json:{ "refreshToken": "...", "clientId": "...", "clientSecret": "...", "marketplaceId": "A2VIGQ35RCS4UG" } - Or set env vars:
SP_API_REFRESH_TOKEN,SP_API_CLIENT_ID,SP_API_CLIENT_SECRET,SP_API_MARKETPLACE_ID - SP-API app must have Messaging permission granted
Usage
# Dry run — see what would be sent (no requests made)
node scripts/request-reviews.js --dry-run
# Live run
node scripts/request-reviews.js
Behavior
| Feature | Detail |
|---|---|
| Eligibility window | Orders 5–30 days old only (Amazon's allowed window) |
| Deduplication | Skips orders already logged as sent in the tracking log |
| Retry logic | Up to 3 attempts with 5s delay on 5xx / 429 responses |
| Rate limiting | 1.1s pause between requests |
| Dry-run | --dry-run flag — logs what would be sent, no API calls |
| Tracking log | data/review-requests-log.json — per-order status, sentAt, attempts |
| Text log | data/review-requests.log — timestamped human-readable run log |
Tracking Log Schema
data/review-requests-log.json:
[
{
"orderId": "123-4567890-1234567",
"sentAt": "2026-03-01T10:00:00.000Z",
"status": "sent", // "sent" | "failed" | "skipped"
"attempts": 1,
"reason": "optional error string for failed/skipped"
}
]
Summary Output
=== DONE | Sent: 12 | Skipped: 4 | Failed: 1 ===
Dry-run:
=== DONE [DRY RUN] | Would send: 15 | Skipped: 4 ===
Scheduling (Recommended)
Run daily via cron:
# 9am UAE time (UTC+4) = 5am UTC
0 5 * * * cd $HOME/.openclaw/workspace && node skills/skill-amazon-review-request/scripts/request-reviews.js >> data/review-requests-cron.log 2>&1
Region Note
Script targets sellingpartnerapi-eu.amazon.com (EU endpoint, covers UAE marketplace).
Change to sellingpartnerapi-na.amazon.com or sellingpartnerapi-fe.amazon.com for other regions.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install skill-amazon-review-request - After installation, invoke the skill by name or use
/skill-amazon-review-request - Provide required inputs per the skill's parameter spec and get structured output
What is Skill Amazon Review Request?
Sends Amazon review requests for eligible shipped orders using SP-API with retry, deduplication, eligibility checks, and optional dry-run mode. It is an AI Agent Skill for Claude Code / OpenClaw, with 320 downloads so far.
How do I install Skill Amazon Review Request?
Run "/install skill-amazon-review-request" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Skill Amazon Review Request free?
Yes, Skill Amazon Review Request is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Skill Amazon Review Request support?
Skill Amazon Review Request is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Skill Amazon Review Request?
It is built and maintained by Zero2Ai (@zero2ai-hub); the current version is v1.0.0.