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/kensaurus/cursor-kenji/native-androidgit clone --depth 1 https://github.com/kensaurus/cursor-kenjiWrote 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/rules/kensaurus/cursor-kenji/native-android)<a href="https://agentmods.dev/rules/kensaurus/cursor-kenji/native-android"><img src="https://agentmods.dev/badge/rules/kensaurus/cursor-kenji/native-android.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 | $0.00000 | $0.00613 |
| Opus 5 | $0.00000 | $0.00307 |
| Sonnet 5 | $0.00000 | $0.00123 |
| Haiku 4.5 | $0.00000 | $0.00061 |
Grade A, and why
native-android 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 yesterday.
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 — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Native Android
Stack: Kotlin first, Java only when required by RN bridge or
legacy code.
Build: Gradle (Kotlin DSL where present).
Min SDK / target SDK / compile SDK: read android/build.gradle —
do NOT change without explicit instruction.
Adjust
android/to your repo's actual path (e.g.apps/mobile/android/).
Conventions
- Package matches what's already declared in
AndroidManifest.xmlandbuild.gradlenamespace. - Native modules for RN go under
android/app/src/main/java/<package>/modules/. - Each native module = one
*Module.kt(extendsReactContextBaseJavaModule) + one*Package.kt. - Register packages in
MainApplication.kt(or via the new RN auto-linking if applicable). - Async: Coroutines + Flow. Never
AsyncTask, never rawThread, never RxJava unless the project already uses it. - Logging:
android.util.Logwith tag = class name. Wrap verbose logs inBuildConfig.DEBUGchecks. - Strings:
android/app/src/main/res/values/strings.xml. No hardcoded user-facing text. - Permissions: declare in
AndroidManifest.xmlAND request at runtime for dangerous permissions (camera, mic, location, storage on older API levels, notifications on API 33+). - Compose (if used): follow
MaterialThemetokens, no rawColor()literals in screen code.
Build verification (REQUIRED after any change)
Run /android-build or directly:
cd android && ./gradlew :app:assembleDebug --console=plain
Parse the output. If BUILD FAILED, fix the first error and
re-run. Do not declare done without BUILD SUCCESSFUL.
If you hit OutOfMemoryError or metaspace errors, add to
android/gradle.properties:
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=512m
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true
What NOT to do
- Do not add a new native module if the JS-side library can do it.
- Do not edit
MainActivity.ktReactRootView wiring without explicit instruction. - Do not bump
compileSdk,targetSdk, AGP, or Gradle wrapper versions casually — these cascade. - Do not commit
local.properties,*.keystore, orgoogle-services.jsonif it's gitignored. - Do not edit auto-generated files under
android/app/build/.
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.
- yesterday First seen · 71 lines · 0 tokens per session scan A 1222eff59c70
native-android is a cursor rule published in the GitHub repository kensaurus/cursor-kenji (9 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 613 tokens. 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 cursor rules, from other repositories
04-kotlin
Cursor rule "04-kotlin" from orbitalsonic/AndroidPilot, covering kotlin rules, prefer, coroutines, null safety and naming.
kotlin-rules
You are a Senior Kotlin programmer with experience in the Android framework and a preference for clean programming and design patterns.
flutter-rules
You are an expert in Flutter, Dart, Riverpod, Freezed, Flutter Hooks, and Supabase.
swift-uikit-cursorrules-prompt-file
Cursor rules for Swift Uikit.
swiftui-guidelines-cursorrules-prompt-file
Cursor rules for SwiftUI development guidelines.
android-jetpack-compose-cursorrules-prompt-file
Cursor rules for Android development with Jetpack Compose integration.