comment-style-guide
SKILL.md
Code Comment Style Guidelines
Philosophy
Write code that doesn't need comments. When comments are needed, make them count.
π¨ CRITICAL RULES
Rule #1: No Redundant Comments
FORBIDDEN: Comments that restate what the code obviously does
// β WRONG - Comment restates the code
// Convert pageNumber/pageSize to offset/limit
if (results.pageNumber && results.pageSize) {
params.offset = (results.pageNumber - 1) * results.pageSize;
params.limit = Math.min(Math.max(results.pageSize, 1), 1000);
}