kotlin-patterns
Installation
SKILL.md
Kotlin Patterns for Backend Services
Versions for Spring Boot, Kotlin, Jackson 3, etc. — see the
kotlin-spring-bootskill. Always defer to that skill's version table; do not encode versions inline here.
Entity Pattern
data class EntityName(
val id: UUID,
val name: String,
val createdAt: Instant,
val updatedAt: Instant?
)