What problem does it solve?
This Skill ensures all written prose—from code comments to commit messages and Markdown—is consistently formatted with semantic line breaks, drastically improving readability, diff clarity, and maintainability across all text-based content.
Core Features & Use Cases
- Logical Line Breaking: Guides on breaking lines at natural, logical points (after sentences, clauses, list items) for optimal flow and comprehension.
- Line Length Compliance: Provides clear guidelines for preferred and absolute line length limits across different contexts (e.g., commit messages, code comments, Markdown).
- Enhanced Diff Readability: Improves the clarity of version control diffs by ensuring changes are isolated to specific logical units.
- Use Case: When drafting a complex technical document, a detailed commit message, or multi-line code comments, this Skill automatically applies semantic line breaks, making the text easier to review, understand, and maintain.
Quick Start
BAD: all on one line
All human beings are born free and equal in dignity and rights. They are endowed with reason and conscience and should act towards one another in a spirit of brotherhood.
GOOD: with semantic line breaks
All human beings are born free and equal in dignity and rights.
They are endowed with reason and conscience
and should act towards one another in a spirit of brotherhood.