Loading...
Loading...
Found 183 Skills
Portable storage configuration across S3/R2/MinIO with optional CDN—env toggles, path-style endpoints, and URL generation
Replace hardcoded values with constants, enums, and configuration for maintainability; use PHP 8.1+ enums and config files
Stabilize workflows with Template Method or Strategy; extend by adding new classes instead of editing core logic
Use interfaces and dependency injection to decouple code; bind implementations in the container
Create and register small, pure helper functions when they improve clarity; keep them organized and tested
Evolve APIs safely using versioned DTOs/transformers, deprecations, and compatibility tests
Stabilize workflows with Template Method or Strategy; extend by adding new classes instead of editing core logic
Write meaningful documentation that explains why not what; focus on complex business logic and self-documenting code
Provide concrete examples—existing code patterns, style samples, input/output pairs—to guide AI toward your project's conventions
Write focused controller tests using HTTP assertions; keep heavy logic in Actions/Services and unit test them
Keep cyclomatic complexity low; flatten control flow, extract helpers, and prefer table-driven/strategy patterns over large switches
Use hexagonal architecture for external systems; define ports (interfaces) and per-provider adapters; select adapter at composition edge