Agent
Simplifies and refines PHP/Laravel code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.
Agent
Simplifies and refines PHP/Laravel code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.
Skill Claude CodeCodex
Enforces an opinionated UI baseline to prevent AI-generated interface slop.
Skill Claude CodeCodex
Keep cyclomatic complexity low; flatten control flow, extract helpers, and prefer table-driven/strategy patterns over large switches.
Skill Claude CodeCodex
Use API Resources with pagination and conditional fields; keep response shapes stable and cache-friendly.
Skill Claude CodeCodex
Build production-grade Laravel REST APIs using opinionated architecture patterns with Laravel best practices. Use when building, scaffoling, or reviewing Laravel APIs with specifications for stateless design, versioned endpoints, invokable controllers, Form Request DTOs, Action classes, JWT authentication, and PSR-12…
Skill Claude CodeCodex
Portable storage configuration across S3/R2/MinIO with optional CDN—env toggles, path-style endpoints, and URL generation.
Skill Claude CodeCodex
Replace hardcoded values with constants, enums, and configuration for maintainability; use PHP 8.1+ enums and config files.
Skill Claude CodeCodex
Reduce controller bloat using Form Requests for auth/validation, small Actions/Services with DTOs, and resource/single-action controllers.
Skill Claude CodeCodex
Write focused controller tests using HTTP assertions; keep heavy logic in Actions/Services and unit test them.
Skill Claude CodeCodex
Create and register small, pure helper functions when they improve clarity; keep them organized and tested.
Skill Claude CodeCodex
Process large datasets efficiently using chunk(), chunkById(), lazy(), and cursor() to reduce memory consumption and improve performance.
Skill Claude CodeCodex
Create effective debugging prompts—include error messages, stack traces, expected vs actual behavior, logs, and attempted solutions.
Skill Claude CodeCodex
Remove unneeded Composer packages and assets to improve boot time, memory, and security surface.
Skill Claude CodeCodex
Store and serve files via Storage; set visibility, generate URLs, and handle streaming safely.
Skill Claude CodeCodex
Use interfaces and dependency injection to decouple code; bind implementations in the container.
Skill Claude CodeCodex
Build with i18n in mind from day one using Laravel translation helpers, JSON files, Blade integration, and locale management.
Skill Claude CodeCodex
Refine AI-generated code through specific feedback—point out errors, identify gaps, show desired changes, reference style guides.
Skill Claude CodeCodex
Safe database change patterns; when to modify vs add migrations; always pair models with migrations and factories; seeding guidance.
Skill Claude CodeCodex
Use framework caches and value/query caching to reduce work; add tags, locks, and explicit invalidation strategies for correctness.
Skill Claude CodeCodex
Prevent N+1 queries by eager loading; enable lazy-loading protection in non-production; choose selective fields.
Skill Claude CodeCodex
Select only required columns to reduce memory and transfer costs; apply to base queries and relations.
Skill Claude CodeCodex
Enforce access via Policies and Gates; use authorize() and authorizeResource() to standardize controller protections.
Skill Claude CodeCodex
Use Laravel-specific vocabulary—Eloquent patterns, Form Requests, API resources, jobs/queues—to get idiomatic framework code.
Skill Claude CodeCodex
Unified quality gates for Laravel projects; Pint, static analysis (PHPStan/Psalm), Insights (optional), and JS linters; Sail and non-Sail pairs provided.