Skip to content
Skillv1.0.0

android-state-management

Model screen state, events, reducers, and side effects for Android UIs with predictable lifecycle-aware ownership.

by krutikjain(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from krutikjain/android-agent-skills (skills/android-state-management/SKILL.md). Install upstream with npx skills add krutikjain/android-agent-skills --skill android-state-management. Copyright stays with the author.

Android State Management

When To Use

  • Use this skill when the request is about: android ui state reducer, state management in compose or xml android, one-off events in android screen.
  • Primary outcome: Model screen state, events, reducers, and side effects for Android UIs with predictable lifecycle-aware ownership.
  • Handoff skills when the scope expands:
  • android-coroutines-flow
  • android-ui-states-validation

Workflow

  1. Confirm the user-visible journey, target device behavior, and failure states that matter.
  2. Identify the owning screens, activities, destinations, and state holders for the flow.
  3. Implement the flow with explicit loading, success, empty, and error handling.
  4. Validate accessibility, configuration changes, and back-stack behavior in the showcase apps.
  5. Escalate data, architecture, or release concerns to the specialized skills called out in the handoff notes.

Guardrails

  • Treat loading, empty, error, offline, and permission-denied states as first-class UI states.
  • Do not hide navigation or permission side effects inside reusable UI components.
  • Prefer lifecycle-aware APIs over manual callback chains.
  • Keep deep links, intents, and permission prompts testable and observable.

Anti-Patterns

  • Assuming the happy path is enough for product flows.
  • Hard-coding request codes or route strings in multiple places.
  • Triggering navigation directly from repositories or network layers.
  • Shipping flows without recovery UI for denied permissions or broken state.

Remediation Examples

Keep one immutable UI state surface

data class TaskBoardState(
    val tasks: List<TaskUiModel> = emptyList(),
    val isLoading: Boolean = false,
    val errorMessage: String? = null,
)

Separate persistent state from one-off events

private val _uiState = MutableStateFlow(TaskBoardState())
val uiState: StateFlow<TaskBoardState> = _uiState.asStateFlow()

private val _events = MutableSharedFlow<TaskBoardEvent>(replay = 0)
val events: SharedFlow<TaskBoardEvent> = _events

Reduce state updates instead of mutating UI directly

_uiState.update { state ->
    state.copy(isLoading = false, tasks = refreshedTasks, errorMessage = null)
}

Examples

Happy path

  • Scenario: Drive the Compose task board from a single immutable screen state.
  • Command: cd examples/orbittasks-compose && ./gradlew :app:testDebugUnitTest

Edge case

  • Scenario: Represent permission denied and sync failed states explicitly in the XML fixture.
  • Command: cd examples/orbittasks-xml && ./gradlew :app:testDebugUnitTest

Failure recovery

  • Scenario: Separate state requests from coroutines, navigation, and UI validation prompts.
  • Command: python3 scripts/eval_triggers.py --skill android-state-management

Done Checklist

  • The implementation path is explicit, minimal, and tied to the right Android surface.
  • Relevant example commands and benchmark prompts have been exercised or updated.
  • Handoffs to adjacent skills are documented when the request crosses boundaries.
  • Official references cover the chosen pattern and the main migration or troubleshooting path.

Official References

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/krutikjain-android-agent-skills-android-state-management/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

krutikjain-android-agent-skills-android-state-management.ocm.jsonjson
{
  "ocm": "1",
  "id": "krutikjain-android-agent-skills-android-state-management",
  "kind": "skill",
  "name": "android-state-management",
  "description": "Model screen state, events, reducers, and side effects for Android UIs with predictable lifecycle-aware ownership.",
  "publisher": "krutikjain",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "android",
      "state",
      "ui-state",
      "viewmodel",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Model screen state, events, reducers, and side effects for Android UIs with predictable lifecycle-aware ownership."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/krutikjain/android-agent-skills",
      "path": "skills/android-state-management/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/krutikjain/android-agent-skills/blob/HEAD/skills/android-state-management/SKILL.md",
      "key": "krutikjain/android-agent-skills/skills/android-state-management/SKILL.md"
    }
  },
  "instructions": "# Android State Management\n\n## When To Use\n- Use this skill when the request is about: android ui state reducer, state management in compose or xml android, one-off events in android screen.\n- Primary outcome: Model screen state, events, reducers, and side effects for Android UIs with predictable lifecycle-aware ownership.\n- Handoff skills when the scope expands:\n- `android-coroutines-flow`\n- `android-ui-states-validation`\n\n## Workflow\n1. Confirm the user-visible journey, target device behavior, and failure states that matter.\n2. Identify the owning screens, activities, destinations, and state",
  "cost": {
    "context_tokens": 933
  }
}

Fetch it by URL: GET /api/v1/registry/krutikjain-android-agent-skills-android-state-management/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.