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/nphausg/ai-agent-skills/android_general_rulesgit clone --depth 1 https://github.com/nphausg/ai-agent-skillsWhat 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.00363 |
| Opus 5 | $0.00000 | $0.00181 |
| Sonnet 5 | $0.00000 | $0.00073 |
| Haiku 4.5 | $0.00000 | $0.00036 |
Grade A, and why
android_general_rules 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.
What it actually says
For every Kotlin Android code you generate or refactor:
-
Architecture:
- Follow MVVM pattern strictly.
- Business logic must go into
ViewModel, not inView(Activity/Fragment/Composable). - Views should only observe
StateFlow/LiveDatafrom ViewModel.
-
Kotlin Best Practices:
- Use
StateFlowinstead ofLiveDataunless explicitly required. - Use Kotlin Coroutines (structured concurrency,
viewModelScope,SupervisorJob). - Prefer
valovervarwhere possible. - Use extension functions and sealed classes when appropriate.
- No memory leaks (avoid context leaks in ViewModel).
- Use Dependency Injection (Hilt) if necessary.
- Use
-
Android Performance:
- Avoid heavy work on the main thread.
- Use
Dispatchers.IOor background coroutines for I/O, disk, and network tasks. - Use
lazyinitialization where suitable. - For RecyclerView/List: use
ListAdapter+DiffUtil. - Avoid unnecessary recomposition in Jetpack Compose.
- Apply LRU caching for repeated data/images if needed.
-
Testing:
- Generated ViewModel and Repository code must be testable (no static singletons).
- Show sample unit test if introducing new logic.
-
Code Quality:
- Minimize code duplication.
- Clear function separation (Single Responsibility Principle).
- Provide brief inline comments for complex sections.
-
Output Requirement:
- Provide full code samples (including imports) unless specified otherwise.
- Brief explanation of key design decisions made.
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 · 39 lines · 0 tokens per session scan A 6c93420e0724
android_general_rules is a cursor rule published in the GitHub repository nphausg/ai-agent-skills (2 stars, last pushed 1mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 363 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-08-31.
Other cursor rules, from other repositories
swift-observable
Migration guide for updating SwiftUI apps from ObservableObject to the @Observable macro.
modern-swift
Write idiomatic SwiftUI code following Apple's latest architectural recommendations and best practices.
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.
everything-mobile
Android, iOS, and Kotlin Multiplatform engineering guidance.