laraveldaily-queues-audit

Analyze Laravel queue and job implementations against proven patterns.

132|33|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/LaravelDaily/AI-Workflows-For-Laravel --skill laraveldaily-queues-audit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laraveldaily-queues-audit
Source: https://github.com/LaravelDaily/AI-Workflows-For-Laravel/tree/main/skills/laraveldaily-queues-audit
Command: npx skills add https://github.com/LaravelDaily/AI-Workflows-For-Laravel --skill laraveldaily-queues-audit

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Audits and analyzes a Laravel project's queue and job implementations to identify patterns, issues, and improvement opportunities, producing actionable guidance and structure for a clean queue strategy.

Core Features & Use Cases

  • Pattern-aware queue auditing: Detects synchronous operations that should be queued, non-idempotent job patterns, and improper failure handling.
  • Quality-focused code review: Reviews job classes, listeners, and notifications for queue readiness and proper use of ShouldQueue, idempotency, and retries.
  • Report-driven fixes: Generates a structured findings report with concrete, actionable recommendations adaptable to different Laravel projects.

Quick Start

Run the audit against your Laravel repository to generate a structured findings report with actionable queue improvements.

Frequently Asked Questions about laraveldaily-queues-audit

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

FAQPage Schema
How do I audit Laravel queues for proper job patterns and failure handling?

Auditing Laravel queues involves scanning PHP source files and config to detect synchronous operations, non-idempotent jobs, and improper failure handling. It generates a structured findings report with concrete suggestions for improving queue readiness and retries.

What are common Laravel queue anti-patterns to look for in a code review?

Common Laravel queue anti-patterns include synchronous operations that should be queued, non-idempotent job classes, and improper failure handling. Queue code review checks for correct ShouldQueue usage, retry configurations, and proper idempotency.

How do I check if my Laravel jobs are idempotent and queue-ready?

Checking Laravel jobs for queue readiness involves reviewing job classes and notifications for the ShouldQueue interface and verifying retry logic. Analyzing code against proven queue patterns detects non-idempotent structures and suggests improvements.

Does a Laravel queue audit check deployment and environment configurations?

A Laravel queue audit checks queue-related config, env examples, and versioned deployment files. It only reports deployment or operations findings when they are explicitly verifiable from the files present in your project repository.

What files does a Laravel queue audit exclude from the code review?

A Laravel queue audit excludes vendor, node_modules, and storage directories from its code review. It focuses on scanning your PHP source files alongside queue-related config and tests to generate findings.