Run a complete safety review immediately using Claude as the primary reviewer. Scores all five dimensions against the COPPA Safety Rubric and saves results to history.
Alerts appear as on-page notifications when this page is open. For email alerts, configure a cron job or server-side scheduler to ping this page at your scheduled cadence.
No automated reviews run yet. Use the runner above or wait for a scheduled review to populate your compliance timeline.
For automated reviews that run even when this page isn't open, set up a cron job in your Mocahost cPanel. The cron can ping a lightweight trigger endpoint or use a wget/curl approach to log the check.
# Monthly safety review trigger (1st of each month at 8am)
0 8 1 * * curl -s "https://aesopacademy.org/review/safety-trigger.php" >> /dev/null 2>&1
# Weekly (every Monday 8am)
0 8 * * 1 curl -s "https://aesopacademy.org/review/safety-trigger.php" >> /dev/null 2>&1
# Quarterly (1st of Jan, Apr, Jul, Oct at 8am)
0 8 1 1,4,7,10 * curl -s "https://aesopacademy.org/review/safety-trigger.php" >> /dev/null 2>&1
Note: safety-trigger.php would call the Claude API proxy and log results. Ask Claude to build this PHP trigger file when you're ready to fully automate server-side.