outbox-pattern
✓Transactional outbox pattern for reliable event publishing. Use when implementing atomic writes with event delivery, ensuring exactly-once semantics, or building event-driven microservices.
Installation
SKILL.md
Ensure atomic state changes and event publishing by writing both to a database transaction, then publishing asynchronously.
| Decision | Option A | Option B | Recommendation |
| Delivery | Polling | CDC (Debezium) | Polling for simplicity, CDC for > 10K msg/s | | Batch size | Small (10-50) | Large (100-500) | Start with 100, tune based on latency | | Retry | Fixed delay | Exponential backoff | Exponential with max 5 retries | | Cleanup | Delete published | Archive to cold storage | Archive for audit, delete after 30 days |
Transactional outbox pattern for reliable event publishing. Use when implementing atomic writes with event delivery, ensuring exactly-once semantics, or building event-driven microservices. 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 outbox-pattern- Source
- yonatangross/orchestkit
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is outbox-pattern?
Transactional outbox pattern for reliable event publishing. Use when implementing atomic writes with event delivery, ensuring exactly-once semantics, or building event-driven microservices. Source: yonatangross/orchestkit.
How do I install outbox-pattern?
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 outbox-pattern 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
- skills.sh
- First Seen
- 2026-02-01