This handles distributed transaction patterns using the saga pattern, giving you both choreography and orchestration approaches. You get a Python base orchestrator with state management, step execution, and automatic compensating transactions when things fail. It's built for multi-service workflows like order fulfillment where you need to coordinate across payment, inventory, and shipping services, then roll everything back cleanly if one step fails. The implementation includes saga state tracking, event publishing, and compensation handlers. It's genuinely useful if you're building microservices that need transactional consistency without distributed locks, though you'll need to wire up your own persistence and event bus.
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill saga-orchestration