◆ Back to Dashboard
AESOP AI Academy · Child Safety & Compliance

Safety Review Scheduler

Automated, scheduled COPPA & child safety reviews using Claude. Run on-demand or set a recurring cadence.
System Status
Last Review
Never
No reviews run yet
Next Scheduled
No schedule active
Compliance Trend
Run a review to start tracking
Review Schedule

Configure Automated Safety Reviews

How this works When a scheduled review runs, Claude evaluates the AESOP AI Academy curriculum and platform against the COPPA Safety Rubric — scoring all five dimensions. Results are saved to your compliance history automatically. Reviews run in-browser when this page is open, or can be triggered manually at any time.
How often to automatically run a safety review
What portion of the platform to review
How thorough each automated review should be
Which regulatory standards to evaluate against
Run Review Now

On-Demand Safety Review

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.

Alert Settings

Compliance Alerts

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.

Compliance History

No automated reviews run yet. Use the runner above or wait for a scheduled review to populate your compliance timeline.

Server-Side Scheduling Reference

cPanel Cron Job Setup

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.