โ† All skills
Tencent SkillHub ยท Developer Tools

SP-API Skill

Amazon SP-API skill for OpenClaw agents. Fetch orders, check FBA inventory, manage listings and pricing. Works with any marketplace and seller account.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Amazon SP-API skill for OpenClaw agents. Fetch orders, check FBA inventory, manage listings and pricing. Works with any marketplace and seller account.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/auth.js, scripts/inventory.js, scripts/listings.js, scripts/orders.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Amazon SP-API Skill

Fetch orders, check FBA inventory, and manage listings โ€” plug-and-play for any OpenClaw agent.

1. Install dependency

npm install amazon-sp-api

2. Create credentials file

{ "lwaClientId": "amzn1.application-oa2-client.YOUR_CLIENT_ID", "lwaClientSecret": "YOUR_CLIENT_SECRET", "refreshToken": "Atzr|YOUR_REFRESH_TOKEN", "region": "eu", "marketplace": "YOUR_MARKETPLACE_ID", "sellerId": "YOUR_SELLER_ID" } Save as amazon-sp-api.json. Set AMAZON_SPAPI_PATH env var to point to it (default: ./amazon-sp-api.json). Regions: na | eu | fe Marketplace IDs: Full list

auth.js โ€” Test Connection

node scripts/auth.js

orders.js โ€” Orders

node scripts/orders.js --list # last 7 days node scripts/orders.js --list --days 30 node scripts/orders.js --list --status Unshipped node scripts/orders.js --list --out orders.json node scripts/orders.js --get ORDER-ID

inventory.js โ€” FBA Inventory

node scripts/inventory.js node scripts/inventory.js --sku "MY-SKU" node scripts/inventory.js --out inventory.json

listings.js โ€” Listings & Pricing

node scripts/listings.js --get "MY-SKU" node scripts/listings.js --update "MY-SKU" --price 99.00 node scripts/listings.js --update "MY-SKU" --price 99.00 --currency USD

Notes

Tokens auto-refresh via LWA โ€” no manual management Keep credential files at chmod 600 Respect SP-API rate limits per endpoint

Related

skill-amazon-ads โ€” Campaign & bid management

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts2 Docs
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/auth.js Scripts
  • scripts/inventory.js Scripts
  • scripts/listings.js Scripts
  • scripts/orders.js Scripts