kotlin-patterns

Installation
SKILL.md

Kotlin Patterns for Backend Services

Versions for Spring Boot, Kotlin, Jackson 3, etc. — see the kotlin-spring-boot skill. 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?
)

Service Pattern

Installs
9
GitHub Stars
3
First Seen
Mar 1, 2026
kotlin-patterns — andvl1/claude-plugin