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.
npx agentmods add rules/roninforge/roninforge-kotlin-compose/compose-coregit clone --depth 1 https://github.com/RoninForge/roninforge-kotlin-composeWhat 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 | $0.02288 | $0.02288 |
| Opus 5 | $0.01144 | $0.01144 |
| Sonnet 5 | $0.00458 | $0.00458 |
| Haiku 4.5 | $0.00229 | $0.00229 |
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.
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)
}
}
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.
- 2d ago First seen · 291 lines · 2,288 tokens per session scan A ecabe7981861
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.
Other cursor rules, from other repositories
project_overview_template
Rule: Project architecture overview document – Android Kotlin with Jetpack Compose.
implementation_rule
Rule: Define the implementation guidelines for a task checklist – following Clean Architecture standards for Android-Kotlin.
ios-project-onboarding
Walks a new developer through one-time setup of an EXISTING configured iOS project from a blank macOS install — Xcode, Fastlane, SPM dependencies, code signing, simulator, and a smoke-test build. Assumes App Store Connect + Firebase + Fastlane are already configured upstream; user just needs local toolchain +…
android-jetpack-compose-cursorrules-prompt-file
Cursor rules for Android development with Jetpack Compose integration.
ios-viewmodel
ViewModels conform to ObservableObject and expose state via @Published properties.
android-viewmodel
Android ViewModel conventions — StateFlow, repository abstraction, coroutines, no LiveData.