Best for
- Use when user mentions 1688, 1688.
browser-act/skills/solutions/ecommerce/1688-product-detail/SKILL.md
Extracts comprehensive wholesale product data from 1688.com product detail pages: title, tiered pricing, SKU variants with dimensions/weight, product images, seller info, shop scores, buyer protection, cross-border flags, product attributes, coupon/promotion data, and review stats. Use when user mentions 1688, 1688.com, wholesale China, alibaba wholesale, B2B China sourcing, Chinese wholesale scraper, 1688 product scrape, 1688 offer, 1688 detail, extract 1688 data, pull 1688 listings, get wholes
Decision brief
Navigate to a 1688 product page → extract 50+ fields including pricing tiers, SKU variants, seller stats, attributes, promotions
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/browser-act/skills --skill "solutions/ecommerce/1688-product-detail"Inspect the Agent Skill "1688-product-detail" from https://github.com/browser-act/skills/blob/060f5be942894174722a705b2c450c3e082db379/solutions/ecommerce/1688-product-detail/SKILL.md at commit 060f5be942894174722a705b2c450c3e082db379. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
After page load, the DSR scores request fires automatically alongside shopcard:
All process output to user (progress updates, process notifications) follows the user's language.
Extract complete wholesale product data from a 1688.com offer detail page using embedded page data and network capture for supplier metrics.
Target product detail page is open in the browser: https://detail.1688.com/offer/{offerid}.html
If browser-act has been confirmed available in the current session → skip this step.
Permission review
The documentation includes network, browsing, or remote request actions.
"images": ["https://cbu01.alicdn.com/img/ibank/...jpg"],The documentation includes network, browsing, or remote request actions.
"shopUrl": "https://shop1460393846166.1688.com",The documentation asks the agent to create, modify, or delete local files.
Normal execution does not write to the file. Do not record what keywords were used or how many results were returned — those are task outputs, not experience.Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 87/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 5,155 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Navigate to a 1688 product page → extract 50+ fields including pricing tiers, SKU variants, seller stats, attributes, promotions
All process output to user (progress updates, process notifications) follows the user's language.
Extract complete wholesale product data from a 1688.com offer detail page using embedded page data and network capture for supplier metrics.
https://detail.1688.com/offer/{offer_id}.htmlIf browser-act has been confirmed available in the current session → skip this step.
Invoke browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.
This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page, never bypassing authentication or access controls. JS code is encapsulated in Python files under the
scripts/directory, invoked viaeval "$(python scripts/xxx.py {params})".$(...)is bash syntax; it is recommended to use the bash tool for execution.
After navigating to the product page and waiting for page load:
eval "$(python scripts/extract-product-detail.py '{offer_id}')"
Parameters:
927875250705)Output example:
{
"offerId": "927875250705",
"title": "新款苹果18promax手机壳磁吸...",
"unit": "个",
"category": { "topCategoryId": 7, "postCategoryId": 132918005 },
"pricing": {
"tiers": [
{ "minQty": "30", "price": "7.99" },
{ "minQty": "100", "price": "7.79" }
],
"priceDisplayType": "range",
"minOrderQty": 30,
"currency": "CNY"
},
"sales": {
"totalSold": 308417,
"displaySaleNum": "10万+",
"saleCountLabel": "全网销量"
},
"images": ["https://cbu01.alicdn.com/img/ibank/...jpg"],
"attributes": {
"材质": "优质TPU",
"款式": "后盖款",
"功能": "防震,磁吸,防磨,防摔",
"适用型号": "iPhone17,iphone17pro..."
},
"skuCount": 339,
"skuWeightData": [
{ "weight": 40, "length": 17, "width": 7, "height": 1, "volume": 119 }
],
"seller": {
"companyName": "佛山市南海区三丰手机配件有限公司",
"loginId": "fssf06",
"memberId": "b2b-2850655109d72ea",
"userId": 2850655109,
"shopUrl": "https://shop1460393846166.1688.com",
"cardType": "cjgc",
"isPmPlus": true,
"serviceScore": "4.5分",
"buyerRepeatRate": "65.82%"
},
"offerFlags": {
"isSkuOffer": true,
"isPreSell": false,
"isConsignMarketOffer": true,
"isDistribution": true,
"isChtOffer": true,
"isBuyerProtection": true
},
"crossBorder": {
"foreignLanguagePackageAvailable": true,
"boxMarkAvailable": true,
"fbaLabelAvailable": true
},
"guarantees": ["买家保障", "正品保障"],
"descriptionUrl": "https://detail.1688.com/...",
"offerMemberTags": [4336705, 519170],
"sellerWinportUrlMap": {}
}
eval "$(python scripts/extract-sku-details.py '{offer_id}')"
Parameters:
Output example:
{
"offerId": "927875250705",
"skuCount": 339,
"skuRangePrices": [
{ "price": "7.99", "beginAmount": "30" },
{ "price": "7.79", "beginAmount": "100" }
],
"skus": [
{
"skuId": 5833485852524,
"specId": "...",
"attrs": { "颜色": "黑色", "适用型号": "iPhone17" },
"saleCount": 0,
"canBookCount": 9999,
"isPromotionSku": false,
"packInfo": { "weight": 40, "length": 17, "width": 7, "height": 1, "volume": 119 }
}
],
"skuImageMap": {}
}
eval "$(python scripts/extract-promotions.py '{offer_id}')"
Parameters:
Output example:
{
"offerId": "927875250705",
"coupons": [
{ "couponType": "INTERACT", "couponContent": "满100减5券" }
],
"promotionModel": {
"buttonName": "领券",
"promotionList": [
{
"type": "INTERACT",
"name": "互动优惠券",
"summary": "入会有礼券",
"promotionItems": [
{
"label": "满100减5券",
"availablePeriod": "有效期:2026.05.28 00:00:00-2026.11.24 23:59:59",
"canApply": true
}
]
}
]
},
"activity": {
"activityType": null,
"activityName": null,
"activityUrl": null,
"countdown": null,
"activityId": null
},
"bannerImage": ""
}
eval "$(python scripts/extract-seller-params.py '{offer_id}')"
Parameters:
Output example:
{
"offerId": "927875250705",
"seller": {
"companyName": "佛山市南海区三丰手机配件有限公司",
"loginId": "fssf06",
"memberId": "b2b-2850655109d72ea",
"userId": 2850655109,
"shopUrl": "https://shop1460393846166.1688.com",
"cardType": "cjgc",
"serviceScore": "4.5分",
"buyerRepeatRate3m": "65.82%"
},
"shopcardParams": {
"offerId": "927875250705",
"userId": 0,
"offerMemberTags": [4336705, 519170, "..."],
"sellerUserId": 2850655109,
"sellerMemberId": "b2b-2850655109d72ea",
"topCategoryId": 7,
"offerModelSign": { "isBuyerProtection": true, "isDistribution": true },
"sellerIdentity": "cjgc",
"sellerWinportUrlMap": { "indexUrl": "...", "defaultUrl": "..." },
"winportUrl": "https://shop1460393846166.1688.com"
}
}
The shopcard API uses dynamic sign tokens — let the page JS handle it, read from network traffic.
After the product detail page loads fully (wait stable), the shopcard request fires automatically:
wait stablenetwork requests --type xhr,fetch --filter h5api.m.1688.commtop.1688.moga.pc.shopcardnetwork request <id>Endpoint characteristic: URL contains mtop.1688.moga.pc.shopcard
If the shopcard request is not in traffic (navigated away or cleared), reload the product page:
navigate https://detail.1688.com/offer/{offer_id}.htmlwait stableError handling: If request not found after page reload, check if the product page loaded correctly (screenshot), then retry once. If still unavailable, shopcard data is unavailable for this offer.
Output example:
{
"api": "mtop.1688.moga.pc.shopcard",
"data": {
"model": {
"shopName": "佛山市南海区三丰手机配件有限公司",
"shopType": "cjgc",
"iconType": "cjgc",
"mainCategoryName": "手机配件",
"shopUrl": "https://shop1460393846166.1688.com",
"tpYear": 11,
"shopData": [
{ "dataKey": "店铺回头率", "dataValue": "66%" },
{ "dataKey": "店铺服务分", "dataValue": "4.5", "unit": "分" },
{ "dataKey": "准时发货率", "dataValue": "- %" },
{ "dataKey": "店铺好评率", "dataValue": "99.9%" }
],
"shopButton": {
"fuzzyFavCount": "8.6k粉丝",
"attentionRelation": false
}
}
}
}
After page load, the DSR scores request fires automatically alongside shopcard:
wait stablenetwork requests --type xhr,fetch --filter h5api.m.1688.comquerydsrratedatav2network request <id>Endpoint characteristic: URL contains mtoprateservice.querydsrratedatav2
Error handling: Same as shopcard — if not found, navigate to the product page and retry. The DSR API fires with the POST param loginId = seller loginId and offerId; both come from extract-seller-params.py output.
Output example:
{
"data": {
"model": {
"goodRates": 99.9,
"goodsGrade": 5.0,
"fulfillmentDataList": [
{ "name": "商品好评", "value": "100%" },
{ "name": "按时发货" },
{ "name": "商品退款" }
],
"commonTagNodeList": [
{ "name": "全部", "count": 2497 },
{ "name": "有图", "count": 6 },
{ "name": "好评", "count": 2494 }
],
"impressionTagNodeList": [
{ "name": "价格很便宜", "count": 6 },
{ "name": "质量很好", "count": 5 }
]
}
}
}
Combines DOM extraction with network capture for complete data. For each offer ID:
navigate https://detail.1688.com/offer/{offer_id}.htmlwait stableeval "$(python scripts/extract-product-detail.py '{offer_id}')" → core dataeval "$(python scripts/extract-sku-details.py '{offer_id}')" → SKU variantseval "$(python scripts/extract-promotions.py '{offer_id}')" → coupons/activitynetwork requests --type xhr,fetch --filter h5api.m.1688.com → locate shopcard and DSR requestsnetwork request <shopcard_request_id> → shop scoresnetwork request <dsr_request_id> → review statsshop type [collection failed]: cardType values (e.g., cjgc, cht) come from page data but no separate enumeration API found; values depend on seller registration type
Not applicable — this is a single-product detail extraction capability. For bulk processing, see Execution Efficiency below.
extract-product-detail.py output has no error field AND title is non-null AND pricing.tiers length >= 1
s.1688.com) requires login/CN IP — this Skill covers detail pages only (publicly accessible by offer ID)mtop.1688.moga.pc.shopcard) may return empty shopData for some offer types or if the session has expired; navigate to the product page to refreshproductAttributes DOM module has a server-side rendering bug (JSONArray cast error in page metadata) — attributes are extracted from DOM fallback selectors insteadfreightInfo.totalCost (shipping cost) comes from the freight API which requires sendAddressCode and receiveAddressCode; defaults to sender's registered address; not included in composite extraction due to address dependencyqueryItemRatedListV2) returns paginated individual reviews but is not included in composite — use the DSR summary insteadPath: {working_directory}/browser-act-skill-forge-memories/1688-wholesale-scraper-1688-product-detail.memory.md (working directory is determined by the Agent running the Skill, typically the project root or current working directory)
Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions (e.g., a strategy has become ineffective); adjust strategy order accordingly.
After execution: If an unexpected situation is encountered (strategy became ineffective, page redesigned, anti-scraping upgraded, better path discovered), append a line:
{YYYY-MM-DD}: {what happened} → {conclusion}
Normal execution does not write to the file. Do not record what keywords were used or how many results were returned — those are task outputs, not experience.
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
dotnet/skills
Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing
JasonColapietro/suede-creator-skills
Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).