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.
git clone --depth 1 https://github.com/vibeeval/vibecosystemWrote 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.
[](https://agentmods.dev/agents/vibeeval/vibecosystem/kotlin-expert)<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>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.
| Model | Per session | Once 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 |
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.
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
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.
- 3d ago First seen · 191 lines · 26 tokens per session scan A 2ece353b33de
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.
Other agents, from other repositories
kotlin-expert
Kotlin Multiplatform, Compose Multiplatform, coroutines, Ktor, and JVM ecosystem specialist. Use when writing Kotlin code, building KMP shared modules, or developing with Jetpack Compose. Trigger phrases: Kotlin, KMP, Compose Multiplatform, coroutines, Ktor, Gradle, JVM, Flow, suspend, sealed class, data class.
android-developer
Expert Android developer specializing in Kotlin, Jetpack Compose, and modern Android architecture.
ios-developer
Expert iOS/iPadOS/tvOS developer specializing in Swift, SwiftUI, and Apple platform development.
kotlin-android-architect
Android + Kotlin + Jetpack Compose + MVVM architecture specialist. Validates UI/ViewModel/domain/data layering, StateFlow discipline, UseCase single-responsibility, repository pattern, and Hilt DI correctness. Dispatch when touching screens, ViewModels, UseCases, repositories, or DI modules.
macos-developer
Expert macOS native developer for AppKit, Catalyst, and macOS-specific features.
mb-android
Android specialist for memory-bank /mb work stages. Jetpack Compose, Kotlin coroutines, Hilt/DI, Room, Material3. Falls back to mb-developer when stage is generic.