kotlin-types-value-class

kotlin-types-value-class is a skill for Claude Code, Codex from ashtanko/compose-android-template. It costs 32 tokens per session (1,276 once invoked), scanned A, original, MIT.

A guide to choosing between Kotlin value classes, data classes, type aliases, and primitive types. Kotlin is a programming language; a value class gives a single value a distinct domain type, while a data class groups fields.

In plain words
What is it for?
Use it when reviewing types such as identifiers, email addresses, percentages, or other single-field wrappers, especially in UI state or performance-sensitive code.
Why use it?
It helps represent domain concepts clearly without using a multi-field class for a one-value wrapper. It also prompts checks for equality, serialization, Java interoperability, boxing, and Compose stability.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ashtanko/compose-android-template/kotlin-types-value-class
Any agent
npx skills add ashtanko/compose-android-template --skill kotlin-types-value-class
Clone the repo
git clone --depth 1 https://github.com/ashtanko/compose-android-template

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kotlin-types-value-class

README.md
[![agentmods](https://agentmods.dev/badge/skills/ashtanko/compose-android-template/kotlin-types-value-class.svg)](https://agentmods.dev/skills/ashtanko/compose-android-template/kotlin-types-value-class)
Your own site
<a href="https://agentmods.dev/skills/ashtanko/compose-android-template/kotlin-types-value-class"><img src="https://agentmods.dev/badge/skills/ashtanko/compose-android-template/kotlin-types-value-class.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,276 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00032 $0.01276
Opus 5 $0.00016 $0.00638
Sonnet 5 $0.00006 $0.00255
Haiku 4.5 $0.00003 $0.00128

Measured 5d ago against content hash 24a3c283327e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

kotlin-types-value-class scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/kotlin-types-value-class/SKILL.md · 119 lines

How it starts

The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kotlin value class vs data class

Core principle

Prefer @JvmInline value class for single-field types that carry domain meaning. Data classes are for aggregating multiple fields.

Review procedure

  1. Find single-property wrappers, primitive-heavy APIs, and @Immutable wrappers in UI state.
  2. Decide whether the single value is a real domain distinction. If not, keep the primitive or use a typealias.
  3. Check whether replacing the type changes equality, serialization, Java interop, or hot-path boxing.
  4. Convert only when the domain meaning is clear and the contract changes are acceptable.
  5. Re-run the affected compiler/tests; for Compose performance work, re-check compiler reports or recomposition evidence.

Decision flow

Situation Prefer
Single field + domain-meaningful (UserId, EmailAddress, Percentage) @JvmInline value class
Single field + no domain meaning (just grouping) Type alias or keep the primitive
Multiple fields Data class
Needs custom equals/hashCode beyond the wrapped value Data class (value classes delegate to the underlying type)
Used as a generic type argument or nullable in a proven hot path Data class or primitive
// GOOD: domain-meaningful single field
@JvmInline value class UserId(val value: String)
@JvmInline value class EmailAddress(val value: String)
@JvmInline value class Percentage(val value: Float)

// BAD: data class wrapping a single domain field
data class UserId(val value: String)

// BAD: value class with no domain meaning
@JvmInline value class Wrapper(val value: String) // just use the String, or a type alias

// BAD: value class needing custom equality
@JvmInline value class CaseInsensitiveString(val value: String)
// value class equals delegates to String equals, which IS case-sensitive
// Use a data class if you need different equality semantics

Compose stability procedure

When a Compose report points at a single-field wrapper:

  1. Confirm the underlying type is stable (String, primitives, or another stable type).
  2. Prefer a value class over @Immutable on a wrapper whose only job is type distinction.
  3. Do not change public serialization/API contracts just to silence a report.

Read the full file on GitHub · 119 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 119 lines · 32 tokens per session scan A 24a3c283327e

Subscribe to this mod's changes

kotlin-types-value-class is a skill published in the GitHub repository ashtanko/compose-android-template (10 stars, last pushed yesterday), licensed MIT. It adds 32 tokens to every session and 1,276 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

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.

chrisbanes/skills · 64 tokens

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.

chrisbanes/skills · 41 tokens

kotlin-control-flow

Use when writing or reviewing Kotlin branching and control flow: when expressions, guard conditions, sealed type exhaustiveness, smart casts, nullable branching, early returns, or replacing complex if/else chains.

chrisbanes/skills · 44 tokens

using-chrisbanes-skills

Use when debugging, benchmarking, or profiling leads into Kotlin or Jetpack Compose source before the cause is known, or when one task spans multiple Kotlin or Compose concerns, especially plain Kotlin Flow or navigation delivery plus sealed branching.

chrisbanes/skills · 52 tokens

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.

chrisbanes/skills · 46 tokens

kotlin-concurrency-and-flow

Use when writing or reviewing Kotlin coroutine scope ownership, raw Thread or Executor work, init launches, non-suspending launch APIs, runBlocking, cancellation, StateFlow, SharedFlow, Channel, stateIn, SharingStarted, state updates, or one-shot events.

chrisbanes/skills · 60 tokens