·idempotency-patterns
</>

idempotency-patterns

yonatangross/orchestkit

Idempotency patterns for APIs and event handlers. Use when implementing exactly-once semantics, deduplicating requests, or building reliable distributed systems.

17Installs·0Trend·@yonatangross

Installation

$npx skills add https://github.com/yonatangross/orchestkit --skill idempotency-patterns

SKILL.md

Patterns for ensuring operations can be safely retried without unintended side effects.

| Key generation | Deterministic hash | Same input = same key always | | Storage | Redis + DB | Redis for speed, DB for durability | | TTL | 24-72 hours | Balance storage vs replay window | | Lock strategy | DB unique constraint | Handles race conditions | | Response caching | Status 2xx only | Don't cache errors |

key-generation Keywords: idempotency key, hash, deterministic, deduplication key Solves:

Idempotency patterns for APIs and event handlers. Use when implementing exactly-once semantics, deduplicating requests, or building reliable distributed systems. Source: yonatangross/orchestkit.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/yonatangross/orchestkit --skill idempotency-patterns
Category
</>Dev Tools
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is idempotency-patterns?

Idempotency patterns for APIs and event handlers. Use when implementing exactly-once semantics, deduplicating requests, or building reliable distributed systems. Source: yonatangross/orchestkit.

How do I install idempotency-patterns?

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 idempotency-patterns 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