impl-tracking
Installation
SKILL.md
Implementation Tracking
Core Principle: Track Everything, Especially Failures
Implementation tracking documents are living records that agents read and update every session. They serve as persistent memory across iterations, preventing duplicate work and preserving hard-won knowledge about what works and what does not.
The most valuable information in an implementation tracking document is not what succeeded — it is what failed and why. Dead ends documented today prevent agents from wasting hours retrying the same failed approaches tomorrow.
Why Implementation Tracking Matters
| Purpose | What It Prevents |
|---|---|
| Cross-iteration continuity | Agents starting from scratch every session |
| Dead end prevention | Agents retrying approaches that already failed |
| Progress visibility | Humans not knowing what was done or what is left |
| Test health awareness | Agents not knowing current test state |
| Issue tracking | Known issues being forgotten between sessions |
Related skills