🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Evenrealities Tracker

by @thibautrey

Automate Evenrealities order monitoring (daily checks, status history, change-only alerts). Uses fast-browser-use to fill the tracker form, compare statuses, and notify Telegram only when something changes, while logging everything into `memory/evenrealities-status-history.json`.

Versionv1.2.0
πŸ’‘ Examples

1. Set Up Orders Configuration

Copy the example file and add your orders:

cp skills/evenrealities-tracker/references/evenrealities-orders-example.json \
   memory/evenrealities-orders.json

Edit memory/evenrealities-orders.json:

{
  "orders": [
    {
      "email": "your-email@example.com",
      "order_id": "ORD-123456"
    },
    {
      "email": "another-email@example.com",
      "order_id": "ORD-789012"
    }
  ]
}

2. Create Daily Cron Job

clawdbot cron add \
  --name "Evenrealities order check" \
  --schedule "0 9 * * *" \
  --task "python3 /Users/thibautrey/clawd/skills/evenrealities-tracker/scripts/tracker.py --check"

That's it! The cron will run every morning at 9 AM.

πŸ“‹ Tips & Best Practices

"No orders configured"

Create/edit memory/evenrealities-orders.json with at least one order.

"Failed to fetch status"

  • Check that https://track.evenrealities.com is accessible
  • Verify email and order ID are correct
  • Browser automation might need adjustment if site layout changed
  • "No notifications" (but orders exist)

  • First run: Always silent (establishes baseline)
  • Subsequent runs: Only notified if status changes
  • Check history with --history to see stored statuses
  • Change Cron Time

    Edit the cron schedule. Example for 8 AM instead of 9 AM:

    clawdbot cron remove 
    clawdbot cron add \
      --name "Evenrealities order check" \
      --schedule "0 8 * * *" \
      --task "python3 /Users/thibautrey/clawd/skills/evenrealities-tracker/scripts/tracker.py --check"
    

    View on ClawHub
    TERMINAL
    clawhub install evenrealities-tracker

    πŸ§ͺ Use this skill with your agent

    Most visitors already have an agent. Pick your environment, install or copy the workflow, then run the smoke-test prompt above.

    πŸ” Can't find the right skill?

    Search 60,000+ AI agent skills β€” free, no login needed.

    Search Skills β†’