소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill modern-jetpack-compose명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | modern-jetpack-compose |
| description | > Use when this capability is needed. |
Review or generate Jetpack Compose code for correctness, modern API usage, and adherence to Android best practices. Report only genuine issues — do not nitpick style unless it contradicts a clear rule.
When reviewing existing code, follow these steps in order:
references/api.mdreferences/composables.mdreferences/state.mdreferences/effects.mdreferences/recomposition.mdreferences/navigation.mdreferences/design.mdreferences/accessibility.mdreferences/performance.mdreferences/kotlin.mdreferences/hygiene.mdWhen generating new code, load the relevant reference files for the feature being built before writing any code, so output is idiomatic from the start.
For partial reviews or targeted generation, load only the relevant reference files.
Organize findings by file. For each issue:
Skip files with no issues. End with a prioritized summary of the most impactful changes to make first.
Example output:
Line 14: Use collectAsStateWithLifecycle() instead of collectAsState().
// Before
val uiState by viewModel.uiState.collectAsState()
// After
val uiState by viewModel.uiState.collectAsStateWithLifecycle()
Line 42: Provide key in LazyColumn for stable item identity.
// Before
LazyColumn {
items(books) { book ->
BookItem(book)
}
}
// After
LazyColumn {
items(books, key = { it.id }) { book ->
BookItem(book)
}
}
Line 67: Image missing contentDescription — required for accessibility.
// Before
Image(painter = painterResource(R.drawable.cover), contentDescription = null)
// After — if decorative:
Image(painter = painterResource(R.drawable.cover), contentDescription = null) // OK if truly decorative
// After — if meaningful:
Image(
painter = painterResource(R.drawable.cover),
contentDescription = stringResource(R.string.book_cover_description)
)
collectAsState() on line 14 does not respect lifecycle — replace with collectAsStateWithLifecycle().key in LazyColumn on line 42 causes unnecessary recomposition.contentDescription.references/api.md — deprecated APIs and their modern replacements.references/composables.md — composable structure, naming, and composition patterns.references/state.md — state management, ViewModel, StateFlow, and data flow.references/effects.md — side effects: LaunchedEffect, DisposableEffect, SideEffect.references/recomposition.md — recomposition stability, @Stable/@Immutable, derivedStateOf.references/navigation.md — Navigation Compose, type-safe nav, nested graphs.references/design.md — Material 3 / Expressive theming, adaptive layouts.references/accessibility.md — TalkBack, semantics, content descriptions, touch targets.references/performance.md — LazyList optimization, remember, scope of state reads.references/kotlin.md — modern Kotlin patterns for Android.references/hygiene.md — code hygiene, testing, lint.Source: anhvt52/jetpack-compose-skills — distributed by TomeVault.