What problem does it solve? Code comments often restate what the code already says, while the real reasons behind workarounds, version pins, and magic numbers get lost — leaving future maintainers unable to reconstruct why a line exists or afraid to change it. ## Core Features & Use Cases - Decision-focused commenting: Guides you to document why a line exists, name the rejected alternative, and record the symptom (error strings, environments) so future searches hit the comment. - Load-bearing invariant documentation: Helps you state which rules are non-negotiable, where they are enforced, and what breaks if they are relaxed. - Single-sourcing authority documents: Prevents drift by quoting specifications verbatim instead of paraphrasing them, and locking selections with tests. - Use Case: A reviewer asks "why is this retry here?" — use this Skill to write a comment naming the rejected alternative, the production-only failure symptom, and what breaks if the line is removed. ## Quick Start Ask the AI to review this workaround and write a comment explaining why it exists and what breaks if it is removed.