スキル一覧に戻る
baz-scm

code-readability

by baz-scm

code-readabilityは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。

90🍴 10📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: code-readability description: Writing clean, understandable, and self-documenting code that is easy to review and maintain over time. version: '1.0'

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.

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です