documentation
Installation
SKILL.md
Documentation Fixes
Fixes for code documentation issues. Good documentation explains intent, edge cases, and non-obvious behavior - not what the code obviously does.
Quick Start
- Identify documentation gap type (missing JSDoc, missing @returns, missing module doc)
- Read the function/module to understand its purpose
- Write concise documentation focusing on the "why" and edge cases
- Verify documentation adds value beyond what code already shows
Priority
P3 - Fix when convenient. Documentation improves maintainability but doesn't affect runtime.