observe-before-editing

Installation
SKILL.md

Observe Before Editing

Before editing code to fix a bug, confirm what the system actually produced.

Pattern

Outputs don't lie. Code might. Check outputs first.

DO

  1. Check if expected directories exist: ls -la .claude/cache/
  2. Check if expected files were created: ls -la .claude/cache/learnings/
  3. Check logs for errors: tail .claude/cache/*.log
  4. Run the failing command manually to see actual error
  5. Only then edit code

DON'T

Installs
418
GitHub Stars
3.8K
First Seen
Jan 22, 2026
observe-before-editing — parcadei/continuous-claude-v3