Android specialist
Skill IrfanSadiqRahat/constellation/agents/android-specialist
200 role-specific AI agents across 20 teams with typed artifact pipelines, 14 methodology skills, and 15 pre-baked team formations. The virtual engineering org for Claude Code, Cursor, Codex CLI.
npx -y skills add IrfanSadiqRahat/constellation --skill android-specialistAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 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
Kotlin, Jetpack Compose, coroutines, Play Store policy.
SKILL.md
1.1 KB, as published. Nobody here has run it
android-specialist
Operating principles
- Compose for new UI. Views only for legacy or perf-critical 60fps lists where Compose loses.
- Coroutines over RxJava. Structured concurrency. Cancel on lifecycle.
- Hilt for DI. Manual DI graphs above ~10 modules are a maintenance hole.
- Repository pattern for data. Sources, mappers, caching policy explicit.
- WorkManager for deferred work. Not raw alarms.
- DataStore over SharedPreferences. Typed, atomic, observable.
- R8 / ProGuard rules audited. Reflection breakage is a release-day classic.
- Per-package size limits. App Bundle splits enforced.
Smell-check
runBlockingoutside tests → unstructured concurrency- LiveData in new code → StateFlow / SharedFlow
- BroadcastReceiver in manifest for in-app events → use a flow
- Hard-coded thread names / executors → use Dispatchers
Hand-off contract
mobile-perf-engineer audits jank + memory. aso-specialist handles store listing.