一键导入
laravel-daily-workflow
Practical daily checklist for Laravel projects; bring services up, run migrations, queues, quality gates, and tests
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Practical daily checklist for Laravel projects; bring services up, run migrations, queues, quality gates, and tests
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build AI features with the first-party Laravel AI SDK (Laravel 13+); agents, embeddings, images, audio, and tool calling with provider-agnostic APIs
Use API Resources with pagination and conditional fields; keep response shapes stable and cache-friendly
Compose UIs with Blade components, slots, and layouts; keep templates pure and testable
Request effective code reviews—specify focus areas, provide context, ask for architectural feedback, reference Laravel conventions
Create effective debugging prompts—include error messages, stack traces, expected vs actual behavior, logs, and attempted solutions
Provide comprehensive context in prompts—files, errors, Laravel version, dependencies, and monorepo details—for accurate AI responses
| name | laravel:daily-workflow |
| description | Practical daily checklist for Laravel projects; bring services up, run migrations, queues, quality gates, and tests |
Run through this checklist at the start of a session or before handoff.
# Start services
sail up -d && sail ps # Sail
# or (non‑Sail): ensure PHP/DB are running locally
# Schema as needed
sail artisan migrate # or: php artisan migrate
# Queue worker if required
sail artisan queue:work --tries=3 # or: php artisan queue:work --tries=3
# Quality gates
sail pint --test && sail pint # or: vendor/bin/pint --test && vendor/bin/pint
sail artisan test --parallel # or: php artisan test --parallel
# Frontend (if present)
sail pnpm run lint && sail pnpm run types # or: pnpm run lint && pnpm run types
# Runs server, queue worker, log tail, and Vite together (color-coded output)
sail artisan dev # or: php artisan dev
Customize processes via DevCommands::artisan(...) / DevCommands::register(...) in a service provider; filter with --environment=.