A community based topic aggregation platform built on atproto

chore(aggregators): increase kagi-news frequency to every 2 hours

Kagi updates their RSS feeds throughout the day, not just at noon.
Running every 2 hours ensures we catch new articles promptly instead
of waiting up to 24 hours.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+2 -2
+2 -2
aggregators/kagi-news/crontab
··· 1 - # Run Kagi News aggregator daily at 1 PM UTC (after Kagi updates around noon) 1 + # Run Kagi News aggregator every 2 hours to catch feed updates throughout the day 2 2 # Source environment variables exported by docker-entrypoint.sh 3 - 0 13 * * * . /etc/environment; cd /app && /usr/local/bin/python -m src.main >> /var/log/cron.log 2>&1 3 + 0 */2 * * * . /etc/environment; cd /app && /usr/local/bin/python -m src.main >> /var/log/cron.log 2>&1 4 4 5 5 # Blank line required at end of crontab 6 6