一键导入
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 页面并帮你完成安装。
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.
基于 SOC 职业分类
| 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.