AgentStack
SKILL verified MIT Self-run

Listing Guard

skill-ebrahimelbagory-claude-fba-listing-guard · by EbrahimElbagory

Edit live Amazon listing content (titles, backend keywords, attributes) via the SP-API Listings Items API with a draft → user-approval → PATCH → backup/rollback flow. Use when the user wants listing copy fixed, titles extended, backend search terms filled, or an audit found content problems.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-ebrahimelbagory-claude-fba-listing-guard

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ebrahimelbagory-claude-fba-listing-guard)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
yesterday

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Listing Guard? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Listing edits with a safety harness

Live listings are live money. This skill's contract: nothing changes on Amazon without the user approving the exact copy first, and every change is reversible.

The flow

  1. Map ASIN → SKU. GET /listings/2021-08-01/items/{sellerId} (search by

seller). Each ASIN often has multiple SKUs (FBA + FBM offers) — content patches target the BUYABLE SKU.

  1. Read current state from two places:
  • Seller contribution: GET .../items/{sellerId}/{sku}?includedData=attributes,productTypes
  • Live reconciled view: GET /catalog/2022-04-01/items/{asin}?includedData=attributes

These can differ (old contributions, content from other sources). The catalog view is what buyers see — treat it as the "before".

  1. Check the schema before promising anything. Product Type Definitions API:

GET /definitions/2020-09-01/productTypes/{type}?requirements=LISTING → fetch the schema JSON and confirm the attribute you want to edit EXISTS. Restricted categories have attributes removed (real example: bullet_point is gone from ELECTROSHOCK_WEAPON — bullets there are legacy data no API or flat file can touch; only a Seller Central case can).

  1. Draft. Write new copy to a drafts file with before/after and char counts.

Targets that keep listing-quality checkers happy: title 150–200 chars, bullets ≥150 chars each, no all-caps words, no symbols/emojis, keyword-bearing but human. Backend generic_keyword ≤ ~250 bytes, no commas needed, no brand names.

  1. STOP — show the user the drafts in chat and wait for approval.
  2. Back up, then PATCH. Save the current attributes JSON per SKU

(data/listing_backup_.json), then: `` PATCH /listings/2021-08-01/items/{sellerId}/{sku}?marketplaceIds={mp} {"productType": "", "patches": [ {"op":"replace","path":"/attributes/item_name", "value":[{"value":"...","language_tag":"en_US","marketplace_id":""}]}, {"op":"replace","path":"/attributes/generic_keyword","value":[...]}]} ``

  1. Verify. Response should be ACCEPTED with a submissionId. Re-GET with

includedData=attributes,issues: the new values stored, and no NEW ERROR-severity issues (pre-existing issues, e.g. image-compliance flags, are not yours — but report them). Amazon publishes in minutes–hours.

Rollback

Re-PATCH with the values from data/listing_backup_.json. That's the whole procedure — which is why step 6's backup is non-negotiable.

Watch for in responses

  • Warning 90000900 "attribute does not belong to the product type … ignoring" —

your edit for that attribute was silently dropped; check the schema (step 3).

  • Issue 100581 (main image contains text/logo) — pre-existing compliance flag

worth surfacing to the user even though it's not content you touched.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.