Handles distributed transaction patterns when you can't use two-phase commit across microservices. Generates orchestrator implementations that coordinate multiple services with proper compensation logic, timeout handling, and failure recovery. Also covers choreography patterns where services react to each other's events without a central coordinator. The templates include concrete order fulfillment workflows spanning inventory, payment, and shipping services. Good for complex business processes that need to roll back partially completed work when something fails downstream. The compensation logic is built to be idempotent and includes monitoring for stuck saga states.
npx skills add https://github.com/wshobson/agents --skill saga-orchestration