What problem does it solve? Codebases often lack consistent inline documentation, structured changelogs, and standardized commit messages, making maintenance and collaboration harder over time. ## Core Features & Use Cases - JSDoc/TSDoc Standards: Provides templates for documenting exported functions and classes with @param, @returns, and @example blocks. - Comment Best Practices: Distinguishes useful "why" comments from redundant "what" comments, including business-logic annotations. - Changelog & Commit Standards: Applies Keep a Changelog format with SemVer versioning and Conventional Commits (feat, fix, docs, refactor). - Use Case: When preparing a release, use this Skill to document all public APIs with TSDoc, update the changelog under the correct SemVer version, and format commit messages consistently. ## Quick Start Document this TypeScript module with TSDoc comments and draft a changelog entry for version 1.2.0 following Keep a Changelog format.