parcadei/continuous-claude-v3

idempotent-redundancy

Idempotent Redundancy

First seen Jan 22, 2026

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.

Also in this package

Other skills from parcadei/continuous-claude-v3 · top by installs.

npx skills add parcadei/continuous-claude-v3

Browse all from 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.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 3.9K
License LICENSE
Default branch main
Open issues 30
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 828 B
  • docs SUMMARY.md 50 B

History

  1. First seen on skills.sh
  2. 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: 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"