Stop Duplicate Writes Under Load

    by Mariusz Wrzeszczynski

    1

    Repair duplicate writes, oversold inventory, double charges, and other concurrency bugs in APIs.

    Secure checkout via Stripe

    0 installsSecurity scanned

    Works with the AI tools you already use

    CClaude CodeCCursorCCodex CLIGGitHub CopilotGGemini CLIVVS CodeWWindsurfMManus+14 more

    See it in action

    You say

    I'm seeing duplicate records in the orders table when users double-click the checkout button. Can you fix the race condition in checkout_controller.rb?

    Your agent does

    Race Condition Found: Check-Then-Insert on orders table. Invariant at risk: One order per checkout session. Repair Applied: Added unique index on (session_id) and database-level transaction. Validation Result: Simulated 10 concurrent requests; 1 succeeded, 9 safely rejected with 409 Conflict.

    What you get

    Stop duplicate database writes using unique constraints and idempotency keys.Prevent inventory overselling with conditional atomic updates.Secure payment workflows against repeated processing during retries.Add optimistic locking to prevent stale data from overwriting new updates.

    About this skill

    The problem

    Concurrent requests, retries, and background workers often modify the same records at once. This leads to oversold inventory, duplicate payments, and corrupted data through read-modify-write races.

    What it does

    • Identifies race conditions like Check-Then-Insert and Read-Then-Update in your application code.
    • Applies database-level unique constraints and conditional atomic updates to guarantee data integrity.
    • Implements idempotency keys for webhooks and payment processing to prevent duplicate side effects.
    • Generates deterministic concurrency tests that simulate multiple actors hitting the same resource simultaneously.
    • Adds optimistic concurrency control using version tokens to prevent stale writes.

    Frameworks & tools

    Works with any database-backed application including SQL (PostgreSQL, MySQL), ORMs, background workers, and message queues.

    Why this beats prompting it yourself

    Generic prompts often suggest thread-unsafe in-memory locks or global locks that kill performance. This skill enforces database-level correctness, ensures transactions don't span slow API calls, and provides a structured output that proves the fix via actual concurrency simulations.

    Use cases

    • Preventing multiple users from booking the same reservation slot.
    • Ensuring a coupon is only redeemed once per account during high-traffic sales.
    • Deduplicating incoming webhooks from providers like Stripe or Shopify.
    • Fixing race conditions in inventory counters and account balance updates.

    Known limitations

    Cannot undo external side effects that occurred before a database rollback. Requires a test environment to verify concurrency fixes through simulation.

    How to install

    Drop the file into your AI Agent. Works with Claude, Cursor, ChatGPT, and 20+ more.

    Reviews

    No reviews yet

    Be one of the first to try it. Every listed skill passes our trust checks below.

    Security scanned

    Passed our 8-point scan before listing

    Fresh listing

    Recently published to Agensi

    30-day refund

    Not a fit? Get your money back

    Trust & safety

    Security scanned

    Verified clean today

    Listedtoday

    Creator

    Mariusz Wrzeszczynski
    Mariusz Wrzeszczynski

    109 skills on Agensi

    Frequently Asked Questions

    Popular in Data Engineering