Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

price-tracker价格追踪器

Agent Skill

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

总安装

115,116

周安装

4,749

GitHub Stars

6

下载量

37,612
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install price-tracker

简介

监控亚马逊、eBay、沃尔玛和百思买的产品价格,以确定套利机会和利润率。在查找要翻转的产品、监控竞争对手的定价、跟踪价格历史记录、识别套利机会或设置自动价格警报时使用。

SKILL.md

name
price-tracker
description
Monitor product prices across Amazon, eBay, Walmart, and Best Buy to identify arbitrage opportunities and profit margins. Use when finding products to flip, monitoring competitor pricing, tracking price history, identifying arbitrage opportunities, or setting automated price alerts.

Price Tracker

Overview

Track product prices across multiple e-commerce platforms to identify arbitrage opportunities, profit margins, and optimal buying/selling windows. This skill enables automated price monitoring, historical tracking, and revenue-focused decision making.

Core Capabilities

1. Product Discovery & Monitoring

Search and Track Products:

  • Search products by keyword across Amazon, eBay, Walmart, Best Buy
  • Add products to monitoring lists
  • Set target price thresholds
  • Configure alert frequency (hourly, daily, weekly)

Example Request: "Monitor iPhone 15 Pro prices across Amazon and eBay. Alert me if the price drops below $800 or if eBay listing is $150+ cheaper than Amazon."

2. Arbitrage Analysis

Cross-Platform Comparison:

  • Compare identical product prices across platforms
  • Calculate profit margins after fees and shipping
  • Identify flip-worthy opportunities (20%+ margin after costs)
  • Factor in platform fees, shipping costs, and taxes

Fee Structure Reference:

  • Amazon: ~15% referral fee
  • eBay: ~13% final value fee + listing fees
  • Walmart: ~8-15% referral fee

Example Request: "Find Nintendo Switch bundles where eBay price is 20%+ higher than Amazon, accounting for all fees and shipping costs."

3. Historical Price Tracking

Price History:

  • Track price changes over time (30, 60, 90 days)
  • Identify seasonal pricing patterns
  • Detect price manipulation or flash sales
  • Export historical data for analysis

Example Request: "Show me the price history for AirPods Pro 2 over the last 60 days. Identify the best buying window."

4. Automated Alerts

Alert Configuration:

  • Price drop alerts (below threshold)
  • Arbitrage opportunity alerts (margin threshold)
  • Competitor price alerts (when competitor lowers price)
  • Bulk product monitoring

Example Request: "Set up alerts for all Sony TV models. Alert me if any model drops below $400 or has 25%+ arbitrage margin."

Quick Start

Track a Single Product

# Use scripts/track_product.py
python3 scripts/track_product.py \
  --product "Apple iPhone 15 Pro 256GB" \
  --platforms amazon,ebay \
  --alert-below 800 \
  --alert-margin 0.20

Bulk Monitor Products from CSV

# Use scripts/bulk_monitor.py
python3 scripts/bulk_monitor.py \
  --csv products.csv \
  --margin-threshold 0.25 \
  --alert-frequency daily

Price Comparison Report

# Use scripts/compare_prices.py
python3 scripts/compare_prices.py \
  --keyword "Sony WH-1000XM5" \
  --platforms amazon,ebay,walmart,bestbuy \
  --report markdown

Workflow

Arbitrage Opportunity Discovery

  1. Search for products in high-demand categories (electronics, gaming, home goods)
  2. Compare prices across all platforms using compare_prices.py
  3. Calculate net profit after fees/shipping/taxes
  4. Filter opportunities with 20%+ margin
  5. Verify product condition and seller reliability
  6. Execute or set monitoring for price drops

Price Drop Monitoring

  1. Identify target products (wishlist, seasonally discounted items)
  2. Set alert thresholds using track_product.py
  3. Monitor historical patterns to predict optimal buy windows
  4. Act when price drops below threshold
  5. Repeat for seasonal shopping events (Prime Day, Black Friday)

Scripts

track_product.py

Track a single product across platforms with configurable alerts.

Parameters:

  • --product: Product name/keyword
  • --platforms: Comma-separated platforms (amazon,ebay,walmart,bestbuy)
  • --alert-below: Alert when price drops below this amount
  • --alert-margin: Alert when arbitrage margin exceeds this fraction (e.g., 0.20 = 20%)
  • --frequency: Check frequency (hourly,daily,weekly)
  • --output: Output format (json,csv,markdown)

Example:

python3 scripts/track_product.py \
  --product "Samsung Galaxy S24 Ultra 256GB" \
  --platforms amazon,ebay,walmart \
  --alert-below 900 \
  --alert-margin 0.25 \
  --frequency daily \
  --output markdown

compare_prices.py

Compare prices for a product across all platforms.

Parameters:

  • --keyword: Product search keyword
  • --platforms: Comma-separated platforms (default: all)
  • --report: Report format (markdown,json,csv)
  • --sort-by: Sort by price, margin, or rating
  • --min-rating: Minimum seller rating

Example:

python3 scripts/compare_prices.py \
  --keyword "PlayStation 5 Slim" \
  --platforms amazon,ebay,walmart,bestbuy \
  --report markdown \
  --sort-by margin \
  --min-rating 4.5

bulk_monitor.py

Monitor multiple products from a CSV file.

CSV Format:

product,platforms,alert_below,alert_margin
"Apple MacBook Air M3 256GB",amazon,ebay,walmart,899,0.20
"Sony PlayStation 5",amazon,ebay,399,0.25
"Dyson V15 Detect",amazon,walmart,bestbuy,500,0.18

Parameters:

  • --csv: Path to CSV file
  • --margin-threshold: Minimum margin to report
  • --alert-frequency: Frequency of alerts
  • --output: Output file for alerts

Example:

python3 scripts/bulk_monitor.py \
  --csv products.csv \
  --margin-threshold 0.20 \
  --alert-frequency daily \
  --output alerts.txt

price_history.py

Retrieve and analyze historical price data.

Parameters:

  • --product: Product name/keyword
  • --days: Number of days of history (default: 30)
  • --platform: Specific platform (optional)
  • --output: Output format (markdown,json,csv)
  • --trend-analysis: Include trend analysis and predictions

Example:

python3 scripts/price_history.py \
  --product "AirPods Pro 2" \
  --days 60 \
  --trend-analysis \
  --output markdown

Best Practices

Arbitrage Profit Calculation

Always calculate net profit:

Net Profit = (Sell Price - Buy Price)
            - Platform Fees
            - Shipping Costs
            - Payment Processing Fees
            - Taxes

Recommended minimum margin: 20-25% to account for:

  • Unexpected shipping delays
  • Returns/refunds
  • Market price fluctuations
  • Time value of money

Risk Mitigation

  1. Verify seller reliability - Check ratings and reviews
  2. Check product condition - New, refurbished, or used
  3. Factor in return windows - Platforms have different policies
  4. Monitor price stability - Volatile prices increase risk
  5. Stay within limits - Don't over-leverage on single opportunities

Seasonal Patterns

  • Q4 (Oct-Dec): Holiday sales, best for electronics
  • January: Post-holiday clearance
  • Prime Day (July): Amazon-specific deals
  • Black Friday/Cyber Monday: Cross-platform discounts
  • Back-to-School (Aug-Sep): Laptops, tablets, accessories

Automation Integration

Set Up Cron Jobs for Automated Monitoring

# Check prices every 6 hours
0 */6 * * * /path/to/price-tracker/scripts/bulk_monitor.py --csv products.csv --output alerts.txt

# Daily arbitrage scan
0 9 * * * /path/to/price-tracker/scripts/compare_prices.py --keyword "high-demand-products" --report markdown >> /path/to/reports.txt

Integration with Notifications

Combine with notification systems (email, Discord, Telegram) to receive real-time alerts when opportunities are detected.

Limitations

  • Platform API rate limits may affect search frequency
  • Real-time prices may have slight delays
  • Some platforms restrict scraping (comply with ToS)
  • Seller inventory changes rapidly

Revenue first. Track smart. Flip fast.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.22%
按下载量换算32,053

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills