compose-core

A set of coding rules for building Android apps with Kotlin and Jetpack Compose, Android’s newer way to create screens in code. It covers screen design, navigation, app state, dependency setup, and project versions.

In plain words
What is it for?
Use it when creating or updating Android screens, navigation, themes, and project build files with Kotlin 2.x and Compose.
Why use it?
It helps prevent outdated Android examples from being used, such as XML layouts, Material 2, or a separate Compose compiler setup. This keeps generated code aligned with current Kotlin and Compose practices.

Cursor rule

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 rules/roninforge/roninforge-kotlin-compose/compose-core
Clone the repo
git clone --depth 1 https://github.com/RoninForge/roninforge-kotlin-compose
Per session 2,288 This file is loaded in full into every session.
When invoked 2,288 The same file — it is already loaded in full.
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 $0.02288 $0.02288
Opus 5 $0.01144 $0.01144
Sonnet 5 $0.00458 $0.00458
Haiku 4.5 $0.00229 $0.00229

Measured 2d ago against content hash ecabe7981861, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

compose-core 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 2d 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.

rules/compose-core.mdc · 291 lines

How it starts

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

Modern Android: Kotlin 2.x + Jetpack Compose

You are writing Android UI with Kotlin 2.x and Jetpack Compose (Material 3, Compose BOM 2025+). Your training data likely contains View-system / XML / Material 2 / LiveData patterns. Follow these rules.

Compose Compiler is a Kotlin plugin (Kotlin 2.0+)

The old composeOptions.kotlinCompilerExtensionVersion block is dead. Apply the Kotlin Compose plugin instead.

// build.gradle.kts (module)
plugins {
    alias(libs.plugins.android.application)
    alias(libs.plugins.kotlin.android)
    alias(libs.plugins.kotlin.compose)      // NEW - replaces composeOptions block
    alias(libs.plugins.kotlin.serialization)
    alias(libs.plugins.ksp)
    alias(libs.plugins.hilt)
}

android {
    compileSdk = 36
    defaultConfig { minSdk = 24; targetSdk = 36 }
    buildFeatures { compose = true }
}

Compose Compiler now ships with Kotlin. No version pinning the extension separately.

Material 3, not Material 2

// CORRECT
import androidx.compose.material3.Button
import androidx.compose.material3.Text
import androidx.compose.material3.MaterialTheme

// WRONG
import androidx.compose.material.Button
import androidx.compose.material.Text

The package is androidx.compose.material3 (with the 3). The androidx.compose.material package is the older Material 2 surface - mixing them produces visual and behavioural inconsistency.

State hoisting + unidirectional data flow

State flows down (UiState), events flow up ((Intent) -> Unit). Stateful composables wrap stateless ones.

@Composable
fun ProfileRoute(vm: ProfileViewModel = hiltViewModel()) {
    val state by vm.state.collectAsStateWithLifecycle()
    ProfileScreen(state, vm::onIntent)
}

@Composable
fun ProfileScreen(state: ProfileUiState, onIntent: (ProfileIntent) -> Unit) {
    when (state) {
        ProfileUiState.Loading -> CircularProgressIndicator()
        is ProfileUiState.Success -> Text(state.user.name)
        is ProfileUiState.Error -> Text(state.message, color = MaterialTheme.colorScheme.error)
    }
}

Read the full file on GitHub · 291 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. 2d ago First seen · 291 lines · 2,288 tokens per session scan A ecabe7981861

Subscribe to this mod's changes

compose-core is a cursor rule published in the GitHub repository RoninForge/roninforge-kotlin-compose (1 stars, last pushed 2mo ago), licensed MIT. It adds 2,288 tokens to every session, about $0.0114 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.