evenrealities-tracker
✓Verified·Scanned 2/18/2026
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.
from clawhub.ai·vf81f96c·20.0 KB·0 installs
Scanned from 1.0.1 at f81f96c · Transparency log ↗
$ vett add clawhub.ai/thibautrey/evenrealities-tracker
Evenrealities Order Tracker - Skill Package
Automated tracking of Evenrealities orders with status history and change notifications.
Files
SKILL.md- Complete skill documentationscripts/tracker.py- Main tracking scriptreferences/evenrealities-orders-example.json- Configuration template
Quick Setup
-
Copy configuration template:
cp references/evenrealities-orders-example.json ../memory/evenrealities-orders.json -
Edit with your orders:
{ "orders": [ {"email": "you@example.com", "order_id": "ORD-123456"} ] } -
Set up daily cron (9 AM):
clawdbot cron add \ --name "Evenrealities order check" \ --schedule "0 9 * * *" \ --task "python3 /Users/thibautrey/clawd/skills/evenrealities-tracker/scripts/tracker.py --check" -
Done! You'll get notified only when order statuses change.
How It Works
- ✅ Checks orders daily at 9 AM
- ✅ Stores status history
- ✅ Notifies only on changes
- ✅ Uses browser automation (fast-browser-use skill)
- ✅ Fully automated
Usage
Check now:
python3 scripts/tracker.py --check
Show configuration:
python3 scripts/tracker.py --config
Show history:
python3 scripts/tracker.py --history
Files Generated
memory/evenrealities-orders.json- Your order listmemory/evenrealities-status-history.json- Status history (auto-generated)
Next Steps
- Add your orders to
memory/evenrealities-orders.json - Create the cron job (see SKILL.md)
- First run: Baseline established (no notification)
- Subsequent runs: Notified only if status changes
See SKILL.md for complete documentation.