Install
$ agentstack add skill-ebrahimelbagory-claude-fba-listing-guard ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
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 →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
- 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.
- 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".
- 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).
- 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.
- STOP — show the user the drafts in chat and wait for approval.
- 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":[...]}]} ``
- 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.
- Author: EbrahimElbagory
- Source: EbrahimElbagory/claude-fba
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.