원클릭으로
skeleton-ui-standards
Guidelines for styling and transitioning from shimmer-ready skeleton placeholders
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for styling and transitioning from shimmer-ready skeleton placeholders
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | Skeleton UI Standards |
| description | Guidelines for styling and transitioning from shimmer-ready skeleton placeholders |
To maintain an "Ultra Smooth" loading experience, all data-driven screens must implement a skeleton UI that mimics the final content structure.
?attr/colorSurfaceContainerHigh or ?attr/colorSurfaceContainerHighest for the skeleton blocks to distinguish them while maintaining a flat M3 aesthetic.Create a composite layout (e.g., layout_home_skeleton.xml) that includes multiple item skeletons:
<LinearLayout ...>
<include layout="@layout/item_skeleton_hero" />
<include layout="@layout/item_skeleton_subscription" />
</LinearLayout>
Use AnimationHelper.animateReveal and a subtle haptic to bridge the gap between "Loading" and "Ready":
if (loadingSkeleton.visibility == View.VISIBLE) {
loadingSkeleton.visibility = View.GONE
mainContentWrapper.visibility = View.VISIBLE
AnimationHelper.animateReveal(mainContentWrapper)
PreferenceHelper.performClickHaptic(mainContentWrapper)
}
EMPHASIZED (M3 Standard)performClickHaptic or SEGMENT_TICKGuidelines for managing Varisankya releases across Beta and Production tracks.
How to safely record extra payments without advancing the Varisankya subscription next due date.
Instructions for extracting the Play Store upload keystore, Firebase JSON, and passwords from Bitwarden.
Standard operating procedure for concluding an AI agent session and ensuring workspace integrity.
Guidelines for compiling Varisankya from the CLI without Android Studio.
How to correctly handle custom dates for extra subscription payments using MaterialDatePicker.