Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add hamzabellouch/agent-skills --skill event-driven-architecture-saga-patternsgit clone --depth 1 https://github.com/hamzabellouch/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/hamzabellouch/agent-skills/event-driven-architecture-saga-patterns)<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/event-driven-architecture-saga-patterns"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/event-driven-architecture-saga-patterns/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/event-driven-architecture-saga-patterns"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/event-driven-architecture-saga-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00075 | $0.02906 |
| Opus 5 | $0.00037 | $0.01453 |
| Sonnet 5 | $0.00015 | $0.00581 |
| Haiku 4.5 | $0.00007 | $0.00291 |
Grade A, and why
event-driven-architecture-saga-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 308 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Event-Driven Architecture: Saga Patterns & Eventual Consistency Guide
1. Architectural Foundations: BASE over ACID
In microservices architectures, each service maintains its own private database to ensure loose coupling and independent scalability. This renders distributed ACID transactions impossible without two-phase commit (2PC). However, 2PC introduces high latency, synchronous blocking, single points of failure, and deadlocks across service boundaries.
The Saga Pattern manages distributed transactions as a sequence of local transactions. Each local transaction updates a single service's database and emits an event or message to trigger the next step. If a step fails, the Saga executes compensating transactions in reverse order to undo changes and restore data consistency.
1.1 Transaction Classification
[ Local Tx 1: Compensable ] ──► [ Local Tx 2: Pivot ] ──► [ Local Tx 3: Retryable ]
│ │ │
(Rollbackable) (Point of No Return) (Guaranteed Success)
- Compensable Transactions: Transactions that can be undone by running an explicit compensating transaction.
- Pivot Transaction: The critical decision point of the Saga. Once the pivot transaction succeeds, the Saga MUST go to completion. It cannot be compensated.
- Retryable Transactions: Transactions that follow the pivot point and are guaranteed to eventually succeed through retries.
2. Saga Execution Models: Choreography vs. Orchestration
CHOREOGRAPHY:
[ Order Service ] ── OrderCreated ──► [ Payment Service ] ── PaymentProcessed ──► [ Inventory Service ]
ORCHESTRATION:
┌──► [ Payment Service ]
│
[ Saga Orchestrator ] ──┼──► [ Inventory Service ]
│
└──► [ Shipping Service ]
2.1 Comparative Analysis
| Dimension | Choreography Saga | Orchestration Saga |
|---|---|---|
| Control Model | Decentralized; services react to domain events. | Centralized; dedicated orchestrator directs participants. |
| Coupling | Loosely coupled; services know events, not handlers. | Moderate coupling; orchestrator knows participant APIs. |
| State Visibility | Distributed across service logs; hard to query global status. | Centralized state store; easy to track saga status. |
| Complexity | Simple for small flows (2-3 steps); cyclic dependencies in large flows. | High initial setup; manages complex branching & parallel paths easily. |
| Failure Handling | Complex cascading compensation logic across events. | Explicit compensation routines directed by orchestrator. |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 308 lines · 75 tokens per session scan A 240fa4c2c82f
event-driven-architecture-saga-patterns is a skill published in the GitHub repository hamzabellouch/agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 75 tokens to every session and 2,906 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
supabase
Supabase PostgreSQL backend-as-a-service with realtime. Use for serverless PostgreSQL.
firebase
Firebase Realtime Database and Firestore for mobile/web sync. Use for real-time apps.
redis
Redis in-memory cache, pub/sub, streams, and data structures. Use for caching and real-time data.
event-store-design
Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.
cqrs-implementation
Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.
architect/data-api-design
A guide to designing data models and application programming interfaces (APIs), which are the rules software uses to exchange data.