From mobile-engineering
Build native Android the platform way: state-driven Jetpack Compose (state hoisting, remember, list keys), coroutines/Flow with lifecycle-scoped structured concurrency, Keystore/EncryptedSharedPreferences, WorkManager background respecting Doze, and Material + accessibility.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mobile-engineering:android-craftThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
UI = f(state). Hoist state, `remember` correctly, **key** lists. Recomposition loops = unstable state / missing keys.
UI = f(state). Hoist state, remember correctly, key lists. Recomposition loops = unstable state / missing keys.
Lifecycle-scoped (viewModelScope), Flow/StateFlow, right dispatcher, cancel with scope. No leaked coroutines.
Keystore / EncryptedSharedPreferences (never plain prefs). WorkManager for background (respects Doze).
Lifecycle-aware components, process-death handling, Material + TalkBack + predictive back.
npx claudepluginhub mcorbett51090/ravenclaude --plugin mobile-engineeringGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.