Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

shopeeshopee 效率

Agent Skill

shopee 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

2

下载量

71
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:shopee(shopee 效率)
来源仓库:https://github.com/quantmind-br/skills
仓库路径:skills/shopee
安装命令:
npx skills add https://github.com/quantmind-br/skills --skill shopee
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/quantmind-br/skills --skill shopee

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果。

  • 适用于 shopee 效率相关的电商运营与数据分析场景,支持基于来源线索的策略优化。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • shopee 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Shopee Brazil Search Skill

Search and analyze products on Shopee Brazil (shopee.com.br) via CLI using Camoufox stealth browser.

Prerequisites

IMPORTANT: Before running any command, check if the venv exists. If it does not, create it and install all dependencies:

if [ ! -d "<SKILL_DIR>/.venv" ]; then
  cd <SKILL_DIR>
  python3 -m venv .venv
  .venv/bin/pip install "camoufox[geoip]" playwright beautifulsoup4 lxml browser-cookie3
  .venv/bin/python3 -m camoufox fetch
fi

PYTHON=<SKILL_DIR>/.venv/bin/python3

Quick Reference

CommandDescription
search -q QUERYSearch products by keyword
search -q QUERY --sort salesSearch sorted by best sales
details --url URLGet full details of a product
categoriesList main product categories
cookiesExtract & verify Shopee cookies from browser
cookies --export FILEExport cookies to JSON file

Headless mode works by default — no --visible flag needed.

  • macOS: Requires XQuartz (provides Xvfb virtual display). Install once with brew install --cask xquartz, then log out and back in. The skill auto-manages Xvfb.
  • Linux: Works out of the box via Xvfb (headless="virtual" in Camoufox).
  • Fallback: If XQuartz is not installed on macOS, use --visible to show the browser window.

Script Location

<SKILL_DIR>/scripts/shopee.py

Commands

1. Search Products

$PYTHON scripts/shopee.py search -q "iphone 15" --limit 5

Arguments:

FlagShortDescriptionDefault
--query-qSearch term(required)
--pagePage number (0-based)0
--min-priceMinimum price in BRL(none)
--max-priceMaximum price in BRL(none)
--sortSort: relevance, sales, price-asc, price-desc, newestrelevance
--limitMax results to return20
--visibleShow browser window (fallback if headless fails)false

Search with filters:

# Search phones with price range
$PYTHON scripts/shopee.py search -q "iphone" --min-price 2000 --max-price 5000

# Search by best sales
$PYTHON scripts/shopee.py search -q "notebook" --sort sales

# Page 2 of results (0-indexed)
$PYTHON scripts/shopee.py search -q "kindle" --page 1

Output structure:

{
  "success": true,
  "query": "iphone 15",
  "url": "https://shopee.com.br/search?keyword=iphone+15&page=0&sortBy=relevancy",
  "status": 200,
  "page": 0,
  "sort": "relevance",
  "results_count": 5,
  "blocked": false,
  "source": "api",
  "results": [
    {
      "item_id": "12345678901",
      "shop_id": "123456789",
      "title": "Apple iPhone 15 128GB - Preto",
      "url": "https://shopee.com.br/product/123456789/12345678901",
      "price": "R$ 4.499,00",
      "price_value": 4499.0,
      "original_price": "R$ 5.999,00",
      "discount": "25%",
      "rating": "4.9",
      "sold": "1,2mil vendidos",
      "image": "https://down-br.img.susercontent.com/file/..."
    }
  ]
}

Key fields:

  • source: "api" (data from Shopee's internal API — most reliable) or "html" (fallback DOM parsing)
  • blocked: true if Shopee served a CAPTCHA page
  • price_value: numeric float for programmatic comparison

2. Get Product Details

# By URL
$PYTHON scripts/shopee.py details --url "https://shopee.com.br/product/123456789/12345678901"

Output structure:

{
  "success": true,
  "source": "api",
  "blocked": false,
  "item_id": "12345678901",
  "shop_id": "123456789",
  "title": "Apple iPhone 15 128GB - Preto",
  "price": "R$ 4.499,00",
  "price_value": 4499.0,
  "rating": "4.9",
  "reviews_count": "1234",
  "stock": "50 em estoque",
  "seller": "Apple Store Oficial",
  "images": ["https://down-br.img.susercontent.com/file/..."],
  "description": "Full product description text...",
  "specs": {
    "Marca": "Apple",
    "Modelo": "iPhone 15",
    "Armazenamento": "128 GB"
  }
}

3. List Categories

$PYTHON scripts/shopee.py categories

Returns the main category list from Shopee Brazil:

{
  "success": true,
  "count": 15,
  "categories": [
    {"id": "100629", "name": "Celulares e Dispositivos"},
    {"id": "100644", "name": "Computadores e Acessórios"},
    {"id": "100633", "name": "Eletrônicos"}
  ]
}

4. Extract & Verify Cookies

Automatically extracts Shopee cookies from the user's browser (Chromium, Chrome, Brave, Firefox, Edge). Cookies improve scraping success rate by appearing as a logged-in user.

# Auto-detect browser and verify authentication
$PYTHON scripts/shopee.py cookies

# Use a specific browser
$PYTHON scripts/shopee.py cookies --browser brave

# Export cookies to a file
$PYTHON scripts/shopee.py cookies --export ~/shopee-cookies.json

Output:

{
  "success": true,
  "browser": "chromium",
  "cookie_count": 45,
  "authenticated": true,
  "cache_file": "<SKILL_DIR>/.cookies_cache.json"
}

Cookie priority chain:

  1. --cookies-file FILE (explicit file path)
  2. Cached cookies (auto-saved from last extraction)
  3. Auto-extract from browser (tries chromium → chrome → brave → firefox → edge → opera)

Important: The user must have visited shopee.com.br in their browser for cookies to be available. Being logged in provides better results (less CAPTCHA).

Common Workflows

Price comparison

# Search and compare prices
$PYTHON scripts/shopee.py search -q "macbook air m3" --sort price-asc --limit 10

Product research

# Get details to evaluate a product
$PYTHON scripts/shopee.py details --url "https://shopee.com.br/product/..."

Deal hunting

# Find best sellers
$PYTHON scripts/shopee.py search -q "fone bluetooth" --sort sales

Technical Notes

  • Uses Camoufox (stealth Firefox via Playwright) with humanize=True for anti-bot bypass
  • Data is extracted by intercepting Shopee's internal REST APIs (/api/v4/search/search_items, /api/v4/pdp/get_pc) during page navigation — NOT by parsing rendered HTML (Shopee is a React SPA with no server-side rendered data)
  • Falls back to HTML DOM parsing if API interception fails
  • Headless mode works by default on macOS (via XQuartz/Xvfb) and Linux (via native Xvfb). Use --visible only as a fallback if headless fails.
  • Locale is set to pt-BR for proper Shopee.com.br content
  • Retry logic: 3 retries with exponential delay on failures or CAPTCHA pages
  • CAPTCHA detection: automatically detects Shopee bot-check pages in responses
  • Rate limiting: Shopee aggressively rate-limits IPs. Space commands at least 5-10 seconds apart. After 5+ rapid requests, expect a ~2 minute cooldown before CAPTCHA clears
  • Cookies improve reliability — extract them with cookies command first
  • All output is JSON to stdout, errors to stderr, exit code 0/1
  • Price values are parsed as floats (e.g., "R$ 4.499,00" → 4499.0)
  • The source field indicates whether data came from API interception ("api") or HTML fallback ("html")

Error Handling

Errors return JSON with an error field to stderr:

{"success": false, "error": "Fetch failed for https://...", "details": "Timeout"}

If Shopee serves a CAPTCHA page, the response includes "blocked": true:

{"success": true, "blocked": true, "results_count": 0, "results": []}

Tips to avoid CAPTCHA:

  1. Extract cookies first: $PYTHON scripts/shopee.py cookies
  2. Space requests at least 5-10 seconds apart
  3. Don't make more than 5 requests in quick succession — wait ~2 minutes if you hit CAPTCHA
  4. Being logged in to Shopee in your browser helps (cookies are auto-extracted)
  5. If headless keeps getting blocked, use --visible as fallback

Exit code 1 on errors, 0 on success.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.4%
按下载量换算24

Claude

30.99%
按下载量换算22

Cursor

17.91%
按下载量换算13

Gemini CLI

9.87%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills