GPT-5 finding
smithery-manifest schedule uses day-of-month stepping (1/7) causing non-weekly runs; comment says weekly
mediumbughigh
- aeon.yml:146
The cron expression 0 6 1/7 * * triggers on days 1,8,15,22,29 of each month. This is not truly weekly and introduces drift at month boundaries (e.g., a 1-day gap from the 31st to the 1st, or varying gaps across months). The inline comment states this should be weekly, which is contradicted by the schedule.
Recommendation
If truly weekly, use a day-of-week schedule such as Sunday at 06:00 UTC: schedule: "0 6 * * 0". If you want every 7 days regardless of month boundaries, implement scheduler support for fixed intervals or move to a weekly DOW-based cron.