Made by AI TechInspectable systems journal
PAT 02

IMPLEMENTATION PATTERN

Idempotent action queue

Retries and duplicate triggers can repeat email, payment, publication, or record updates.

USE WHEN

An AI-assisted decision may cause an external or irreversible action.

REQUIRED CONTRACT

Keep these visible.

  1. 01Stable operation key
  2. 02Visible state machine
  3. 03Retry policy
  4. 04Manual reconciliation

AVOID

Do not hide the failure.

  • Direct model side effects
  • Blind retries
  • Hidden partial state
  • Unowned dead letters
FIRST TEST

Prove the boundary.

Send the same operation before, during, and after completion. Prove one action occurs and every duplicate is visible.