docs/zh-CN/skills/laravel-verification/SKILL.md
--- name: laravel-verification description: Verification loop for Laravel projects: env checks, linting, static analysis, tests with coverage, security scans, and deployment readiness. origin: ECC --- # Laravel 验证循环 在发起 PR 前、进行重大更改后以及部署前运行。 ## 使用时机 * 在为一个 Laravel 项目开启拉取请求之前 * 在重大重构或依赖升级之后 * 为预生产或生产环境进行部署前验证 * 运行完整的 代码检查 -> 测试 -> 安全检查 -> 部署就绪 流水线 ## 工作原理 * 按顺序运行从环境检查到部署就绪的各个阶段,每一层都建立在前一层的基础上。 * 环境和 Composer 检查是所有其他步骤的关卡;如果它们失败,立即停止。 * 代码检查/静态分析应在运行完整测试和覆盖率检查前确保通过。 * 安全性和迁移审查在测试之后进行,以便在涉及数据或
npx skillsauth add affaan-m/everything-claude-code docs/zh-CN/skills/laravel-verificationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
在发起 PR 前、进行重大更改后以及部署前运行。
php -v
composer --version
php artisan --version
.env 文件存在且包含必需的键APP_DEBUG=falseAPP_ENV 与目标部署环境匹配(production、staging)如果在本地使用 Laravel Sail:
./vendor/bin/sail php -v
./vendor/bin/sail artisan --version
composer validate
composer dump-autoload -o
vendor/bin/pint --test
vendor/bin/phpstan analyse
如果你的项目使用 Psalm 而不是 PHPStan:
vendor/bin/psalm
php artisan test
覆盖率(CI 环境):
XDEBUG_MODE=coverage php artisan test --coverage
CI 示例(格式化 -> 静态分析 -> 测试):
vendor/bin/pint --test
vendor/bin/phpstan analyse
XDEBUG_MODE=coverage php artisan test --coverage
composer audit
php artisan migrate --pretend
php artisan migrate:status
Y_m_d_His_* 格式(例如,2025_03_14_154210_create_orders_table.php)并清晰地描述变更down() 方法,避免在没有明确备份的情况下造成不可逆的数据丢失php artisan optimize:clear
php artisan config:cache
php artisan route:cache
php artisan view:cache
storage/ 和 bootstrap/cache/ 目录可写php artisan schedule:list
php artisan queue:failed
如果使用了 Horizon:
php artisan horizon:status
如果 queue:monitor 命令可用,可以用它来检查积压作业而无需处理它们:
php artisan queue:monitor default --max=100
主动验证(仅限预生产环境):向一个专用队列分发一个无操作作业,并运行一个单独的工作者来处理它(确保配置了一个非 sync 的队列连接)。
php artisan tinker --execute="dispatch((new App\\Jobs\\QueueHealthcheck())->onQueue('healthcheck'))"
php artisan queue:work --once --queue=healthcheck
验证该作业产生了预期的副作用(日志条目、健康检查表行或指标)。
仅在处理测试作业是安全的非生产环境中运行此检查。
最小流程:
php -v
composer --version
php artisan --version
composer validate
vendor/bin/pint --test
vendor/bin/phpstan analyse
php artisan test
composer audit
php artisan migrate --pretend
php artisan config:cache
php artisan queue:failed
CI 风格流水线:
composer validate
composer dump-autoload -o
vendor/bin/pint --test
vendor/bin/phpstan analyse
XDEBUG_MODE=coverage php artisan test --coverage
composer audit
php artisan migrate --pretend
php artisan optimize:clear
php artisan config:cache
php artisan route:cache
php artisan view:cache
php artisan schedule:list
data-ai
Design task-local harnesses, eval gates, and reusable skill extraction for Claude dynamic workflow mode and other adaptive agent harnesses.
development
React component testing with React Testing Library, Vitest/Jest, MSW for network mocking, accessibility assertions with axe, and the decision boundary between component tests and Playwright/Cypress end-to-end runs. Use when writing or fixing tests for React components, hooks, or pages.
tools
React and Next.js performance optimization patterns adapted from Vercel Engineering's React Best Practices (https://github.com/vercel-labs/agent-skills). Organizes 70+ rules across 8 priority categories — waterfalls, bundle size, server-side, client fetching, re-render, rendering, JS micro-perf, advanced. Use when writing, reviewing, or refactoring React/Next.js code for performance.
tools
React 18/19 patterns including hooks discipline, server/client component boundaries, Suspense + error boundaries, form actions, data fetching, state management decision trees, and accessibility-first composition. Use when writing or reviewing React components.