laravel:task-scheduling

Run scheduled tasks predictably across environments.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "laravel:task-scheduling" with this command: npx skills add jpcaparas/superpowers-laravel/jpcaparas-superpowers-laravel-laravel-task-scheduling

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(); }

Run the scheduler from cron

          • cd /var/www/app && php artisan schedule:run >> /dev/null 2>&1

Patterns

  • Guard long-running commands with withoutOverlapping()

  • Use onOneServer() when running on multiple nodes

  • Emit logs/metrics for visibility; consider notifications on failure

  • Feature-flag risky jobs via config/env

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

laravel:routes-best-practices

No summary provided by upstream source.

Repository SourceNeeds Review
General

laravel:blade-components-and-layouts

No summary provided by upstream source.

Repository SourceNeeds Review
General

laravel:queues-and-horizon

No summary provided by upstream source.

Repository SourceNeeds Review
General

laravel:quality-checks

No summary provided by upstream source.

Repository SourceNeeds Review