Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill android명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | android |
| description | | Use when this capability is needed. |
Production-grade Android engineering expertise from data layer to pixel, from startup milliseconds to biometric auth, from phone portrait to foldable landscape. UI quality, performance, security, and accessibility are first-class concerns equal to functional correctness.
| Task | Reference |
|---|---|
| Color theming, 29 roles, token hierarchy, gradients | theming-and-color.md |
| Building a new screen | compose-ui-system.md |
| Navigation with shared element transitions | shared-element-transitions.md |
| Type-safe navigation, deep links, multi-module | navigation.md |
| Animation / motion (non-shared-element) | motion-and-animation.md |
| Adaptive layouts, large screens, foldables | adaptive-layouts.md |
| Coroutines, Flow, dispatchers, cancellation | coroutines-and-flow.md |
| Room, Retrofit, offline-first data layer | data-layer.md |
| ViewModel, state, DI, architecture | architecture.md |
| Baseline Profiles, R8, recomposition perf | performance.md |
| Encryption, biometrics, cert pinning | security.md |
| WorkManager, Foreground Services, Alarms | background-work.md |
| Coil3, SubcomposeAsyncImage, caching | image-loading.md |
| FCM, notification channels, deep links | notifications.md |
| TalkBack, semantics, focus, contrast | accessibility.md |
| Unit, screenshot, Roborazzi tests | testing.md |
| Convention plugins, version catalog, modules | build-and-modules.md |
| ADB / Android MCP debugging | android-mcp.md |
| Pre-ship quality review | assets/ui-excellence-checklist.md |
1. Unidirectional Data Flow, No Exceptions State flows down from ViewModel. Events flow up via lambdas or actions. No composable reads from a database. No ViewModel imports Compose. The boundary is sharp and testable.
2. Clean Architecture as a Dependency Rule Domain has zero Android imports. Data is invisible to UI. Features depend on core, never each other. Violations create debt that compounds faster than feature velocity.
3. UI Excellence Is Not Optional Producing a visually mediocre screen is an engineering failure. Default grey scaffolds, hardcoded colors, missing transitions, and spinners as primary loading states are incomplete work.
4. Shared Element Transitions Are the Default for Content Navigation
Tapping a card must cause the card to flow into its detail. sharedBounds() or sharedElement() is the default. Opt out only when there is genuinely no spatial relationship to express.
5. Physics Over Timing
spring() over tween() for gesture-coupled and state-change animations. Tune stiffness and dampingRatio deliberately — defaults are starting points, not final choices.
6. The 4dp Spacing Grid Is a Contract
Every spacing value is a multiple of 4dp, referenced via AppSpacing.* tokens. Arbitrary values are bugs that accumulate into visual dissonance.
7. Fakes Over Mocks Test ViewModels against in-memory fake implementations. Fakes exercise real contracts, survive refactors. Mocks couple tests to implementation details and silently pass when production code breaks.
8. Performance Is a Feature Baseline Profiles are committed for every app shipped. Recomposition counts are checked with Layout Inspector before any UI work is done. Cold start is tracked in CI via Macrobenchmark.
9. Security from Day One Encrypted storage for all sensitive data. Certificate pinning for all network endpoints. No secrets in source code. Input validated at every external boundary. These are not features to add later.
10. Accessibility Is Not Optional Every image has a content description. Every custom component declares its semantic role. Every interactive element has a 48dp touch target. Colour contrast meets WCAG AA. TalkBack is tested before any screen is shipped.
Android users have seen a million apps. The ones they remember have something alive about them — a transition that makes content feel like a physical object moving through space, surfaces that catch light at different elevations, a loading state so well crafted it does not feel like waiting.
The Bar. Every screen passes three tests before it ships:
The scroll-stop test. Would a designer pause on this if scrolling past it? Not because it is garish — because something is considered. A hierarchy that breathes. A transition that reveals spatial relationship. A surface treatment that says "we care."
The feel test. Does it respond to touch like a physical object? Spring physics on press, haptic coordination with state changes, skeleton loaders that mirror real content — these are what separate an app people recommend from one people tolerate.
The motion test. Do transitions communicate where content came from? Shared elements communicate spatial memory. Instant cuts communicate nothing. Slide transitions say you moved sideways. Shared elements say: this is that thing, grown.
In code, this means:
spring() physics tuned for each context; no unexamined defaultsBrush gradients where flat color is visually weakCanvas for anything standard components cannot achieveAnti-patterns to refuse: Default grey scaffold backgrounds. Hardcoded hex colors in composables. Instant navigation between related content. LinearProgressIndicator as the sole loading state. Cards with identical elevation everywhere. Spacing not on the 4dp grid.
SharedTransitionLayout coordinates geometry between composable trees during navigation. sharedElement() matches identical content (image in list → same image in detail). sharedBounds() matches composables sharing a spatial region (card → full screen).
Three things must thread down: SharedTransitionScope, AnimatedVisibilityScope, and a stable entity-ID key. Missing any one silently breaks the transition.
Full guide, four complete Kotlin patterns, pitfalls: references/shared-element-transitions.md
MCP = eyes on device. Code = hands in codebase. Build → install → screenshot → compare → refine. Catches what Roborazzi misses: real inset behaviour, animation timing, system bar styling, density quirks.
Full capability table, workflows, log filtering, hierarchy inspection: references/android-mcp.md
yourapp.android.library.compose plugin. build-and-modules.md@Serializable data class in :core:navigation. navigation.mdLoading, Ready(data), Error(message, canRetry). architecture.mdStateFlow + SharedFlow(replay=0) + SavedStateHandle.toRoute(). architecture.md:core:data. data-layer.mdAppSpacing, colorScheme, typography only. compose-ui-system.mdsharedElement() or sharedBounds() with stable ID keys. shared-element-transitions.md1. Hardcoded colors — Color.White in a composable. Fix: all colors via MaterialTheme.colorScheme.*.
2. Missing modifier parameter — Composable cannot be resized by caller. Fix: every public composable takes modifier: Modifier = Modifier on its outermost layout.
3. SharedFlow vs StateFlow for events — Toast fires again on rotation. Fix: events = MutableSharedFlow(replay=0). State = MutableStateFlow(initial).
4. Shared element key mismatch — Navigation works but no transition fires. Fix: build from stable entity ID. Log both sides and compare.
5. SharedTransitionLayout not wrapping NavHost — IllegalStateException: No SharedTransitionScope. Fix: SharedTransitionLayout { NavHost { } } — must contain both source and destination.
6. Missing renderInSharedTransitionScope — Back button blinks into existence at transition end. Fix: apply .renderInSharedTransitionScope(scope).animateEnterExit(...) to destination-only elements.
7. Blocking main thread — ANR or UI freeze. Fix: withContext(dispatchers.io) for all I/O; never runBlocking on the main dispatcher.
8. Spinner as only loading state — CircularProgressIndicator centred on a blank background. Fix: ShimmerBox composable mirroring Ready geometry.
9. Non-4dp spacing — Visual rhythm feels slightly off; design review flags it. Fix: AppSpacing.* for every spacing value.
10. collectAsState instead of collectAsStateWithLifecycle — Flow collects in background. Fix: always collectAsStateWithLifecycle() for UI-bound collection.
11. GlobalScope usage — Coroutine leaks, ignores cancellation. Fix: viewModelScope, lifecycleScope, or rememberCoroutineScope(). Never GlobalScope.
12. Images loaded at full resolution for thumbnails — OOM in lists. Fix: .size(width, height) in ImageRequest matching display dimensions.
Source: ayush016/android-lead-agent-skills — distributed by TomeVault.
motion-and-animation.mdReady geometry with ShimmerBox. compose-ui-system.mdWindowSizeClass-aware layout. adaptive-layouts.mdaccessibility.mdsecurity.mdandroid-mcp.mdtesting.mdassets/ui-excellence-checklist.md must pass.