Automation Safe Cycle

Use when automating a recurring job with two candidates and human retain/promote gates. Idempotent cycle only—no silent prod writes.

cassidyrice Updated

File contents

Automation Safe Cycle

One idempotent loop: observe → two candidates → human gate → act or discard.

When to Use

  • Recurring monitor/cron where mistakes are costly
  • You want A/B candidates before retention

Process

  1. Define idempotency key (date, repo, URL…).
  2. Observe signal (watcher, scrape, API).
  3. Build candidate A and candidate B (not one hidden path).
  4. Score with explicit checklist; do not auto-promote.
  5. Human or high-bar gate: retain / promote / discard.
  6. Log cycle report; skip if idempotency key already completed.

NEVER

  • Single-path automation without a discard option
  • Write trusted memory without commit ritual
  • Re-run side effects when key already done

Collision parents

verified-brain-commit-ritual, watchers, ai-skills-episode-factory

cassidyrice/ai-skills-drop/tree/main/skills/automation-safe-cycle commit 2322941524

Frequently asked questions

npx skillmds@latest add cassidyrice/automation-safe-cycle