event-sourcing
Event sourcing patterns for storing state as a sequence of events. Use when implementing event-driven architectures, CQRS, audit trails, or building systems requiring full history reconstruction.
Installation
SKILL.md
Store application state as immutable events rather than current state snapshots.
| Event naming | Past tense (OrderPlaced, not PlaceOrder) | | Concurrency | Optimistic locking with version check | | Snapshots | Every 100-500 events for large aggregates | | Event schema | Version events, support upcasting | | Projections | Async handlers, idempotent updates | | Storage | PostgreSQL + JSONB or dedicated event store |
event-store Keywords: event store, append-only, event persistence, event log Solves:
Event sourcing patterns for storing state as a sequence of events. Use when implementing event-driven architectures, CQRS, audit trails, or building systems requiring full history reconstruction. Source: yonatangross/orchestkit.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/yonatangross/orchestkit --skill event-sourcing- Source
- yonatangross/orchestkit
- Category
- </>Dev Tools
- Verified
- —
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is event-sourcing?
Event sourcing patterns for storing state as a sequence of events. Use when implementing event-driven architectures, CQRS, audit trails, or building systems requiring full history reconstruction. Source: yonatangross/orchestkit.
How do I install event-sourcing?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/yonatangross/orchestkit --skill event-sourcing Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/yonatangross/orchestkit
Details
- Category
- </>Dev Tools
- Source
- user
- First Seen
- 2026-02-01