chrisbanes/skills

kotlin-api-design

Use when designing or reviewing Kotlin function ownership, member or extension functions, factories, single-field domain types, value classes, data classes, Kotlin Multiplatform expect/actual declarations, or platform service boundaries.

ソースを見る
リポジトリの原文

見出し、例、コード、表、リンク、参照画像を含む原文を表示しています。

Kotlin API design

Core principle

Place behavior, types, and platform seams where their meaning is clearest to callers; use the smallest public abstraction that preserves domain language and platform independence.

Procedure

  1. Name the domain concept, its owning type or module, and the callers that

need to depend on it.

  1. Choose function ownership before adding an extension, factory, helper, or

service layer.

  1. When reviewing a public mapping over a sealed result, name every

caller-visible outcome. Flag a catch-all else that hides a subtype and recommend explicit subtype branches so the contract stays exhaustive and preserves smart casts.

  1. Represent a single-field domain concept with the smallest type that preserves

its semantic and interop contract.

  1. Keep shared code semantic; put native SDK and platform details behind an

interface or a narrowly justified expect/actual boundary.

  1. Read the focused reference for the selected decision below.
  2. Finish when the public surface states domain intent, platform details remain

at leaves, and callers do not depend on convenience abstractions with no clear owner.

Topic router

SignalRead
Member vs top-level, extension, factory, service, or receiver choiceFunction ownership
Primitive obsession, one-field domain type, @JvmInline value class, data class, interop, or Compose stabilityValue classes
Source sets, platform services, native SDKs, files, sensors, permissions, Compose Multiplatform interop, or expect/actualMultiplatform boundaries
Branching, guard-condition shape, sealed-result mapping, or a catch-all elseKotlin control flow
同じリポジトリから

関連する Skills

すべての Skills
chrisbanes
コミュニティ

compose-ui-testing-patterns

Use when writing or reviewing Jetpack Compose UI tests, screenshot tests, previews, semantics assertions, fake image loading, keyboard input, focus assertions, interaction state (hover/pressed/focused), or tests for plain state-driven UI composables.

導入数
4
GitHub Stars
1047
更新日
9月21日
chrisbanes
コミュニティ

compose-animations

Use when writing or reviewing Jetpack Compose motion: visibility enter/exit, animating one property toward a target, color or size transitions, multiple properties from one state, switching composable content, or choosing between AnimatedVisibility, animateAsState, rememberTransition, AnimatedContent, and Crossfade.

導入数
3
GitHub Stars
1047
更新日
9月21日
chrisbanes
コミュニティ

compose-component-design

Use when designing or reviewing reusable Jetpack Compose component APIs with modifier parameters, root layout placement, caller-provided variable content, primitive content parameters, optional content, or boolean shape flags.

導入数
3
GitHub Stars
1047
更新日
9月21日
chrisbanes
コミュニティ

compose-focus-navigation

Use when writing or reviewing Jetpack Compose UI for TV, keyboard, desktop, accessibility focus, D-pad navigation, FocusRequester, focusProperties, key events, or initial focus behavior.

導入数
3
GitHub Stars
1047
更新日
9月21日