AliExpress Israel Skill

April 25, 2026 · View on GitHub

Dev / staging repo for AliExpress-related skills before they ship to the Israel Shopping plugin.

Status: ✅ Initial integration done. The plugin (Claude-Israel-Shopping-Plugin) now ships search-aliexpress, fetch-listing (no-auth scraper), and fetch-listing-api (stub, official Affiliate API). This repo continues to host research and pre-ship validation for new scraper logic, locale handling, and signing flows.

Role

  • Sandbox for new logic — validate scraper changes, locale switching, and API signing patterns here before they land in the plugin.
  • Research storeresearch/cookies/, research/ui-selectors/ — DOM and cookie observations from live AliExpress sessions.
  • Reference index — links to alternative scrapers, official-API references, and the upstream packages we depend on.

Already shipped to the plugin

SkillRepo pathStatus
search-aliexpressClaude-Israel-Shopping-Plugin/skills/search-aliexpress/✅ Playwright, IL/ILS/Hebrew
fetch-listingClaude-Israel-Shopping-Plugin/skills/fetch-listing/✅ No-auth, default en/USD
fetch-listing-apiClaude-Israel-Shopping-Plugin/skills/fetch-listing-api/🟡 Stub — awaiting credential validation
compare-to-localClaude-Israel-Shopping-Plugin/skills/compare-to-local/
il-reviews-showClaude-Israel-Shopping-Plugin/skills/il-reviews-show/
free-shipping-onlyClaude-Israel-Shopping-Plugin/skills/free-shipping-only/
exclude-combo-dealsClaude-Israel-Shopping-Plugin/skills/exclude-combo-deals/

Two scraping paths

1. No-auth (Puppeteer) — current default

2. Authenticated (Affiliate API) — preferred long-term

  • Endpoint: https://api-sg.aliexpress.com/sync
  • Methods: aliexpress.affiliate.productdetail.get, aliexpress.affiliate.product.query
  • Auth: HMAC-SHA256 signing with App Key + App Secret + Access Token
  • Validation target: Daniel's DSR Holdings Purchasing app (Affiliates → Individual)
  • Reference impl: AdirCohen333/FindMyDeal index.js — uses the same signing pattern against the DS endpoints

Fallback scrapers (in case sudheer-ranga breaks)

Israel-specific concerns (validated)

  • VAT: 0–$75 USD exempt; $75–$500 → 18% VAT on (item + shipping); >$500 → customs/duty applies. The fetch-listing skill computes both bare and VAT-inclusive landed cost so the user picks which to use for comparisons.
  • FX: Live USD/ILS via frankfurter.app (ECB rates, no key), 24h file cache.
  • Locale: Default en/USD. Hebrew/ILS via documented cookies (c_tp=ILS, b_locale=iw_IL) — see research/cookies/.
  • Shipping labels: AliExpress's own "free shipping" filter often bakes the fee into the unit price, but it produces a reliable flat number — useful for fast comparisons.

Integration target

danielrosehill/Claude-Israel-Shopping-Plugin — sibling to other Israel agent skills under the broader Israel-Agent-Skills ecosystem.