agentsclimarketplace

Android core

Skill GDvega/super-android-kotlin-firebase-skill/skills/android-core

A modular Agent Skills repository for Android, Kotlin, Jetpack Compose and Firebase development.

Install
npx -y skills add GDvega/super-android-kotlin-firebase-skill --skill android-core

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use for Android project structure, AndroidManifest, lifecycle, permissions, resources, compatibility, edge-to-edge, Android Studio and basic device debugging.

SKILL.md

3.2 KB, as published. Nobody here has run it

Purpose

Guide base Android decisions before touching Compose, Firebase, architecture or release work.

When to use

  • Creating or auditing an Android project baseline.
  • Changing AndroidManifest.xml, permissions, resources, minSdk/targetSdk or edge-to-edge behavior.
  • Debugging Android Studio, emulator, adb, Logcat or lifecycle issues.

Inputs to inspect

  • settings.gradle(.kts), root build files and app/build.gradle(.kts).
  • AndroidManifest.xml, permissions, resources and themes.
  • minSdk, targetSdk, compileSdk and device/API constraints.
  • Crash, Logcat, adb or Android Studio messages.

Required workflow

  1. Map the project structure and modules before editing.
  2. Inspect Manifest, permissions, themes and lifecycle entry points.
  3. Choose the smallest compatible Android API or Jetpack API change.
  4. Apply the change and keep behavior explicit for older SDKs.
  5. Run build/lint or the narrowest available validation command.

Rules

  • Explain every sensitive permission.
  • Respect lifecycle and process death.
  • Do not block the main thread.
  • Do not add platform APIs that conflict with minSdk without guards.
  • Prefer official Android skills for AGP, R8, Play, edge-to-edge, Navigation and security tasks.

Related existing skills

Local skills to invoke

  • gradle-build
  • debugging
  • edge-to-edge-adaptive-ui
  • security-privacy

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 for install and verification commands.

  • android/skills — use for official Android workflow alignment around edge-to-edge, adaptive UI, Navigation 3, R8, AGP or testing setup.

Files commonly touched

  • settings.gradle.kts
  • build.gradle.kts
  • app/build.gradle.kts
  • src/main/AndroidManifest.xml
  • src/main/res/values/*.xml
  • MainActivity.kt

Commands to validate

./gradlew assembleDebug
./gradlew lint
adb logcat
adb shell dumpsys package <package>

Common mistakes to avoid

  • Adding broad permissions without runtime flow.
  • Treating target SDK behavior changes as warnings only.
  • Putting platform work in Composables or Activities instead of appropriate owners.
  • Ignoring edge-to-edge insets on modern Android.

Checklist

  • Manifest reviewed.
  • Permissions minimized and justified.
  • SDK compatibility checked.
  • Lifecycle and configuration changes considered.
  • Build/lint command provided.

Example prompts

  • Use $super-android-kotlin-firebase to review my Manifest, permissions and edge-to-edge setup.
  • Use $super-android-kotlin-firebase to fix this Android Studio/adb device issue.

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/android-project-baseline.md
  • templates/android-manifest-permission-note.md

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.