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 skills add and3r817/dot-claude-plugins --skill android-kotlin-composegit clone --depth 1 https://github.com/and3r817/dot-claude-pluginsWrote 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/skills/and3r817/dot-claude-plugins/android-kotlin-compose)<a href="https://agentmods.dev/skills/and3r817/dot-claude-plugins/android-kotlin-compose"><img src="https://agentmods.dev/badge/skills/and3r817/dot-claude-plugins/android-kotlin-compose.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.1 | $0.00084 | $0.03440 |
| Opus 5 | $0.00042 | $0.01720 |
| Sonnet 5 | $0.00017 | $0.00688 |
| Haiku 4.5 | $0.00008 | $0.00344 |
Grade A, and why
android-kotlin-compose 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 8d 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 — 580 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Android Kotlin Compose
Expert guidance for Android development using Kotlin and Jetpack Compose with modern architecture patterns.
When to Use This Skill
Invoke this skill when:
- Building Android UIs with Jetpack Compose
- Implementing MVVM architecture with ViewModels and StateFlow
- Managing state in Compose applications (remember, State hoisting)
- Integrating Jetpack libraries (Navigation, Room, Hilt, ViewModel, WorkManager)
- Designing Material3 interfaces and theming
- User explicitly mentions "Compose", "Kotlin Android", "Jetpack", or related libraries
Core Principles
- Compose-First UI — Declarative UI with composable functions
- Unidirectional Data Flow — State flows down, events flow up
- Single Source of Truth — ViewModel owns UI state
- Separation of Concerns — UI layer decoupled from data layer
Quick Reference
Project Structure (Recommended)
app/src/main/java/com/example/app/
├── di/ # Hilt modules
│ └── AppModule.kt
├── data/
│ ├── local/ # Room database
│ │ ├── dao/
│ │ ├── entity/
│ │ └── AppDatabase.kt
│ ├── remote/ # Network layer
│ │ ├── api/
│ │ └── dto/
│ └── repository/ # Repository implementations
├── domain/
│ ├── model/ # Domain models
│ ├── repository/ # Repository interfaces
│ └── usecase/ # Business logic
├── ui/
│ ├── components/ # Reusable composables
│ ├── theme/ # Material3 theming
│ │ ├── Color.kt
│ │ ├── Type.kt
│ │ └── Theme.kt
│ ├── navigation/ # Navigation graph
│ └── screens/ # Feature screens
│ └── feature/
│ ├── FeatureScreen.kt
│ └── FeatureViewModel.kt
└── App.kt # Application class
UI Development Patterns
Screen Pattern with ViewModel
// FeatureViewModel.kt
@HiltViewModel
class FeatureViewModel @Inject constructor(
private val repository: FeatureRepository
) : ViewModel() {
private val _uiState = MutableStateFlow(FeatureUiState())
val uiState: StateFlow<FeatureUiState> = _uiState.asStateFlow()
fun onAction(action: FeatureAction) {
when (action) {
is FeatureAction.LoadData -> loadData()
is FeatureAction.UpdateItem -> updateItem(action.item)
}
}
private fun loadData() {
viewModelScope.launch {
_uiState.update { it.copy(isLoading = true) }
repository.getData()
.onSuccess { data ->
_uiState.update { it.copy(data = data, isLoading = false) }
}
.onFailure { error ->
_uiState.update { it.copy(error = error.message, isLoading = false) }
}
}
}
}
// FeatureUiState.kt
data class FeatureUiState(
val data: List<Item> = emptyList(),
val isLoading: Boolean = false,
val error: String? = null
)
sealed interface FeatureAction {
data object LoadData : FeatureAction
data class UpdateItem(val item: Item) : FeatureAction
}
// FeatureScreen.kt
@Composable
fun FeatureScreen(
viewModel: FeatureViewModel = hiltViewModel(),
onNavigateToDetail: (String) -> Unit
) {
val uiState by viewModel.uiState.collectAsStateWithLifecycle()
FeatureContent(
uiState = uiState,
onAction = viewModel::onAction,
onNavigateToDetail = onNavigateToDetail
)
}
@Composable
private fun FeatureContent(
uiState: FeatureUiState,
onAction: (FeatureAction) -> Unit,
onNavigateToDetail: (String) -> Unit
) {
// Stateless composable - easy to preview and test
when {
uiState.isLoading -> LoadingIndicator()
uiState.error != null -> ErrorMessage(uiState.error)
else -> ItemList(
items = uiState.data,
onItemClick = { onNavigateToDetail(it.id) }
)
}
}
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 8d ago First seen · 580 lines · 84 tokens per session scan A f118e19355d6
android-kotlin-compose is a skill published in the GitHub repository and3r817/dot-claude-plugins (2 stars, last pushed 8mo ago), licensed MIT. It adds 84 tokens to every session and 3,440 once invoked, about $0.0004 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 skills, from other repositories
swiftui-expert
This skill should be used when SwiftUI work requires judgment about Observation and state ownership, view identity or lifecycle, navigation, app-target concurrency, persistence, Apple-platform behavior, accessibility, performance, or architecture. Trigger on "review this SwiftUI screen", "why isn't this view…
swiftui-expert
This skill should be used when the user is building, reviewing, or debugging SwiftUI views and apps. Detects iOS and Swift version from the project. Covers creating views, state management with @Observable, NavigationStack routing, animations, accessibility, performance optimization, Liquid Glass adoption, design…
orchestrator
FULLY AUTONOMOUS Flutter development pipeline orchestrator. Smart routing: PM analyzes -> creates targeted tasks -> Orchestrator executes only needed agents. Supports Asana task URLs. Includes QE verification via Maestro E2E tests. 7-phase flow: PM -> TodoWrite -> Execute -> Review -> Tests -> QE E2E -> Close.
flutter-guide
Flutter/BLoC Clean Architecture patterns, review checklists, and testing guides. Background knowledge for flutter-dev, flutter-reviewer, flutter-tester. Not user-invocable.
maestro-flutter
Maestro E2E testing knowledge for Flutter apps. YAML-based flows, TestKeys, visual regression, Maestro MCP integration. Background knowledge for QE E2E testing phase.
build-android-binary
Compile a PAM control's Android Kotlin module into the runtime-loadable DEX for a .ppmplugin. Creates a staged Gradle build with the pinned wrapper and react-android compile dependency, verifies manifest/module/package alignment and runtime-loading constraints, builds the release AAR, then runs d8 --min-api 24. Writes…