Install
$ agentstack add skill-gdvega-super-android-kotlin-firebase-skill-jetpack-compose ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Purpose
Build Compose UI that is maintainable, state-driven, accessible and aligned with Material 3.
When to use
- Creating or refactoring a Compose screen.
- Connecting ViewModel and StateFlow to UI.
- Adding Navigation, previews, adaptive layouts or accessibility semantics.
Inputs to inspect
- Composable files, UI state and ViewModel.
- Theme/design system and Material 3 usage.
- Navigation graph and route parameters.
- Preview and UI test setup.
Required workflow
- Define UI state and user events.
- Create a Route composable for ViewModel and navigation wiring.
- Create a stateless Screen composable that renders state.
- Add previews for loading, empty, content and error states.
- Add semantics and tests for the critical flow.
Rules
- Use Route + Screen for stateful screens.
- Hoist state and keep reusable components stateless.
- Do not perform network, database or Firebase calls in Composables.
- Use Material 3 theme tokens.
- Add stable keys for lazy lists.
Related existing skills
Local skills to invoke
- kotlin-core
- accessibility
- compose-performance
- edge-to-edge-adaptive-ui
- ui-state-design
External companion skills to use when installed
Do not assume these companion skills are installed. Prefer the local skills above first, then consult [Companion Skills](../../docs/COMPANION_SKILLS.md) for install and verification commands.
- aldefy/compose-skill — use for deeper Jetpack Compose, Material 3, design-to-code, theming or Compose architecture guidance.
Files commonly touched
feature/*/*Screen.ktfeature/*/*Route.ktfeature/*/*ViewModel.ktnavigation filesui/theme filesandroidTest Compose tests
Commands to validate
./gradlew assembleDebug
./gradlew test
./gradlew connectedDebugAndroidTest
Common mistakes to avoid
- Passing ViewModel into reusable leaf components.
- Using remember for business state that belongs in ViewModel.
- Missing previews for error/empty states.
- Ignoring semantics, content descriptions and font scale.
Checklist
- Route and Screen separated.
- State hoisted.
- Material 3 used.
- Previews added.
- Accessibility and UI tests considered.
Example prompts
- Use $super-android-kotlin-firebase to create a weekly budget Compose screen.
- Use $super-android-kotlin-firebase to refactor this Compose screen into Route + Screen.
Expected response style
Respond with: brief diagnosis, change plan, affected files, code or diff summary, validation commands, tests added or recommended, risks, and next step. For review tasks, lead with findings ordered by severity.
References
- ../../docs/audits/FUENTES_LOCALES.md
- references/compose-state-patterns.md
- references/navigation-patterns.md
- templates/route-screen-viewmodel-template.md
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: GDvega
- Source: GDvega/super-android-kotlin-firebase-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.