laravel-verification

Run a seven-phase Laravel verification pipeline covering environment, linting, tests, security, and migrations.

2|Updated May 11, 2026
One-click install
npx skills add https://github.com/himanshu231204/AI_Research_agent --skill laravel-verification-himanshu231204
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel-verification
Source: https://github.com/himanshu231204/AI_Research_agent/tree/main/.opencode/skills/laravel-verification
Command: npx skills add https://github.com/himanshu231204/AI_Research_agent --skill laravel-verification-himanshu231204

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Laravel projects frequently ship with undetected environment misconfigurations, code style violations, failing tests, security vulnerabilities, or broken migrations that cause costly production rollbacks and downtime.

Core Features & Use Cases

  • Sequential verification pipeline: Runs 7 gated phases from environment checks through deployment readiness, stopping immediately if any step fails to avoid wasting time on downstream checks.
  • Multi-tool compatibility: Supports both PHPStan and Psalm for static analysis, works with Laravel Sail, and includes special checks for Horizon queue setups.
  • Use case: Run this skill before opening a Laravel PR, after major dependency upgrades, or pre-deploy to staging to ensure your application is fully ready for release.

Quick Start

Use the laravel-verification skill to run a full pre-deploy verification pipeline for your Laravel project, including environment checks, linting, tests, security scans, and deployment readiness validation.

Frequently Asked Questions about laravel-verification

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

FAQPage Schema
How do I run a pre-deploy verification pipeline for a Laravel application?

A Laravel pre-deploy verification pipeline validates environment configuration, runs code linting and static analysis, executes test coverage, performs security auditing, and reviews migration risks. It operates as a 7-phase sequential pipeline stopping immediately if any step fails.

Can I use Laravel Sail and Horizon with automated testing and security checks?

Yes, automated Laravel verification supports Laravel Sail environments and includes specialized checks for Horizon queue setups. It integrates static analysis using PHPStan or Psalm alongside standard testing and security auditing workflows.

What is the best way to catch Laravel security vulnerabilities and migration risks before merging a PR?

The best way to catch Laravel security vulnerabilities and migration risks before a PR merge is to run a gated verification pipeline. This validates security audits and migration integrity sequentially, halting immediately upon detecting issues to prevent flawed code from merging.

Does static analysis for Laravel support both PHPStan and Psalm?

Yes, Laravel static analysis verification supports both PHPStan and Psalm. The verification pipeline includes static analysis as one of its 7 gated phases, running alongside environment validation, linting, and test coverage execution.

When should I run a Laravel code quality and deployment readiness check?

You should run Laravel code quality and deployment readiness checks before opening a pull request, after major dependency upgrades, or pre-deploy to staging. This validates environment configuration, test coverage, security, and cache warmup to prevent production rollbacks.

Why does my Laravel verification pipeline stop before running security audits?

Your Laravel verification pipeline stops before security audits because it uses a sequential 7-phase gated approach that halts immediately if an upstream step like environment validation, code linting, static analysis, or test coverage fails, saving time by skipping downstream checks.