Install
openclaw skills install @cdmichaelb/vitamin-tracker-channelManage vitamin/supplement reminders across configurable daily time slots via cron jobs. Use when adjusting supplement schedules, adding/removing supplements, or handling vitamin-related channel interactions. Triggers on "vitamin", "supplement", "vitamin reminder", "vitamin schedule".
openclaw skills install @cdmichaelb/vitamin-tracker-channelManage supplement reminders across configurable daily time slots using OpenClaw cron jobs.
Set the following environment variables:
VITAMIN_CHANNEL_ID — the channel to post reminders inVITAMIN_TIMEZONE — IANA timezone for scheduling (e.g. America/New_York, Europe/Berlin)WORKSPACE — root workspace directory (defaults to ~/.openclaw/workspace)Supplement names and schedules are configured in VITAMINS.md in the workspace root. Edit the schedule section to match your regimen.
VITAMINS.md should have a ## Schedule section with time labels and HH:MM times, followed by ### Label subsections listing supplements:
## Schedule
- Breakfast: 09:00
- Lunch: 13:00
- Dinner: 18:00
### Breakfast
- Multivitamin
- Vitamin C
- Vitamin D₃
### Lunch
- Fiber (keep 2h away from minerals)
### Dinner
- Magnesium
After editing VITAMINS.md, run the update script to sync all cron jobs:
python3 scripts/update_vitamin_crons.py
This reads VITAMINS.md, removes existing vitamin cron jobs, and recreates them with the updated schedule.
## Schedule section for times### Label section for supplement listsJobs are named vitamins-{label}-reminder (e.g. vitamins-breakfast-reminder, vitamins-lunch-reminder).
python3 — the update script is Pythonopenclaw CLI — the script calls openclaw cron to manage jobsThis skill:
$WORKSPACE/VITAMINS.md — your supplement schedule (user-created)openclaw cron CLI — removes existing vitamin jobs, then recreates themNote: The update script removes all existing vitamins-*-reminder cron jobs before recreating them. Back up existing jobs if needed.
scripts/update_vitamin_crons.py — cron job sync script (included in bundle)$WORKSPACE/VITAMINS.md — supplement schedule (user-created, not included)