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

amazon-shopping亚马逊购物

Agent Skill

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

总安装

1,536

周安装

64

GitHub Stars

1

下载量

512
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jlave-dev/agent-skills --skill amazon-shopping

简介

亚马逊购物用于根据用户偏好推荐商品,支持预算、用途与功能筛选。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的个性化导购与比价场景。
  • 必须先行收集预算范围与使用场景,再执行浏览器自动化搜索与推荐。
  • 安装前需配置浏览器驱动与代理设置,确保能稳定访问 Amazon 站点。
  • 注意遵守 robots.txt 规则,避免高频请求触发验证码或 IP 封禁。

SKILL.md

Amazon Shopping

Search Amazon and recommend products based on user preferences.


MANDATORY FIRST STEP - REQUIREMENTS GATHERING

YOU MUST ASK CLARIFYING QUESTIONS BEFORE ANY BROWSER AUTOMATION.

DO NOT proceed to search until you understand:

  • Budget: Price range they're comfortable with
  • Usage: Who/what it's for (personal, gift, professional)
  • Deal-breakers: Features they must have or avoid

Use AskUserQuestion to gather this information. Only after receiving answers should you proceed to Step 2.

Example questions for any product:

  • Budget range (under $25, $25-50, $50-100, $100+)
  • Primary use case (personal, gift, professional)
  • Key preferences (brand, features, quality vs value)

Quick Start (After Requirements Gathered)

  1. Gather requirements: Ask about budget, usage, deal-breakers → DONE in mandatory step above
  2. Search Amazon: Navigate to search results and capture snapshot
  3. Extract data: Identify products with ASINs, prices, ratings, review counts
  4. Verify: Visit product pages to confirm accuracy
  5. Present recommendations: Ranked by user's criteria

Prerequisites

  • Chrome DevTools MCP server connected
  • Internet access to Amazon.com

Search Workflow

Step 1: Navigate to Amazon Search Results

Go directly to the search URL (simplest approach):

navigate_page type="url" url="https://www.amazon.com/s?k=<encoded search query>"

Alternative - Interactive search (if direct URL doesn't work):

  1. Navigate to https://www.amazon.com
  2. take_snapshot to find the search box UID
  3. fill the search box with your query
  4. click the search button or press_key with key="Enter"

Step 2: Capture Results

take_snapshot

The snapshot returns the full accessibility tree with UIDs for every element. Each element includes its role, name, and URL where applicable.

Step 3: Extract Products WITH Their ASINs

CRITICAL: Extract product names AND their ASINs from THE SAME container element to prevent mismatches.

In the accessibility tree, each product is typically a listitem containing:

  • A heading with the product name
  • A link with the ASIN in the URL (e.g., /dp/B0XXXXXXXXX)

Read the snapshot and pair each heading with the link in the same container. Use the UID hierarchy and indentation to identify which elements belong to the same product.

WRONG - Causes ASIN/Product Mismatches:

  • Extracting all ASINs separately and pairing them with product names
  • Amazon pages contain ASINs for ads, sponsored products, and footer links that will mix with real results

Step 4: MANDATORY Product Page Verification

For EVERY product before presenting it to the user, you MUST verify by visiting its actual product page.

For each product:

  1. navigate_page to https://www.amazon.com/dp/<ASIN>
  2. take_snapshot to read the page content
  3. Verify:

- Title matches the product you're recommending - Price is current from the product page (for example Buy new: $XX.XX, One-time purchase: $XX.XX, or the main price block) - Rating and review count are present

MANDATORY VERIFICATION RULES:

  • If ASIN redirects to different product → DISCARD
  • If page title doesn't match expected product → DISCARD
  • If price cannot be found → DISCARD
  • Only present VERIFIED products with a checkmark

NEVER extract prices from search results pages - they often don't match actual product page prices due to variants, promotions, or different sellers.

See reference/asin-extraction.md for detailed patterns.

Common Issues

IssueSolution
CAPTCHAWait 60s, retry from amazon.com
Rate limitedWait 2-3 min
No resultsBroaden search
Slow page loadUse wait_for with expected visible text, then retake take_snapshot

See reference/common-errors.md for complete troubleshooting.

Output Format

ALL presented products MUST be verified on their actual product pages.

## Amazon Shortlist - [Category]

### 1. [Product] - $XX.XX (verified)
**ASIN**: [ASIN]
**Rating**: X.X/5 (X,XXX reviews)
**Amazon**: https://www.amazon.com/dp/[ASIN]
**Why this**: [Reason]
**Key specs**: [Specs]

Do NOT present unverified products. The verified marker confirms that:

  1. The ASIN link goes to the actual product (not a redirect)
  2. The price is current from the product page
  3. The title matches what was recommended

See reference/output-formats.md for templates.

Ranking Priority

When ratings are similar (within 0.5), prioritize review count.

Example: 4.0 with 10,000 reviews > 5.0 with 100 reviews

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.11%
按下载量换算185

Claude

32.99%
按下载量换算169

Cursor

18.95%
按下载量换算97

Gemini CLI

9.26%
按下载量换算47

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills