laravel:task-scheduling

Installation
SKILL.md

Task Scheduling

Run scheduled tasks predictably across environments.

Commands

// app/Console/Kernel.php
protected function schedule(Schedule $schedule): void
{
    $schedule->command('reports:daily')
        ->dailyAt('01:00')
        ->withoutOverlapping()
        ->onOneServer()
        ->runInBackground()
        ->evenInMaintenanceMode();
}
Installs
81
GitHub Stars
140
First Seen
Jan 21, 2026
laravel:task-scheduling — jpcaparas/superpowers-laravel