Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

price-compare价格比较

Agent Skill

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

总安装

6,439

周安装

271

GitHub Stars

公开资料未说明

下载量

2,255
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:price-compare(价格比较)
来源仓库:https://github.com/lucasye378/price-compare
安装命令:
openclaw skills install price-compare
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install price-compare

简介

比较美国主要电商平台的产品价格,寻找最优购买渠道。

  • 响应“X 的最佳价格是多少”等查询,自动对比多个站点。
  • 帮助用户快速定位性价比最高的商品来源。price-compare 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install price-compare。
  • 依赖网络连接以抓取外部电商数据,请核实相关权限。

SKILL.md

name
price-compare
description
Compare product prices across major US e-commerce platforms. Triggers when the user asks "what's the best price for X", "compare prices", "where to buy [product] cheapest", "price check", "is [product] cheaper on Amazon or Walmart", or any variation asking for price comparison or shopping recommendations. Targets US shoppers and searches Amazon, Walmart, Target, Best Buy, eBay, Temu, Google Shopping, Costco, and Kroger.
metadata
{"openclaw": {"emoji": "🏷️", "homepage": "https://clawhub.ai/skills/price-compare"}}

Price Compare

Compare prices for any product across major US retailers, with pros/cons, trust scores, and buy recommendations.

Pattern: Inversion + Pipeline + Reviewer This skill uses structured questions before searching (Inversion), a multi-step workflow with gates (Pipeline), and a price trust scoring system (Reviewer). Follow the phases in order — do not skip ahead.

Phase 1 — Pre-Search: Gather Requirements (Inversion)

DO NOT start searching until you have answered the questions below.

Required (ask if not clear from the prompt)

  • Product: What exactly do they want? (brand, model, size/quantity if relevant)
  • Budget: Is there a max price? (filters results before showing)
  • Context: Indoor or outdoor use? New or refurbished acceptable? (avoids irrelevant results)

Ask only if relevant

  • Timeline: Need it today/this week, or can wait 2-3 weeks?
  • Used/refurb OK?: If asking about electronics, clarify new vs. refurbished preference
  • Specific retailers?: Any retailer they want to avoid or prefer?

If the user gives enough context (e.g., "best price for Sony WH-1000XM5 under $300"), skip redundant questions and move to Phase 2.


Phase 2 — Execute Search (Pipeline)

Step 1 — Search All Platforms in Parallel

Try web_search first. Run all calls simultaneously:

web_search(query="site:amazon.com {product}", count=5)
web_search(query="site:walmart.com {product}", count=5)
web_search(query="site:target.com {product}", count=5)
web_search(query="site:bestbuy.com {product}", count=5)
web_search(query="site:ebay.com {product}", count=5)
web_search(query="site:temu.com {product}", count=5)
web_search(query="site:costco.com {product}", count=5)
web_search(query="{product} price comparison site:google.com/shopping", count=5)

Step 1 Fallback — When web_search fails

If web_search returns errors (403/429/503) or empty results, use the browser instead:

browser(action="navigate", url="https://www.google.com/search?q={product}+price+site:amazon.com+OR+site:walmart.com+OR+site:target.com&num=10", profile="openclaw")
browser(action="snapshot", profile="openclaw")  // extract prices from results

If browser also fails, fall back to a single web_fetch on Google Shopping:

web_fetch(url="https://www.google.com/shopping?q={product}&hl=en", maxChars=10000)

Step 2 — Fetch Top Results (with Browser Fallback)

For each platform that returned results, attempt web_fetch:

URL patterns:

  • Amazon: https://www.amazon.com/s?k={product}&s=price-asc-rank
  • Walmart: https://www.walmart.com/search?q={product}
  • Target: https://www.target.com/s?searchTerm={product}
  • Best Buy: https://www.bestbuy.com/site/searchpage.phtml?st={product}
  • eBay: https://www.ebay.com/sch/i.html?_nkw={product}&_sop=15
  • Temu: https://www.temu.com/search_result.html?search_key={product}
  • Costco: https://www.costco.com/search?search={product}
  • Google Shopping: https://www.google.com/shopping?q={product}&hl=en

Browser fallback for JS-rendered pages: If web_fetch returns a bot-check page or empty content for Amazon/Walmart/Target/Temu:

browser(action="navigate", url="<platform URL>", profile="openclaw")
browser(action="act", kind="evaluate", fn="() => { const items = document.querySelectorAll('[data-component-type=\"s-search-result\"]'); return Array.from(items).slice(0,5).map(i => ({ title: i.innerText.substring(0,100), price: i.querySelector('.a-price .a-offscreen, [class*=\"price\"]')?.innerText || 'N/A' })).slice(0,5); }")

Step 3 — Load References

Always load these reference files:

read(path="{skill_dir}/references/platforms.md")
read(path="{skill_dir}/references/trust-checklist.md")

Phase 3 — Price Trust Scoring (Reviewer)

Apply the trust score from trust-checklist.md to every price result. Flag suspicious prices before presenting.

Trust Score Criteria (Reviewer Pattern)

For each platform result, score:

SignalScoreMeaning
Official store / first-party seller✅ +2Authentic, full warranty
4.5+ stars, 500+ reviews✅ +1Popular, likely real
Price history shown (Google Shopping)✅ +1Can verify if it's a good deal
"was $X, now $Y" with X > 30% above market⚠️ -2Fake discount — X was never real
No reviews / <10 reviews⚠️ -1Hard to verify quality
Temu unbranded generic⚠️ -1Quality not assured
Used/refurbishedℹ️ ±0Normal risk, acceptable if disclosed
eBay seller <95% rating⚠️ -2High return/defect risk
"Only 2 left!" / countdown timers🚩 -1Dark pattern, ignore
Price < 30% of average market🚩 -3Almost certainly fake/knockoff

Trust Score Totals

  • +3 to +5: 🟢 Reliable — show prominently
  • +1 to +2: 🟡 Acceptable — show with note
  • 0 to -1: 🟠 Caution — show only if user OK with risk
  • -2 or below: 🔴 Suspicious — skip or warn explicitly

Phase 4 — Price Anomaly Gate (Pipeline)

Before presenting results, check for anomalies:

Gate: If any result is >50% below market average → Flag as "⚠️ Suspicious cheap — likely fake/counterfeit. Verify before buying."

Gate: If Temu price is <30% of branded alternatives → Add warning: "Temu's low price suggests unbranded/knockoff quality. Compare photos with official listing."

Gate: If price has moved >20% in 30 days (from Google Shopping) → Note: "↗ Price up X% in 30 days — not the best time" OR "↓ Price down X% — good time to buy"

Gate: If web_search AND browser both failed for a platform → Do NOT fabricate prices. Mark that platform as "❌ Data unavailable — results may be incomplete."


Phase 5 — Output (Generator)

Use this structure every time:

📦 [Product Name]

Quick summary: [1 sentence: best pick + price range]

Trust-scored comparison:

PlatformPriceShipRatingTrustVerdict
............🟢/🟡/🟠/🔴...

Recommended:

🥇 Best overall: [Platform] — $XX — [1 sentence why] 🥈 Runner-up: [Platform] — $XX — [1 sentence why] ♻️ Best used/refurb: [Platform] — $XX — [1 sentence why] 💸 Budget pick: [Platform] — $XX — [1 sentence why]

⚠️ Warnings & gotchas:

  • [Any trust score issues, fake discounts, shipping gotchas]

📈 Price trend:

  • [From Google Shopping: "↓ Good time — down 20% from 90-day average" OR "↗ Rising — up 15% in 30 days"]

🔗 Direct links:


Output Examples

Example — Basketball

### 📦 Wilson NBA Official Game Ball (Size 7)

**Quick summary:** Best authentic option is DICK'S at $219.99 (11% off); cheapest decent ball is Walmart's Wilson Prestige at $15.94 for outdoor use.

| Platform | Price | Ship | Rating | Trust | Verdict |
|---------|-------|------|--------|-------|---------|
| DICK'S | $219.99 | Free | ⭐ 4.7 (129) | 🟢 | 🔥 Best Price + ⭐ Best Value — 11% off, 90-day returns |
| Wilson.com | $219.95 | Free ($50+) | ⭐ 4.5 (64) | 🟢 | ⚡ Fastest — direct from manufacturer |
| Scheels | $219.95 | — | — | 🟡 | Same price, reliable retailer |
| NBA Store | $249.99 | Free ($50+) | ⭐ 4.6 | 🟢 | ❌ Overpriced — avoid |
| eBay | $190.00 | +$7.95 | varies | 🟠 | ♻️ Bulk deal — verify seller rating 98%+ first |

**⚠️ Warnings & gotchas:**
- The official Wilson game ball is **genuine leather — for indoor use only**. New it is slippery; needs 2-3 weeks of break-in.
- eBay at $190 is suspicious for new — verify authenticity before buying.
- Temu had no relevant results (mostly unbranded generic balls under $10 — 🔴 low quality risk).

**📈 Price trend:** → Stable — typically $220, within normal range for 90 days.

**Recommended:**
🥇 **Best overall:** DICK'S Sporting Goods — $219.99 — matches all-time low, free shipping, 90-day returns.
🥈 **Runner-up:** Wilson.com — $219.95 — direct from maker, 30-day returns.
💸 **Budget outdoor:** Walmart — Wilson Prestige Outdoor — $15.94, pickup today.

Quick Rules

  • Trust score every result before showing it. Never present a 🔴 price without a warning.
  • Always show total cost (price + shipping). A "cheaper" item with $20 shipping may cost more.
  • Parallelize all searches — never run them sequentially unless using fallback.
  • Flag fake discounts. "Was $X" where X was never actually sold = -2 trust score.
  • No fabricated prices. If a platform's data is unavailable, say so.
  • Direct links in every response. Users need to be able to click and buy.
  • Platforms: Amazon, Walmart, Target, Best Buy, eBay, Temu, Costco, Google Shopping. Add Kroger for groceries.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

94.13%
按下载量换算2,123

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills