dotnet-domain-events-generator
Installation
SKILL.md
Domain Events Generator
Overview
Domain Events capture something significant that happened in the domain:
- Raised by entities - When state changes occur
- Handled by notification handlers - React to events
- Outbox pattern - Reliable event delivery
- Decoupled - Publisher doesn't know subscribers
Quick Reference
| Component | Purpose | Location |
|---|---|---|
IDomainEvent |
Marker interface | Domain/Abstractions |
{Entity}{Action}DomainEvent |
Event record | Domain/{Aggregate}/Events |
{Event}DomainEventHandler |
Event handler | Application/{Feature} |
OutboxMessage |
Persisted event | Infrastructure/Outbox |