39 lines
2.1 KiB
Markdown
39 lines
2.1 KiB
Markdown
---
|
|
name: amazon-shopping
|
|
description: Search amazon.com shopping results with product filters using the local web-automation skill. Use when the user asks to find, compare, filter, or summarize Amazon products by description, price, delivery, specs, review count, star rating, or star distribution.
|
|
---
|
|
|
|
# Amazon Shopping
|
|
|
|
Use this skill for read-only Amazon product discovery and comparison.
|
|
|
|
## First Checks
|
|
|
|
Verify the browser dependency before live use:
|
|
|
|
```bash
|
|
openclaw skills info web-automation
|
|
node "$HOME/.openclaw/workspace/skills/web-automation/scripts/check-install.js"
|
|
```
|
|
|
|
## Search Products
|
|
|
|
Run the helper from the installed skill directory:
|
|
|
|
```bash
|
|
"$HOME/.openclaw/workspace/skills/amazon-shopping/scripts/search-products" '<user request>' --json
|
|
```
|
|
|
|
Use single quotes around product requests that contain dollar amounts so the shell does not expand `$4` or similar text. Use `--limit N`; `--max N` is accepted as a compatibility alias. If your execution tool supports a timeout option, set it to at least 600 seconds for live runs with detail enrichment. Use `--skip-details` only for a quick preview or when the user does not need specifications and delivery details.
|
|
|
|
Default to at most 15 products unless the user asks for a different count. For requested counts above 30, ask before continuing or split the request into batches. Always include source URLs, report missing fields explicitly, and do not claim review histogram data unless it was visible and extracted.
|
|
|
|
## Guardrails
|
|
|
|
This skill is for operator-directed, read-only product research. Before live scraping, the helper checks Amazon robots directives for planned paths. Do not automate sign-in, cart, purchase, wishlist, review submission, review-page crawling, CAPTCHA bypass, or blocked-page bypass. If Amazon returns a challenge or block page, stop and report that status.
|
|
|
|
Read references when needed:
|
|
- `references/amazon-data-map.md` for fields and selectors.
|
|
- `references/web-automation-prompts.md` for browser extraction prompts.
|
|
- `references/compliance-and-failure-modes.md` for blocked-page and unknown-field behavior.
|