원클릭으로
frontend-performance-review
Review Laravel frontend performance, responsiveness, and Lighthouse-impacting best practices.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review Laravel frontend performance, responsiveness, and Lighthouse-impacting best practices.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Plan safe Laravel data migrations with phased rollout, backfills, double writes, verification, and rollback.
Review Laravel API endpoints for validation, authorization, abuse resistance, and safer defaults.
Review a Laravel app for deployment blockers across config, queues, caching, operations, and rollback readiness.
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 | frontend-performance-review |
| description | Review Laravel frontend performance, responsiveness, and Lighthouse-impacting best practices. |
| license | MIT |
| tags | ["laravel","php"] |
| version | 0.1.0 |
| compatible_agents | ["laravel/boost"] |
Use this skill when reviewing a Laravel project's frontend for slow page loads, weak Lighthouse scores, layout instability, mobile responsiveness issues, or generally inefficient UI implementation. It is most useful for Blade, Livewire, Inertia, Vue, React, Alpine, and Vite-based Laravel apps.
vite.config.*, asset entrypoints, Tailwind usage, and any CDN, cache, or image pipeline configuration.Critical issues, Performance improvements, Responsive UX issues, Lighthouse opportunities, and Validation steps. Point each recommendation to the relevant file, component, asset, or rendering layer.Output expectations: return the highest-impact performance and responsiveness issues first, then concrete Laravel-appropriate fixes and the validation steps needed to confirm improvement.
Prompt 1:
Use frontend-performance-review on this Laravel + Livewire app. Focus on slow mobile load times, layout shifts, and anything hurting Lighthouse performance.
Prompt 2:
Review this Laravel Inertia + Vue frontend for responsiveness and performance. Prioritize bundle size, image handling, route-level code splitting, and Core Web Vitals.
JSON:
{
"skill": "frontend-performance-review",
"context": {
"stack": ["laravel", "vite", "inertia", "vue", "tailwind"],
"focus": ["lighthouse", "responsiveness", "bundle_size", "images", "core_web_vitals"],
"files": ["resources/js", "resources/views", "vite.config.js"],
"targets": ["mobile_homepage", "dashboard"]
}
}
Code example:
const AnalyticsPage = defineAsyncComponent(() =>
import('./Pages/AnalyticsPage.vue')
);
Run the skill on a Laravel frontend that uses large images, shared JS entrypoints, and mobile-heavy layouts. Verify that the response flags concrete performance bottlenecks, responsive UX issues, and Laravel-specific improvements such as Vite code splitting, lazy loading, or Livewire/Inertia payload reductions.