en un clic
architecture-paradigm-cqrs-es
// Applies CQRS and Event Sourcing for read/write separation and audit trails. Use when designing systems with complex domain logic or full state-change history.
// Applies CQRS and Event Sourcing for read/write separation and audit trails. Use when designing systems with complex domain logic or full state-change history.
Analyze and improve the improvement process. Use for detecting regressions and meta-optimization.
Review plugin quality with tiered checks and dependency scoping. Use for PR and pre-release audits.
Applies client-server architecture for web/mobile apps. Use when designing systems with centralized backend services, trust boundaries, or offline-first sync.
Applies event-driven async messaging to decouple producers and consumers. Use when designing real-time or multi-subscriber systems needing loose coupling.
Applies Functional Core, Imperative Shell to isolate logic from side effects. Use when business logic is entangled with I/O or unit tests are slow and brittle.
Applies hexagonal architecture isolating domain from infrastructure. Use when designing systems where testability and port/adapter separation are priorities.
| name | architecture-paradigm-cqrs-es |
| description | Applies CQRS and Event Sourcing for read/write separation and audit trails. Use when designing systems with complex domain logic or full state-change history. |
| alwaysApply | false |
| category | architectural-pattern |
| tags | ["architecture","CQRS","Event-Sourcing","distributed-systems","audit-trail","scalability"] |
| dependencies | [] |
| tools | [] |
| usage_patterns | ["paradigm-implementation","distributed-system-design","auditability","scalability-optimization"] |
| complexity | high |
| model_hint | deep |
| estimated_tokens | 800 |
These vocabulary items name the concrete tools and abstractions
that show up when the paradigm is implemented. They are not
required dependencies and they are not part of the skill's
tools: frontmatter (which is reserved for Claude Code tool
restrictions). Use this list to disambiguate during architecture
discussions.
event-store — append-only log of domain events; the system of record from which projections are builtmessage-broker — carries commands and integration events between bounded contextsprojection-builder — rebuilds read-side views by replaying the event store