원클릭으로
deployment-readiness
Review a Laravel app for deployment blockers across config, queues, caching, operations, and rollback readiness.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review a Laravel app for deployment blockers across config, queues, caching, operations, and rollback readiness.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Plan safe Laravel data migrations with phased rollout, backfills, double writes, verification, and rollback.
Review Laravel frontend performance, responsiveness, and Lighthouse-impacting best practices.
Review Laravel API endpoints for validation, authorization, abuse resistance, and safer defaults.
Review Laravel migrations and query paths for missing, redundant, or risky indexes before production.
Review Laravel workflows for retries, timeouts, idempotency, and graceful failure under partial outages.
Plan a Laravel or PHP upgrade by identifying blockers, risky code paths, and the safest execution order.
| name | deployment-readiness |
| description | Review a Laravel app for deployment blockers across config, queues, caching, operations, and rollback readiness. |
| license | MIT |
| tags | ["laravel","php"] |
| version | 0.1.1 |
| compatible_agents | ["laravel/boost"] |
Use this skill before a release or during a production readiness review when you need a Laravel-specific check for deployment blockers. It is most useful when the app uses queues, Horizon, the scheduler, Redis, Octane, S3, Vapor, Forge, Docker, or a non-trivial CI/CD pipeline.
composer.json, .env.example, bootstrap/app.php, config/app.php, config/database.php, config/cache.php, config/queue.php, config/filesystems.php, config/session.php, config/logging.php, and deployment files such as Dockerfile, docker-compose.yml, Forge scripts, Vapor config, GitHub Actions, or Envoyer hooks.php artisan optimize or other cache warm-up commands are used safely.APP_DEBUG, APP_ENV, trusted proxies, HTTPS enforcement, queue/cache/session driver mismatches, missing php artisan storage:link, broken scheduler setup, weak health checks, weak logging/monitoring, or poor secrets handling.Blockers, Warnings, Pre-deploy checks, and Recommended follow-ups. Each point should reference the relevant Laravel file, config key, Artisan command, or infrastructure file.Ready, Ready with conditions, or Not ready. Keep the answer focused on release-critical issues rather than a generic operations checklist.Output expectations: return a short release-readiness report with blockers first, then warnings, pre-deploy checks, recommended follow-ups, and a final verdict.
Prompt 1:
Use deployment-readiness on this Laravel 12 app before tomorrow's production deploy. Focus on queues, cache warm-up, Horizon, the scheduler, and health checks.
Prompt 2:
Review this project for deployment readiness on Forge with Redis queues and S3 storage. Prioritize rollout blockers and anything that would make rollback risky.
JSON:
{
"skill": "deployment-readiness",
"context": {
"laravel_version": "12.x",
"platform": "Forge",
"queue_driver": "redis",
"focus": ["config", "queues", "cache_warmup", "rollback"],
"services": ["horizon", "scheduler", "s3"],
"constraints": ["zero_downtime"]
}
}
Ask the agent to run the skill against a Laravel app that has Redis queues, a scheduler, and a deployment workflow. Verify that the response references specific Laravel config files, identifies real release blockers or warnings, includes pre-deploy checks, and ends with a deployment verdict.