laravel:daily-workflow

SkillDev tools

Practical daily checklist for Laravel projects; bring services up, run migrations, queues, quality gates, and tests

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the laravel:daily-workflow skill

What this skill tells your AI

The instructions your AI receives, as published by jpcaparas/superpowers-laravel in skills/daily-workflow/SKILL.md and read by ahel’s review.

Run through this checklist at the start of a session or before handoff.

# Start services
sail up -d && sail ps                     # Sail
# or (non‑Sail): ensure PHP/DB are running locally

# Schema as needed
sail artisan migrate                      # or: php artisan migrate

# Queue worker if required
sail artisan queue:work --tries=3         # or: php artisan queue:work --tries=3

# Quality gates
sail pint --test && sail pint             # or: vendor/bin/pint --test && vendor/bin/pint
sail artisan test --parallel              # or: php artisan test --parallel

# Frontend (if present)
sail pnpm run lint && sail pnpm run types # or: pnpm run lint && pnpm run types

Laravel 13+: one-command dev loop

# Runs server, queue worker, log tail, and Vite together (color-coded output)
sail artisan dev                          # or: php artisan dev

Customize processes via DevCommands::artisan(...) / DevCommands::register(...) in a service provider; filter with --environment=.

Signals

GitHub stars
153
Forks
2
Last commit
Jul 2026
Advanced
Catalog kind
skill
Gateway key
laravel-daily-workflow
Source
github.com/jpcaparas/superpowers-laravel