npx skills add smithery/parcadei --skill idempotent-redundancy
parcadei/continuous-claude-v3
idempotent-redundancy
Idempotent Redundancy
Installation
npx skills add parcadei/continuous-claude-v3 --skill idempotent-redundancy
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Apply when designing commands, lifecycle steps, or processing loops that run amid crashes, rest…
1.9K installsApply when designing commands, lifecycle steps, or processing loops that run amid crashes, rest…
107 installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md828 B -
docs
SUMMARY.md50 B
History
- First seen on skills.sh
- First recorded snapshot · 483 installs
SKILL.md
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
ismerge: truefor 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"