Stop coding agents from writing prolix comments A new Claude Code skill called 'crispy-comments' automatically prunes verbose code comments, removing incidental history, defensive justifications, commented-out code, and ASCII-art banners to keep only comments that help future maintainers. The skill is installed via a curl command and invoked with '/crispy-comments' in Claude Code. A Claude Code https://claude.com/claude-code skill that prunes code comments down to what actually helps future maintainers. It reviews the comments added or changed on the current branch's diff and removes: - incidental history, defensive justification, and correctness arguments - comments that restate facts likely to change subclass counts, variant lists, call sites - commented-out code version control already remembers it - ASCII-art banners and box-drawing section dividers curl -fsSL https://raw.githubusercontent.com/DanverImbue/crispy-comments/main/install.sh | bash This drops SKILL.md into ~/.claude/skills/crispy-comments/ override with CLAUDE SKILLS DIR . In Claude Code, invoke it with: /crispy-comments It applies only to the current branch of the current repository.