aliexpress-source-mapping

aliexpress-source-mapping is a skill for Claude Code, Codex from Ertinox7711/SGRR-AGI-V2. It costs 145 tokens per session (1,981 once invoked), scanned A, original, MIT.

A research tool for tracing products in an online shop back to their original AliExpress listings. AliExpress is an e-commerce marketplace; the tool checks supplier files, project records, and product images to match the listings.

In plain words
What is it for?
Use it to map shop products to AliExpress suppliers, create a product-to-supplier spreadsheet, and investigate where catalogue items came from.
Why use it?
Dropshipping catalogues may contain products copied from another marketplace, but guessing the source can lead to incorrect matches. This prioritizes purchase records and checks candidates against them.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md.

Good fit Use it to map shop products to AliExpress suppliers, create a product-to-supplier spreadsheet, and investigate where catalogue items came from.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ertinox7711/sgrr-agi-v2/aliexpress-source-mapping
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Ertinox7711/SGRR-AGI-V2 --skill aliexpress-source-mapping
Clone the repo
git clone --depth 1 https://github.com/Ertinox7711/SGRR-AGI-V2

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aliexpress-source-mapping

README.md
[![agentmods](https://agentmods.dev/badge/skills/ertinox7711/sgrr-agi-v2/aliexpress-source-mapping/github.svg)](https://agentmods.dev/skills/ertinox7711/sgrr-agi-v2/aliexpress-source-mapping)
Your own site
<a href="https://agentmods.dev/skills/ertinox7711/sgrr-agi-v2/aliexpress-source-mapping"><img src="https://agentmods.dev/badge/skills/ertinox7711/sgrr-agi-v2/aliexpress-source-mapping/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aliexpress-source-mapping

Your own site · 80×15
<a href="https://agentmods.dev/skills/ertinox7711/sgrr-agi-v2/aliexpress-source-mapping"><img src="https://agentmods.dev/badge/skills/ertinox7711/sgrr-agi-v2/aliexpress-source-mapping.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 145 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,981 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00145 $0.01981
Opus 5 $0.00072 $0.00991
Sonnet 5 $0.00029 $0.00396
Haiku 4.5 $0.00015 $0.00198

Measured 3d ago against content hash 94c27c6a16be, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

aliexpress-source-mapping scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**Seul moyen fiable de passer l'anti-bot.** `WebFetch`/`curl`/`https.get` Node / in-app
skills/aliexpress-source-mapping/SKILL.md · 120 lines

How it starts

The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AliExpress source-mapping — reverse-sourcing d'un catalogue dropship

But : pour chaque produit d'une boutique (clonée depuis AliExpress via un concurrent), retrouver la fiche AliExpress d'origine, vérifiée par l'image, avec le nombre de commandes, sans jamais se tromper de produit.

DOCTRINE CENTRALE — reçus d'abord, devine ensuite

La cause n°1 des échecs passés = partir de devinettes (ids trouvés en SERP / vieux fichier non vérifié) au lieu de partir des reçus. Inverser cet ordre = la clé.

  1. Cherche le reçu AVANT tout. Un import réel laisse une trace : fichier fournisseur (*_fournisseurs_aliexpress.xlsx dans ~/Downloads), mémoire projet (shop-b-import-*, *-source-*), note dans le CLAUDE.md du dossier boutique. Ces liens = vérité maximale (ce sont les VRAIS achats). Ne jamais re-deviner un produit dont on a déjà le reçu.
  2. Cross-check les candidats existants contre le reçu. Si un candidates.json / vieux XLS traîne : compare ses ids à ceux du reçu. S'ils matchent sur les produits connus → le fichier est fiable pour ceux-là, et ça isole exactement les produits restants (inconnus) sur lesquels concentrer l'effort. (SHOP-B : 12/12 boho matchaient → restaient 4 inconnus au lieu de re-traiter 23.)
  3. Ne devine QUE le résidu. Tout le reste est déjà résolu.

PIPELINE

1. Catalogue live

https://<boutique>/collections/<coll>/products.json?limit=250&page=N (endpoint public Shopify, pas d'auth). Extraire key/titre/handle/prix/image. Handle du produit = t.split("|")[0] normalisé NFD sans accents.

2. Fiches AliExpress — Scrapling StealthyFetcher sur pages ITEM

Seul moyen fiable de passer l'anti-bot. WebFetch/curl/https.get Node / in-app browser = 403/captcha/page vide. Ne jamais résoudre un captcha.

# fetchers, PAS `from scrapling import` (0.4.8+)
from scrapling.fetchers import StealthyFetcher
page = StealthyFetcher.fetch(f'https://fr.aliexpress.com/item/{cid}.html',
                             headless=True, network_idle=True, timeout=60000)
html = page.html_content
  • Pages ITEM uniquement. Les pages search (/w/…, /wholesale-…) = fines, lazy-loaded, polluées de pubs (même id sponsorisé revient sur toutes les requêtes) → inexploitables. Ne pas s'en servir pour matcher.
  • Extraire par regex : og:image (image héro), subject/og:title (titre), tradeCount/…vendu|sold (commandes), urls alicdn.com/kf/…\.(jpg|png|webp) (les images-variantes, précieuses — voir §4).
  • PYTHONIOENCODING=utf-8 obligatoire (Windows cp1252 crash). Prompts longs → Write un .py puis python script.py, jamais python -c.
  • Scrapling lent (Camoufox ~15-40 s/fiche) → run_in_background, poll le .json final.

Read the full file on GitHub · 120 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 120 lines · 145 tokens per session scan A 94c27c6a16be

Subscribe to this mod's changes

aliexpress-source-mapping is a skill published in the GitHub repository Ertinox7711/SGRR-AGI-V2 (1 stars, last pushed 4d ago), licensed MIT. It adds 145 tokens to every session and 1,981 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-09.

Related

Other skills, from other repositories

should-i-buy

Helps the user decide on a purchase by taking the product links they're considering, asking a couple of sharp clarifying questions about their needs and circumstances, then opening each link in real Chrome via the Claude-in-Chrome extension to extract price, specs, ratings, reviews, return policy, and shipping.…

mostafa-drz/claude-skills · 184 tokens

shop-research

Researches products across Amazon, Google Shopping, and relevant specialty sites using the Claude-in-Chrome browser extension. Finds candidates matching user-specified criteria (gift, gadget, gear, home goods, etc.), captures screenshots and key data per candidate, then generates a modern 2026 HTML report with…

mostafa-drz/claude-skills · 138 tokens

workflow-optimization

Read the customer request, account record, and supplied policies before choosing an action. Policy overrides the customer's requested remedy.

awslabs/AutoHelix · 0 tokens

apparel-demand

Analyzes apparel demand prediction systems for trend forecasting, size curve optimization, color and style analytics, sell-through rate tracking, and markdown optimization following CPFR collaborative planning and GTIN product identification standards..

tinh2/skills-hub-registry · 43 tokens

franchise-inventory

Analyze franchise inventory management for par level optimization, waste tracking and root cause analysis, and theoretical vs. actual usage variance.

tinh2/skills-hub-registry · 29 tokens

merchandising-analytics

Analyze retail merchandising systems including planogram optimization (space-to-sales alignment, fair share index, sales per linear foot), visual merchandising effectiveness for in-store displays and e-commerce product pages, market basket analysis with association rule mining (Apriori.

tinh2/skills-hub-registry · 53 tokens