Productivity

idempotent-redundancy

parcadei/continuous-claude-v3 · updated Apr 8, 2026

$npx skills add https://github.com/parcadei/continuous-claude-v3 --skill idempotent-redundancy
summary

Idempotent Redundancy

  • When adding redundant paths (fallbacks, belt-and-suspenders), make them idempotent.
  • Pattern
  • Redundancy without idempotency causes loops, churn, or data corruption.
  • DO
  • Use _is_merge: true for Braintrust updates
  • Check if value exists before writing (fallback only if missing)
  • Use atomic write/rename for file operations
  • Make reconciliation steps safe to run repeatedly
  • DON'T
  • Write unconditionally in fallback paths
  • Allow multiple writers
skill.md

idempotent-redundancy

No content available.