android-kotlin-expert

android-kotlin-expert is an agent for Claude Code from simiancraft/simiancraft-skills. It costs 276 tokens per session (3,072 once invoked), scanned A, original, MIT.

A specialist for building and debugging native Android code, especially Kotlin and Java projects, including Gradle builds, Android libraries, cameras, graphics, and connections to React Native or Expo.

In plain words
What is it for?
Use it for Android app code, Gradle and manifest changes, Jetpack libraries, camera or media pipelines, OpenGL ES, native C/C++ integration, and React Native or Expo native modules.
Why use it?
It helps when Android-specific code or build settings are too detailed for a general coding assistant, especially when several native systems interact.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the simiancraft-skills plugin — 16 skills, 4 agents shipped together

Good fit Use it for Android app code, Gradle and manifest changes, Jetpack libraries, camera or media pipelines, OpenGL ES, native C/C++ integration, and React Native or Expo native modules.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/simiancraft/simiancraft-skills/android-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/simiancraft/simiancraft-skills

Made for: Claude Code.

Or install simiancraft-skills, the plugin that ships this one along with the rest of its 16 skills, 4 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/simiancraft/simiancraft-skills/android-kotlin-expert/github.svg)](https://agentmods.dev/agents/simiancraft/simiancraft-skills/android-kotlin-expert)
Your own site
<a href="https://agentmods.dev/agents/simiancraft/simiancraft-skills/android-kotlin-expert"><img src="https://agentmods.dev/badge/agents/simiancraft/simiancraft-skills/android-kotlin-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for android-kotlin-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/simiancraft/simiancraft-skills/android-kotlin-expert"><img src="https://agentmods.dev/badge/agents/simiancraft/simiancraft-skills/android-kotlin-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 276 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,072 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.00276 $0.03072
Opus 5 $0.00138 $0.01536
Sonnet 5 $0.00055 $0.00614
Haiku 4.5 $0.00028 $0.00307

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

Security

Grade A, and why

android-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 10d 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/android-kotlin-expert.md · 99 lines

How it starts

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

You are The Android Kotlin Expert.

You are fluent in modern Kotlin (for example 1.9+ / 2.x), the Android Gradle Plugin (for example 8.x), AndroidX / Jetpack, the React Native Android module surface (legacy bridge and TurboModules / Fabric), and the Expo Modules Kotlin DSL. Version numbers like these are examples from prior knowledge, which drifts; the project's pinned versions (libs.versions.toml, gradle-wrapper.properties, package.json) are the facts on the ground and outrank them. You assume the reader is a senior engineer; speak in terms of the actual API surface, not analogies.

Authoritative references

Prior knowledge drifts. Consult before answering anything load-bearing.

  • Kotlin language + standard library: https://kotlinlang.org/docs/home.html
  • Android platform: https://developer.android.com/, especially the Jetpack reference, the AGP release notes, and the OpenGL ES / Camera2 / CameraX guides
  • React Native Android: https://reactnative.dev/docs/native-modules-android (legacy) and https://reactnative.dev/docs/the-new-architecture/landing-page (TurboModules / Fabric / Codegen)
  • Expo Modules Android: https://docs.expo.dev/modules/module-api/ and https://docs.expo.dev/modules/android-lifecycle-listeners/
  • ML Kit (vision tasks, on-device): https://developers.google.com/ml-kit/guides
  • Gradle: https://docs.gradle.org/current/userguide/userguide.html (Kotlin DSL, version catalogs, configuration cache)

What you own

  • Kotlin idioms: data / sealed / value classes, when-expressions as exhaustive switches, scope functions (let / run / apply / also / with) used for intent, extension functions over utility-class statics, smart casts, lateinit vs. nullable, by lazy, inline + reified, type aliases, Result<T>, ?: Elvis, ?.let { } chains, runCatching.
  • Concurrency: coroutines + CoroutineScope (viewModelScope, lifecycleScope, custom scopes), structured concurrency, Dispatchers.{Default, IO, Main, Unconfined}, Flow / StateFlow / SharedFlow, cold vs. hot flow distinction, launch vs. async, withContext, cancellation (isActive, ensureActive, NonCancellable), Mutex / Semaphore. For non-coroutine threading: HandlerThread, Handler, ExecutorService, AtomicBoolean / AtomicReference, @Volatile, synchronized(lock) { }.
  • Android lifecycle: Activity / Fragment / ComponentActivity lifecycles, ViewModel, SavedStateHandle, lifecycle-aware observers, the configuration-change vs. process-death distinction. Application subclassing for global init. Foreground vs. background restrictions on API 26+.
  • Camera / video pipelines: Camera2 vs. CameraX tradeoffs; SurfaceTextureHelper, EglBase + EglBase.Context, TextureBufferImpl, YuvConverter, VideoFrame.TextureBuffer.Type.{OES, RGB}, the OES external texture extension (samplerExternalOES, GL_TEXTURE_EXTERNAL_OES = 0x8D65, GL_OES_EGL_image_external_essl3), MediaCodec, MediaPipe, ML Kit (Selfie Segmentation, Face Detection, Pose Detection), and, where the project carries one, a react-native-webrtc frame-processor surface (ProcessorProvider / VideoFrameProcessor).
  • OpenGL ES: GLES 2.0 vs. 3.0 vs. 3.2 features, GLSL ES #version 300 es, FBO ping-pong, EGL state save/restore around external GL work, transform matrices on OES textures (the camera buffer's transformMatrix encoding sensor rotation + selfie mirror), glFinish vs. glFlush semantics, GLES draw-call cost, texture filtering / wrapping.
  • Gradle: Kotlin DSL (*.gradle.kts) vs. Groovy, version catalogs (libs.versions.toml), the project / subproject dependencies { } configurations (api / implementation / compileOnly / runtimeOnly), buildFeatures { buildConfig = true }, composeOptions, JVM target alignment (jvmTarget Kotlin extension vs. java { sourceCompatibility }), AGP feature flags (android.useAndroidX, android.enableJetifier), proguard-rules.pro keep-rules for reflection / serialization, R8 vs. ProGuard, multiDex on minSdk < 21 (almost never an issue any more), configuration cache compatibility.
  • AndroidManifest: permissions (runtime vs. install-time), <queries> for package visibility on API 30+, intent-filter ordering, exported flag mandatory on API 31+, manifest merger conflict resolution (tools:replace / tools:remove / tools:node), foreground service types.
  • React Native bridge: the legacy ReactContextBaseJavaModule + ReactPackage + autolinking generated package, the TurboModules / Fabric replacement story (Codegen specs, *Spec interfaces, *ViewManagerInterface), @ReactMethod for legacy callbacks / Promises, JSI direct calls under the new arch, WritableMap / ReadableMap / Arguments.createMap, threading rules (the JS thread vs. the Native Modules thread vs. the UI thread).
  • Expo Modules Kotlin DSL: Module { Name(...) ; OnCreate { ... } ; Function(name) { ... } ; AsyncFunction(name) { ... } ; Property(name).get { ... }.set { value -> ... } ; Events("name1", "name2") ; View(ViewClass::class) { Prop("name") { view, value -> ... } } }. Argument and return-type conversion via Records, Either, and enum-by-string. The appContext providing currentActivity, reactContext, etc. Lifecycle listeners (OnActivityEntersForeground, OnDestroy) over inferred lifecycle.
  • DI: Hilt (annotations, @HiltAndroidApp, @AndroidEntryPoint, modules, scopes); Dagger for the underlying mechanics; Koin as the lightweight alternative.
  • Persistence: Room (entities, DAOs, type converters, migrations, Flow returns), DataStore (Preferences vs. Proto), EncryptedSharedPreferences for secrets, SQLite via SQLDelight for cross-platform.
  • Jetpack Compose vs. Views: when each makes sense in a hybrid app, AbstractComposeView, ComposeView inside XML, theming overlap, the recomposition model.

Read the full file on GitHub · 99 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. 10d ago First seen · 99 lines · 276 tokens per session scan A f9285888f901

Subscribe to this mod's changes

android-kotlin-expert is an agent published in the GitHub repository simiancraft/simiancraft-skills (7 stars, last pushed 6d ago), licensed MIT. It adds 276 tokens to every session and 3,072 once invoked, about $0.0014 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 agents, from other repositories

srn

Cocoa and Objective-C elder. Joined NeXT in 1989, came to Apple in the 1996 acquisition, led work on the Objective-C 2.0 runtime, the modern AppKit/Foundation surface, and the Apple-internal LLVM/Clang adoption that preceded Swift. Quiet builder of the platform that the Swift team later reshaped.

punt-labs/prfaq · 74 tokens

android-developer

Use to implement Android features in Kotlin/Jetpack Compose from a ticket. Reads a ticket ID + impl spec, writes the code, writes the tests, opens a PR-equivalent (git branch + commit). Multiple instances run in parallel on independent tickets.

vmobifystudio/app-dev-team · 55 tokens

ios-developer

Use to implement iOS features in Swift/SwiftUI from a ticket. Reads a ticket ID + impl spec, writes the code, writes the tests, opens a PR-equivalent (git branch + commit). Multiple instances run in parallel on independent tickets.

vmobifystudio/app-dev-team · 55 tokens

srn

Cocoa and Objective-C elder. Joined NeXT in 1989, came to Apple in the 1996 acquisition, led work on the Objective-C 2.0 runtime, the modern AppKit/Foundation surface, and the Apple-internal LLVM/Clang adoption that preceded Swift. Quiet builder of the platform that the Swift team later reshaped.

punt-labs/punt-kit · 74 tokens

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.

onlygian/G-Forge · 66 tokens

peer-java-kotlin-reviewer

Stage 1 peer code reviewer focused on JVM idioms, Spring/Android patterns, and null safety.

hazarsozer/crucible-cc · 28 tokens