원클릭으로
architecture-paradigm-event-driven
// Applies event-driven async messaging to decouple producers and consumers. Use when designing real-time or multi-subscriber systems needing loose coupling.
// Applies event-driven async messaging to decouple producers and consumers. Use when designing real-time or multi-subscriber systems needing loose coupling.
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 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 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-event-driven |
| description | Applies event-driven async messaging to decouple producers and consumers. Use when designing real-time or multi-subscriber systems needing loose coupling. |
| alwaysApply | false |
| category | architectural-pattern |
| tags | ["architecture","event-driven","asynchronous","decoupling","scalability","resilience"] |
| dependencies | [] |
| tools | [] |
| usage_patterns | ["paradigm-implementation","real-time-processing","system-extensibility"] |
| 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.
message-broker — Kafka, NATS, RabbitMQ; the durable channel between producers and consumersevent-stream-processor — Flink, Faust, or similar; consumes streams and emits derived eventsdistributed-tracing — OpenTelemetry-style correlation IDs across asynchronous hops