π¦ 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`.
π‘ 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"
"No notifications" (but orders exist)
--history to see stored statusesChange 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"
TERMINAL
clawhub install evenrealities-tracker