npx skills add ...
npx skills add affaan-m/ecc --skill backend-patterns
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes. Use when building or reviewing Node.js, Express, or Next.js API routes and their data access.
npx skills add affaan-m/ecc --skill backend-patterns
Backend architecture patterns and best practices for scalable server-side applications.
Rate limiting must use a shared store such as Redis, a gateway, or the platform's native limiter. Do not use per-process in-memory counters for production APIs: they reset on deploy, split across replicas, and fail open in serverless or multi-instance environments.
Keep the backend layer responsible for choosing the integration point and error
shape; use api-design for the HTTP contract and security-review for abuse
case review.
Remember: Backend patterns enable scalable, maintainable server-side applications. Choose patterns that fit your complexity level.