← all publishers

abhisheksharma2411

@abhisheksharma2411 source repo

2 published skills

  1. Failure Mode Analysis · abhisheksharma2411
    Enumerates the ways an operation can partially fail at design time, before the happy path is written, and specifies deliberate behavior for each one. Use when designing a feature or checkout flow that calls a database, queue, or third-party API. Use when asking what should happen if a dependency times out or is slow. Use when writing a design document or ADR for something with external dependencies. Use when reviewing code that calls an external service and deciding whether it is safe to retry, or how the system should degrade. NOT for diagnosing something that is already broken.
    0
    installs
  2. Idempotency And Exactly Once · abhisheksharma2411
    Designs and reviews side-effecting operations so that retries, replays, and concurrent duplicates produce exactly one effect. Use when writing or reviewing code that charges money, sends messages, mutates inventory, or calls a non-transactional external API. Use when adding retries, queue consumers, webhooks, or agent tool calls that mutate state. Use when investigating duplicate charges, double-sent notifications, or drifted balances.
    0
    installs