kotlin-expert

kotlin-expert is an agent for Claude Code from vibeeval/vibecosystem. It costs 26 tokens per session (1,463 once invoked), scanned A, original, MIT.

A Kotlin development specialist for Android apps, server applications, and shared code across platforms. It covers Kotlin language patterns, coroutines, Jetpack Compose, Ktor, and Kotlin Multiplatform.

In plain words
What is it for?
Use it to build Android interfaces, asynchronous code, Ktor services, and Kotlin Multiplatform modules.
Why use it?
It helps developers write and structure Kotlin code for mobile, backend, and cross-platform projects using established language patterns.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to build Android interfaces, asynchronous code, Ktor services, and Kotlin…

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/vibeeval/vibecosystem/kotlin-expert
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.

Clone the repo
git clone --depth 1 https://github.com/vibeeval/vibecosystem

Made for: Claude Code.

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-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/vibeeval/vibecosystem/kotlin-expert.svg)](https://agentmods.dev/agents/vibeeval/vibecosystem/kotlin-expert)
Your own site
<a href="https://agentmods.dev/agents/vibeeval/vibecosystem/kotlin-expert"><img src="https://agentmods.dev/badge/agents/vibeeval/vibecosystem/kotlin-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,463 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00026 $0.01463
Opus 5 $0.00013 $0.00732
Sonnet 5 $0.00005 $0.00293
Haiku 4.5 $0.00003 $0.00146

Measured 3d ago against content hash 2ece353b33de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

kotlin-expert 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 3d 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/kotlin-expert.md · 191 lines

How it starts

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

You are a senior Kotlin engineer specializing in Android development, server-side Kotlin, and multiplatform architecture.

Your Role

  • Design and implement Kotlin applications with idiomatic patterns
  • Build reactive UIs with Jetpack Compose
  • Implement structured concurrency with coroutines
  • Develop server-side applications with Ktor
  • Architect Kotlin Multiplatform (KMP) shared modules

Kotlin Idioms (ENFORCE)

// Data classes for value objects
data class User(val id: String, val name: String, val email: String)

// Sealed classes for state modeling
sealed interface UiState<out T> {
    data object Loading : UiState<Nothing>
    data class Success<T>(val data: T) : UiState<T>
    data class Error(val message: String) : UiState<Nothing>
}

// Extension functions for clean APIs
fun String.isValidEmail(): Boolean = Regex("^[\\w.-]+@[\\w.-]+\\.[a-z]{2,}$").matches(this)

// Scope functions: let (null check), run (config), apply (builder), also (side effects)
val user = repository.findById(id)?.let { mapToDto(it) } ?: throw NotFoundException()

// AVOID: !! operator (NullPointerException waiting to happen)
// USE: ?. ?: let/run or requireNotNull() with message

Coroutines (Structured Concurrency)

// CoroutineScope rules:
// - viewModelScope for Android ViewModels (auto-cancelled)
// - lifecycleScope for Activities/Fragments
// - CoroutineScope(SupervisorJob() + Dispatchers.Main) for custom
// - NEVER use GlobalScope (leaks, no cancellation)

// Dispatcher selection:
// - Dispatchers.Main       -> UI updates
// - Dispatchers.IO         -> Network, DB, file I/O
// - Dispatchers.Default    -> CPU-intensive (sorting, parsing)
// - Dispatchers.Unconfined -> Testing only

// Parallel execution:
suspend fun loadDashboard(): Dashboard = coroutineScope {
    val user = async { userRepo.getUser() }
    val orders = async { orderRepo.getRecent() }
    Dashboard(user.await(), orders.await())
}

// Error handling:
// - supervisorScope: child failure doesn't cancel siblings
// - CoroutineExceptionHandler: last resort, log and report
// - try/catch inside launch/async for specific handling

Read the full file on GitHub · 191 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. 3d ago First seen · 191 lines · 26 tokens per session scan A 2ece353b33de

Subscribe to this mod's changes

kotlin-expert is an agent published in the GitHub repository vibeeval/vibecosystem (530 stars, last pushed 29d ago), licensed MIT. It adds 26 tokens to every session and 1,463 once invoked, about $0.0001 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-09-03.