← Back to Skills Marketplace
thibautrey

Evenrealities Tracker

by thibautrey · GitHub ↗ · v1.2.0
cross-platform ✓ Security Clean
1295
Downloads
0
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install evenrealities-tracker
Description
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`.
README (SKILL.md)

Evenrealities Order Tracker

Summary

  • Automatic monitoring: checks each saved order every morning at 9 AM using memory/evenrealities-orders.json.
  • Signal-only alerts: Telegram notifications are sent only when an order's status changed since the last run.
  • Persistent history: every order keeps the last known status plus timestamp so you can spot regressions.
  • Scriptable CLI: python3 scripts/tracker.py [--check|--config|--history] lets you run the tracker or inspect config/history on demand.
  • Multi-shipment support: Orders can have multiple shipments (e.g., smart rings with optional sizing kits).

The script quietly polls https://track.evenrealities.com, recomputes each order's status, and only speaks up when there's a meaningful change.

Prerequisites & Installation

System requirements:

  • Python 3.7+
  • ~300-500MB disk space (for Playwright browser binaries)
  • Internet access (to reach track.evenrealities.com)

Install dependencies:

# Install Python packages
pip install -r skills/evenrealities-tracker/requirements.txt

# Install Playwright browsers (one-time, required for browser automation)
playwright install

Security notes:

  • Playwright will download chromium binaries (~300-500MB)
  • Review Playwright's installation docs: https://playwright.dev/python/docs/intro
  • No credentials are embedded in the script — it only accesses public tracking pages
  • Telegram notifications are handled by OpenClaw cron delivery mechanism (not in script)
  • All sensitive files (history, config) are stored locally in memory/ directory

Understanding Evenrealities Smart Ring Orders

Evenrealities manufactures smart rings in different sizes. When ordering, customers can optionally request a sizing kit — a collection of all sizes to try on and find the correct fit.

Order Workflow

  1. Order 1: Sizing Kit (Optional)

    • Customer receives ring in all available sizes
    • Status tracked separately from main order
    • Typically ships first
  2. Order 2: Final Ring (After Sizing)

    • Once customer determines correct size, they return to Evenrealities
    • Specify the correct size on the order tracking page
    • Final ring ships separately with the customer's size
    • Typically ships after sizing kit is returned/processed

How This Affects Tracking

  • Single Shipment Orders: Only one status to track (no sizing kit requested)

    • Example: Direct purchase of known size → Single "SHIPPED" status
  • Multi-Shipment Orders: Two separate shipments with independent statuses

    • Sizing kit shipment: PROCESSINGSHIPPED
    • Final ring shipment: PENDING (waiting for size confirmation) → PROCESSINGSHIPPED

Important Note

The tracker will show the combined order status — if the order has been split into multiple shipments:

  • First shipment status (sizing kit or direct ring)
  • You may see: "SHIPPED (sizing kit received, waiting for final ring)"

Monitor both statuses for complete visibility of your order fulfillment.

Quick Start

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": "[email protected]",
      "order_id": "ORD-123456"
    },
    {
      "email": "[email protected]",
      "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.

How It Works

Daily Flow (9 AM):

  1. Script loads your orders from memory/evenrealities-orders.json
  2. For each order, uses browser automation to:
  3. Compares status against history
  4. If changed: Sends Telegram notification
  5. If unchanged: Silent (no notification)
  6. Updates memory/evenrealities-status-history.json

Commands

Check All Orders Now

python3 scripts/tracker.py --check

Output example:

🔍 Checking 2 order(s)...
============================================================

📦 Checking: [email protected] / Order #ORD-123456
   Status: SHIPPED
   (No change)

📦 Checking: [email protected] / Order #ORD-789012
   Status: PROCESSING
   ✨ CHANGED: PENDING → PROCESSING

✨ 1 change(s) detected!
   📦 ORD-789012: PENDING → PROCESSING

Show Configuration

python3 scripts/tracker.py --config

Show Status History

python3 scripts/tracker.py --history

Configuration Files

evenrealities-orders.json

Location: memory/evenrealities-orders.json

{
  "orders": [
    {
      "email": "[email protected]",
      "order_id": "ORD-123456"
    }
  ]
}

Fields:

  • email: Email used for tracking
  • order_id: Order number (format: ORD-XXXXXX or similar)

Add as many orders as needed.

evenrealities-status-history.json

Location: memory/evenrealities-status-history.json (auto-generated)

{
  "[email protected]:ORD-123456": {
    "email": "[email protected]",
    "order_id": "ORD-123456",
    "status": "SHIPPED",
    "last_checked": "2026-02-02T09:00:00.000Z"
  }
}

Updated automatically on each run.

Notifications

When You Get Notified

Status CHANGED → Telegram message sent

Example notification:

📦 Order Update!

Order: ORD-789012
Email: [email protected]
Previous: PENDING
New: PROCESSING
Time: 2026-02-02 09:00 AM

When You DON'T Get Notified

✓ Status unchanged ✓ First check (no previous status to compare) ✓ No orders configured

Browser Automation (Playwright)

The skill uses Playwright (direct, not via fast-browser-use) for browser automation:

  1. Navigate to https://track.evenrealities.com
  2. Fill email field (validated before use)
  3. Fill order ID field (validated before use)
  4. Click confirmation button
  5. Wait 1-2 seconds for page response
  6. Extract status text from result
  7. Close browser gracefully

Why Playwright directly?

  • Dedicated, well-tested library for headless browser control
  • No extra skill dependencies needed
  • Direct access to page content and timing control

Security:

  • Email and order ID are validated before being sent to the browser
  • No sensitive credentials passed to browser
  • Browser session is ephemeral (created/destroyed per check)

Workflow

Setup (one-time):

  1. Copy orders example
  2. Edit with your orders
  3. Create cron job

Daily (automatic):

  1. 9 AM: Cron triggers
  2. Script checks all orders
  3. Compares to yesterday's status
  4. If changed: You get notified
  5. History updated

Maintenance:

  • Add/remove orders: Edit memory/evenrealities-orders.json
  • Check manually anytime: python3 scripts/tracker.py --check
  • Review history: python3 scripts/tracker.py --history

Troubleshooting

"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 \x3Cjob-id>
clawdbot cron add \
  --name "Evenrealities order check" \
  --schedule "0 8 * * *" \
  --task "python3 /Users/thibautrey/clawd/skills/evenrealities-tracker/scripts/tracker.py --check"

References

  • Evenrealities tracking: https://track.evenrealities.com
  • Fast Browser Use skill: Browser automation documentation
  • Cron scheduling: Clawdbot cron documentation
Usage Guidance
This package appears to do exactly what it says: scraping the public Evenrealities tracking page and storing a local history, with notifications handled by your platform. Before installing, consider: (1) Playwright will download large browser binaries — ensure you accept that download and disk use; (2) the script writes/reads files in the project-level memory/ directory — review that directory's contents and permissions so sensitive data isn't accidentally exposed or mixed; (3) confirm the platform cron/Telegram notification integration is configured securely (the script itself does not send Telegram messages); (4) if you want added safety, run the first checks locally in a restricted environment (or container) to verify behavior. If you want, I can review the remaining truncated parts of tracker.py or search the repo for any unexpected network calls or hidden endpoints.
Capability Analysis
Type: OpenClaw Skill Name: evenrealities-tracker Version: 1.2.0 The skill is designed for order tracking using Playwright browser automation, targeting a single, public website (track.evenrealities.com). The `scripts/tracker.py` includes robust input validation for email and order IDs, preventing injection into the browser context. All configuration and history files are stored securely within the designated `memory/` directory. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts against the AI agent in the documentation. The use of Playwright is constrained and appears to be for its intended purpose without introducing significant vulnerabilities or malicious intent.
Capability Assessment
Purpose & Capability
Name/description match the included script and docs: the package automates checks of track.evenrealities.com, compares statuses, and writes a local history. Required dependencies (playwright) are appropriate for browser automation; no unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md and the script are narrowly scoped: they load orders from memory/evenrealities-orders.json, visit the public tracking site, extract status, update memory/evenrealities-status-history.json, and rely on the platform's cron/Telegram delivery for notifications. The script does not access environment variables, other user files, or external endpoints beyond the declared tracking site.
Install Mechanism
There is no automated install spec in the package; installation is via pip (requirements.txt) and running 'playwright install', which downloads Chromium (~300–500MB). This is expected for Playwright-based tools but is a large binary download — verify you are comfortable with that before installing.
Credentials
The skill requires no environment variables or credentials. Telegram notifications are stated to be handled by the platform's cron delivery mechanism (outside this script); confirm that notification wiring on your platform is configured securely before enabling notifications.
Persistence & Privilege
The script writes persistent state to the top-level memory/ directory (memory/evenrealities-status-history.json). This is expected behavior for a tracker, but be aware that memory/ is a shared location in the agent environment — inspect its contents and permissions to ensure no sensitive data from other tools could be mixed or exposed. always:false (normal).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install evenrealities-tracker
  3. After installation, invoke the skill by name or use /evenrealities-tracker
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.2.0
Security & clarity improvements: Added email/order ID validation (regex patterns), documented Playwright as direct dependency (not fast-browser-use), clarified no credentials needed, documented requirements.txt + install steps, added comprehensive security notes.
v1.1.0
Added multi-shipment support for smart ring orders (sizing kit + final ring). Updated documentation with Evenrealities order workflow.
v1.0.1
Added polished English summary for Clawdhub listing
v1.0.0
Initial Evenrealities tracker release
Metadata
Slug evenrealities-tracker
Version 1.2.0
License
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is Evenrealities Tracker?

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`. It is an AI Agent Skill for Claude Code / OpenClaw, with 1295 downloads so far.

How do I install Evenrealities Tracker?

Run "/install evenrealities-tracker" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Evenrealities Tracker free?

Yes, Evenrealities Tracker is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Evenrealities Tracker support?

Evenrealities Tracker is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Evenrealities Tracker?

It is built and maintained by thibautrey (@thibautrey); the current version is v1.2.0.

💬 Comments