‹ 首页

ecommerce-seller-info

@browser-act · 收录于 1 周前 · 上游提交 2 天前

Extract seller or merchant profile data from marketplace platform seller pages. Returns seller name, rating, review count, positive feedback percentage, joined date, and return policy. Works on Amazon seller pages, eBay seller pages, and any e-commerce site with seller profiles. Use when: seller information, merchant profile, seller rating, marketplace seller data, seller details, vendor profile, store information, seller feedback, merchant rating, seller review count, get seller info, ebay seller page, amazon seller profile, marketplace vendor analysis, seller research.

适合你,如果需要在电商平台快速了解卖家背景和信誉

/ 下载安装
ecommerce-seller-info.skill双击,或拖进 Claude 桌面版 / Cowork,即完成安装↓ .skill↓ .zip
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code~/.claude/skills/(项目级 .claude/skills/)
Codex CLI~/.codex/skills/
Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add browser-act/skills/ecommerce-seller-info
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- browser-act/skills/ecommerce-seller-info
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify browser-act/skills/ecommerce-seller-info
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
4386GitHub stars
~1K最小装载
~1.9K含声明引用
~1.9K文本包总量
镜像托管

怎么用

商店整理自技能原文 · 版本 51daea1 · 表述以原文为准
它做什么

当你在浏览器中打开电商卖家页面时,它能提取卖家名称、评分、评价数、好评率、加入日期和退货政策等信息。

什么时候触发

当你访问亚马逊、eBay等电商平台的卖家页面,或要求获取卖家信息时触发。

装好后可以这样说
提取当前卖家页面的评分和评价数。
提取eBay卖家页面的好评率和加入日期。
技能原文 SKILL.md作者撰写 · MIT · 51daea1

E-commerce — Seller Info

Seller/merchant profile URL → seller name, rating, review count, feedback, joined date, return policy
Language

All process output to user (progress updates, process notifications) follows the user's language.

Objective

Extract seller profile information from marketplace platform seller or storefront pages using JSON-LD structured data and platform-specific DOM patterns.

Prerequisites
  • Target browser is open and connected
  • No login required for public seller profile pages
Pre-execution Checks
1. Tool Readiness

If 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.

Capability Components
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. JS code is encapsulated in Python files under the scripts/ directory, invoked via eval "$(python scripts/xxx.py {params})". Use the bash tool for execution.
DOM: Extract seller profile from current seller page

Navigate to the seller profile URL first, then extract:

eval "$(python scripts/extract-seller.py)"

Output example:

{
  "url": "https://www.amazon.com/shops/seller/A1234567890",
  "name": "TechGadgets Store",
  "description": "Premium electronics accessories since 2015",
  "rating": 4.8,
  "review_count": 12450,
  "positive_feedback_pct": "98% positive feedback",
  "joined": "Member since: January 2015",
  "return_policy": "30-day returns accepted",
  "image": null,
  "_platform": "amazon"
}
Composite: Amazon seller URL patterns

Amazon seller pages follow these URL patterns:

| Seller page type | URL | |-----------------|-----| | Seller storefront | https://www.amazon.com/shops/{seller_id} | | Seller feedback (from product page) | Click "Sold by {seller_name}" link on a product page | | Third-party seller ratings | https://www.amazon.com/gp/seller/{seller_id}/ref=dp_byline_sr |

To find a seller from a product page:

  1. Navigate to product page → wait stable
  2. eval "document.querySelector('#sellerProfileTriggerId, #merchant-info a')?.href" to get the seller URL
  3. navigate {seller_url}wait stable
  4. eval "$(python scripts/extract-seller.py)"
Composite: eBay seller URL patterns

| Seller page type | URL | |-----------------|-----| | eBay seller storefront | https://www.ebay.com/str/{seller_username} | | eBay seller feedback | https://www.ebay.com/usr/{seller_username} |

To find seller from an eBay listing:

  1. Navigate to eBay item page → wait stable
  2. eval "document.querySelector('.x-sellercard-atf__data a[href*=\"/usr/\"]')?.href" to get seller URL
  3. Navigate and extract
Success Criteria

result.name != null

Known Limitations
  • Amazon seller pages may require navigating from https://www.amazon.com first on fresh sessions to avoid bot detection
  • eBay seller pages may require navigating from https://www.ebay.com first
  • Seller description and return policy availability depends on whether the seller has filled in their profile
  • Rating scale differs by platform: Amazon uses 1–5 stars, eBay uses percentage of positive feedback; both are preserved in their native format
Execution Efficiency
  • Batch orchestration: Loop through seller URLs serially; add 1–2 second intervals between navigations
  • Test before batch execution: Test with 1–2 sellers before running the full batch
  • Error resumption: Save results item by item; on failure, resume from the breakpoint
Experience Notes

Path: {working-directory}/browser-act-skill-forge-memories/ecommerce-scraper-ecommerce-seller-info.memory.md

Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions; 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}

按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。