Create effective debugging prompts—include error messages, stack traces, expected vs actual behavior, logs, and...
find ~/noartem/ -name "*.skill"
Process large datasets efficiently using chunk(), chunkById(), lazy(), and cursor() to reduce memory consumption and...
Create and register small, pure helper functions when they improve clarity; keep them organized and tested
Write focused controller tests using HTTP assertions; keep heavy logic in Actions/Services and unit test them
Reduce controller bloat using Form Requests for auth/validation, small Actions/Services with DTOs, and...
Replace hardcoded values with constants, enums, and configuration for maintainability; use PHP 8.1+ enums and config files
Portable storage configuration across S3/R2/MinIO with optional CDN—env toggles, path-style endpoints, and URL generation
Build production-grade Laravel REST APIs using opinionated architecture patterns with Laravel best practices. Use...
Use API Resources with pagination and conditional fields; keep response shapes stable and cache-friendly
Keep cyclomatic complexity low; flatten control flow, extract helpers, and prefer table-driven/strategy patterns...