android-compose-state-effects
Manage Compose state, remember APIs, side effects, snapshots, and lifecycle-aware collection without leaks or loops.
Works with
--- name: android-compose-state-effects description: Manage Compose state, remember APIs, side effects, snapshots, and lifecycle-aware collection without leaks or loops. license: MIT --- # Android Compose State Effects ## When To Use - Use this skill when the request is about: compose side effect problem, remember vs derivedstateof, collect flow in compose screen. - Primary outcome: Manage Compose state, remember APIs, side effects, snapshots, and lifecycle-aware collection without leaks or loops. - Reach for this skill when the problem lives inside a composable or Compose runtime primitive, not when redesigning app-wide state holders or reducers. - This skill is about runtime primitives inside Compose. If the question is reducer design, screen contracts, or ViewModel ownership, hand off to `android-state-management`. - Handoff skills when the scope expands: - `android-state-management` - `android-compose-performance` ## Workflow 1. Classify the issue first: local remembered state, saved state, derived state, lifecycle-aware collection, or one-off side effects. 2. Pick the narrowest Compose primitive that matches that problem: `remember`, `rememberSaveable`, `derivedStateOf`, `produceState`, `collectAsStateWithLifecycle`, `LaunchedEffect`, `DisposableEffect`, `SideEffect`, or `snapshotFlow`. 3. Keep durable UI state separate from transient events such as snackbars, navigation, and analytics. 4. Stabilize effect keys and callback references so recomposition does not relaunch work or capture stale lambdas. 5. Hand off broader state-holder design to `android-state-management` only after the Compose-runtime issue is isolated. ## Guardrails - Prefer lifecycle-aware collection such as `collectAsStateWithLifecycle` for UI-facing flows. - Use `rememberUpdatedState` when an effect should see the latest lambda or value without restarting. - Keep one-shot effects out of immutable screen state when they are really events. - Do not launch coroutines or trigger navigation directly from the composable body outside the appropriate effect APIs. ## Anti-Patterns - Using `LaunchedEffect(Unit)` or unstable keys when the effect should restart on real dependency changes. - Collecting flows in multiple places and wondering why events duplicate. - Storing transient events as persistent booleans in screen state and then manually resetting them. - Using `derivedStateOf` or `snapshotFlow` when plain state reads would be simpler and cheaper. ## Review Focus - Which runtime primitive owns this behavior? - Are recomposition and effect restarts intentional? - Are state and event channels modeled separately? - Is collection lifecycle-aware and cancellation-safe? ## Examples ### Happy path - Scenario: Collect task state and snackbar events in Compose without duplicate launches. - Command: `cd examples/orbittasks-compose && ./gradlew :app:testDebugUnitTest` ### Edge case - Scenario: Handle recomposition when permission state and sync state change together. - Command: `cd examples/orbittasks-compose && ./gradlew :app:assembleDebug` ### Failure recovery - Scenario: Disambiguate state/effects work from generic Compose layout or state-management requests. - Command: `python3 scripts/eval_triggers.py --skill android-compose-state-effects` ## Done Checklist - The chosen Compose primitive matches the actual runtime problem. - Effects have stable keys and do not duplicate on recomposition. - State and events are separated clearly. - Broader app-state architecture work is handed off instead of mixed into the composable fix. ## Official References - [https://developer.android.com/develop/ui/compose/state](https://developer.android.com/develop/ui/compose/state) - [https://developer.android.com/develop/ui/compose/side-effects](https://developer.android.com/develop/ui/compose/side-effects) - [https://developer.android.com/reference/kotlin/androidx/lifecycle/compose/package-summary](https://developer.android.com/reference/kotlin/androidx/lifecycle/compose/package-summary) - [https://developer.android.com/topic/architecture/ui-layer/state-production](https://developer.android.com/topic/architecture/ui-layer/state-production)
More Mobile skills
animation-vocabulary
emilkowalski/skills
Reverse-lookup glossary that turns a vague description of a web animation or motion effect into its exact term ("the bouncy thing when a popover opens" → Pop in; "the iOS rubber-band scroll" → Rubber-banding). Use when the user asks "what's it called when…", or describes a motion effect without knowing its name and wants the right word to prompt an AI or designer with. For naming an effect, not designing or building one.
cross-border-ecommerce
nexscope-ai/ecommerce-skills
Cross-border e-commerce expansion advisor. Scores target markets on 8 weighted dimensions (market size, ecommerce penetration, competition, regulatory complexity, logistics infrastructure, payment ecosystem, cultural distance, IP protection), compares 5 fulfillment models with cost and transit data, provides country-by-country tax/duty compliance guides (EU VAT/IOSS, UK VAT, US sales tax, CA GST, AU GST, JP consumption tax), maps local payment preferences by market, and builds a phased expansion roadmap. No API key required.
developing-genkit-dart
firebase/agent-skills
Generates code and provides documentation for the Genkit Dart SDK. Use when the user asks to build AI agents in Dart, use Genkit flows, or integrate LLMs into Dart/Flutter applications.

