What problem does it solve? Automated agent systems can accidentally run expensive or rate-limited skills too many times per day, wasting tokens and compute. This watchdog audits daily run counts against configured caps and alerts operators the moment a limit is breached. ## Core Features & Use Cases - Daily run counting: Parses memory/token-usage.csv and groups today's rows by skill to count executions. - Configurable caps: Reads per-skill daily_max limits from memory/skill-caps.json or an aeon.yml skill_caps: block, seeding sensible defaults if neither exists. - Breach notifications: Writes a formatted alert to a temp file and dispatches it via ./notify -f, then appends a status entry to the daily log. - Use Case: An operator caps an expensive deployment skill at 1 run per day; when a misconfigured schedule fires it twice, the guard detects the breach and sends an immediate notification. ## Quick Start Check whether any capped skills exceeded their daily run limit today and notify me if there are breaches.