Agent Skills: Idempotency

>-

UncategorizedID: adaptive-enforcement-lab/claude-skills/idempotency

Install this agent skill to your local

pnpm dlx add-skill https://github.com/adaptive-enforcement-lab/claude-skills/tree/HEAD/plugins/patterns/skills/idempotency

Skill Files

Browse the full folder contents for idempotency.

Download Skill

Loading file tree…

plugins/patterns/skills/idempotency/SKILL.md

Skill Metadata

Name
idempotency
Description
>-

Idempotency

When to Use This Skill

When your workflow fails at step 47 of 50, you have three options:

  1. Rerun from beginning - Only safe if workflow is idempotent
  2. Manual intervention - Fix state by hand, then continue
  3. Abandon and start fresh - Delete partial state, try again later

The Scalable Choice

Safe reruns are the only scalable choice. Manual intervention and abandoning runs require human effort, don't scale, and introduce errors.

Implementation

See the full implementation guide in the source documentation.

References