بنقرة واحدة
track-product
Track an Amazon or Walmart product URL and alert when price drops below a threshold
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Track an Amazon or Walmart product URL and alert when price drops below a threshold
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Find the cheapest price for any product using Nimble agents. Use when the user asks "find best price for X", "how much does X cost?", "where can I buy X cheapest?", or any open-ended price discovery question without a specific URL.
Take a brand new Senso org from empty to fully populated self-improving knowledge system in 10 minutes. Researches the user's company from their website plus external sources, builds out the knowledge base with brand kit, content types, and tracking prompts, generates the first drafts, publishes sample citeables, kicks off GEO monitoring, and files a self-heal report with gap analysis. The first-run experience for any new Senso user. Use when the user runs Senso for the first time or says "set up Senso", "run onboarding", or "populate my knowledge base".
Check the current price of an Amazon or Walmart product URL right now
Polling skill — check all tracked products for price drops and fire alerts with Senso.ai reports
Show the price history for a user's tracked products from ClickHouse
| name | track-product |
| description | Track an Amazon or Walmart product URL and alert when price drops below a threshold |
| version | 1.0.0 |
| metadata | {"hermes":{"tags":["price","shopping","ecommerce","monitoring"],"category":"productivity","requires_toolsets":["terminal"]}} |
| required_environment_variables | [{"name":"PRICEPILOT_DIR","prompt":"Path to the pricepilot project directory","required_for":"running price tools"},{"name":"NIMBLE_API_KEY","prompt":"Your Nimble API key","required_for":"price scraping"},{"name":"CLICKHOUSE_HOST","prompt":"ClickHouse Cloud host","required_for":"price history storage"}] |
Invoke when a user shares an Amazon or Walmart product URL and wants price monitoring.
Trigger phrases: "track", "monitor", "watch", "alert me when under", "notify me when cheaper than"
Examples:
Extract URL and threshold from the user's message.
https://amazon.com or https://walmart.com product linkCheck current price via terminal:
cd $PRICEPILOT_DIR && python tools/check_price.py "<url>"
Returns JSON: {"title": "...", "price": 99.99, "source": "amazon", "currency": "USD"}
Compute effective threshold: use user's value if given, else round(price * 0.9, 2)
Store price event in ClickHouse:
cd $PRICEPILOT_DIR && python tools/store_price.py "<user_id>" "<product_id>" "<title>" "<url>" "<source>" <price>
Register product for tracking:
cd $PRICEPILOT_DIR && python tools/add_tracked.py "<user_id>" "<product_id>" "<title>" "<url>" <threshold>
Reply to user:
"✅ Tracking [product name] — currently $[current_price]. I'll alert you when it drops below $[threshold]."
check_price.py returns {"error": ...}, tell the user the URL couldn't be scraped and ask them to verify it/dp/XXXXXXXXXX — use that as product_idAfter tracking, confirm by running:
cd $PRICEPILOT_DIR && python tools/get_tracked.py "<user_id>"
Show the user their full tracking list.