Agent Skills: Quality Checks (Laravel)

Unified quality gates for Laravel projects; Pint, static analysis (PHPStan/Psalm), Insights (optional), and JS linters; Sail and non-Sail pairs provided

UncategorizedID: noartem/laravel-vue-skills/laravel-quality-checks

Install this agent skill to your local

pnpm dlx add-skill https://github.com/noartem/skills/tree/HEAD/skills/laravel-quality-checks

Skill Files

Browse the full folder contents for laravel-quality-checks.

Download Skill

Loading file tree…

skills/laravel-quality-checks/SKILL.md

Skill Metadata

Name
laravel-quality-checks
Description
Unified quality gates for Laravel projects; Pint, static analysis (PHPStan/Psalm), Insights (optional), and JS linters; Sail and non-Sail pairs provided

Quality Checks (Laravel)

Run automated checks before handoff or completion. Keep output clean.

PHP Style & Lint

# Check
vendor/bin/pint --test

# Fix
vendor/bin/pint

Static Analysis (choose your tool)

# PHPStan example
vendor/bin/phpstan analyse --memory-limit=1G

# Psalm example
vendor/bin/psalm

Insights (optional, if installed)

php artisan insights --no-interaction --format=json --flush-cache

Tests

php artisan test --parallel