kotlin-best-practices

Installation
SKILL.md

Kotlin Best Practices

Priority: P1 (HIGH)

Implementation Guidelines

  • Scope Functions:
  • apply: Object configuration (returns object).
  • also: Side effects / validation / logging (returns object).
  • let: Null checks (?.let) or mapping (returns result).
  • run: Object configuration and mapping (returns result).
  • with: Grouping multiple method calls on object (returns result).
  • Backing Properties: Use _state (private mutable, e.g., private val _state = MutableStateFlow(initial)) exposed as val state = _state.asStateFlow() (public read-only). Pattern: _prop private, prop public.
  • Collections: Expose List/Map (read-only) publicly; keep MutableList internal.
  • Error Handling: Use runCatching for simple error handling over try/catch blocks.
  • Visibility: Default to private or internal. Minimize public surface area.
  • Top-Level: Prefer top-level functions/constants over implementation-less object singletons.

Anti-Patterns

Installs
1
GitHub Stars
521
First Seen
Jun 18, 2026
kotlin-best-practices — hoangnguyen0403/agent-skills-standard