Solid foundation for implementing CQRS patterns with complete command and query infrastructure templates. Includes command buses, handlers, event sourcing integration, and read model projections. The code examples cover real scenarios like order management with proper separation of write operations (CreateOrder, CancelOrder) and optimized queries (paginated results, filtering). Most useful when you need to scale reads independently from writes or handle complex reporting requirements. The templates are production-ready with proper validation, error handling, and async support. Skip if you're dealing with simple CRUD operations where the complexity overhead isn't justified.
npx skills add https://github.com/wshobson/agents --skill cqrs-implementation