code-readability

Code Readability & Maintainability

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "code-readability" with this command: npx skills add baz-scm/awesome-reviewers/baz-scm-awesome-reviewers-code-readability

Code Readability & Maintainability

Writing clean code is a superpower for long-term productivity. Developers should prioritize clarity and explicitness over clever brevity. Code that clearly communicates its intent is easier for teammates (and future you) to understand and modify. High readability also reduces the chance of bugs – clear, well-structured code is more maintainable and less prone to surprise behaviors.

Examples

  • Using meaningful variable and function names (isServerConnected instead of enabled ) to convey intent.

  • Replacing a cryptic one-liner with a few well-named intermediate variables that make the logic obvious.

Guidelines

  • Descriptive Naming: Choose specific, descriptive names for variables, functions, and classes. Names should communicate intent and avoid ambiguity. For example, prefer getUserProfile() over getData() to make the code self-explanatory.

  • Clarity Over Cleverness: Opt for explicit and straightforward code constructs rather than implicit or overly clever ones. For instance, use clear type conversions and named constants instead of magic numbers or implicit casts. This improves readability and avoids confusion.

  • Maintainability: Keep code structure simple and organized. Write code in a way that reduces cognitive load on the reader – e.g. clear logic flow and consistent style. Clean, readable code is easier to debug and prevents subtle bugs that can arise from unclear operations.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

full-stack-development

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

code-refactoring

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

ai-assisted-development

No summary provided by upstream source.

Repository SourceNeeds Review