Idempotent Redundancy
Scanned 2/12/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill idempotent-redundancy-namesreallyblank-clorch --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Idempotent Redundancy Namesreallyblank Clorch?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-idempotent-redundancy-namesreallyblank-clorch)More formats (shields.io, HTML) on the badges page.
---
name: idempotent-redundancy
description: Idempotent Redundancy
user-invocable: false
---
# 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 to overwrite each other
- Fire "repair" actions that can trigger more repairs
## Source Sessions
- a541f08a: "Redundancy is good only if idempotent"
- 1c21e6c8: "Belt-and-suspenders, but make it idempotent"
- 6a9f2d7a: "Idempotent repair hooks"
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.