laravel:daily-workflow

Automate Laravel startup with Sail, artisan, pint, and phpunit.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/Patkik/Multi-tenant-SaaS-Catering-V2 --skill laravel-daily-workflow-patkik
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel:daily-workflow
Source: https://github.com/Patkik/Multi-tenant-SaaS-Catering-V2/tree/main/.agents/skills/daily-workflow
Command: npx skills add https://github.com/Patkik/Multi-tenant-SaaS-Catering-V2 --skill laravel-daily-workflow-patkik

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps development teams automate the daily Laravel startup sequence to ensure services are running, migrations are applied, queues are active, and quality gates are enforced at the start of a session or handoff.

Core Features & Use Cases

  • Start services with Sail or local PHP to establish a ready development environment.
  • Run migrations to keep the database schema in sync before work begins.
  • Manage queue workers and execute quality gates and tests to maintain code health.
  • Validate frontend tooling (lint and type checks) when present to catch issues early.

Quick Start

Run this daily workflow at the start of a session to bring services up, run migrations, start queues, and run quality gates and tests.

Frequently Asked Questions about laravel:daily-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate my daily Laravel startup sequence with Sail and Artisan?

You can automate your daily Laravel startup sequence by orchestrating Sail service initialization, Artisan migrations, queue worker startup, and quality gate checks to establish a consistent, repeatable development environment.

What is the best way to run Laravel migrations and queue workers before starting development?

The best way to run Laravel migrations and queue workers is through an automated daily workflow that executes environment readiness checks, applies database schema changes, and starts queues to ensure code health before work begins.

Can I use this daily workflow with local PHP setups or does it require Sail?

This daily workflow supports both Sail-based and local Laravel setups, allowing you to start services with Sail or local PHP to establish a ready development environment regardless of your configuration.

How do I enforce Laravel quality gates and run tests during development handoff?

You can enforce Laravel quality gates and run tests by executing Pint and PHPUnit checks within an automated daily workflow, ensuring reliable outcomes and maintaining code health during development and handoff.

Does this workflow validate frontend tooling like lint and type checks?

Yes, the workflow validates frontend tooling by executing lint and type checks when present, catching frontend issues early alongside backend migrations and quality gates to maintain overall project health.

Why should I run Laravel migrations and quality checks at the start of every session?

Running Laravel migrations and quality checks at the start of every session ensures your database schema is in sync, services are active, and code health is validated, providing a consistent baseline for development and handoff.