almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Use Apple's phased release for automatic updates on iOS — behavior, pausing, resuming, and interaction with manual updates. Use this when shipping production iOS builds.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Use Apple's phased release for automatic updates on iOS — behavior, pausing, resuming, and interaction with manual updates. Use this when shipping production iOS builds.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Use Play percentage rollouts and iOS phased release to limit blast radius. Use this when planning or operating a production release.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Generate keystores, enrol in Play App Signing, and understand v1/v2/v3/v4 APK signature schemes. Use this when setting up Android release signing.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Diagnose and fix common Apple and Google code-signing errors. Use this when a release build fails to sign, upload, or install.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Manage Apple certificates, provisioning profiles, automatic vs manual signing, and fastlane match. Use this when setting up iOS release signing.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Publish Android apps to Amazon Appstore, Huawei AppGallery, Samsung Galaxy Store, and deal with HMS vs GMS. Use this when targeting non-Google Android markets.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Release to the App Store using App Store Connect, TestFlight, metadata, and screenshots. Use this when shipping an iOS build to Apple.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Release to Google Play using internal/closed/open tracks, AAB uploads, and the Data Safety form. Use this when shipping an Android build to the Play Console.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Generate release notes from Conventional Commits with git-cliff, conventional-changelog, or release-please. Use this when automating the changelog and store release notes.
almasumdev/awesome-mobile-release-agent-skills
Skill Claude CodeCodex
Apply SemVer to mobile apps — versionName, versionCode, CFBundleShortVersionString, CFBundleVersion, and release branching. Use this when bumping versions or designing branch strategy.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Schedule, batch, and constrain background work with WorkManager, BGTaskScheduler, and push-over-poll patterns to minimize battery and data cost.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Attribute battery drain to CPU, radio, GPS, display, and background work using Android Battery Historian and Xcode Energy Log / Instruments Energy gauge.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Shrink APK/AAB and IPA size with R8/ProGuard, dead-code elimination, asset hygiene, and Android App Bundle / App Thinning best practices.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Cut local and CI build times on Android (Gradle config cache, build cache, KSP over KAPT) and iOS (Xcode build cache, ccache, modules). Use when clean builds exceed ten minutes.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Downsample, cache, and choose the right image format (AVIF, HEIC, WebP) to cut memory, network, and decode time on iOS and Android.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Find and fix common memory leaks caused by listeners, closures, singletons, and lifecycle mismatches on iOS, Android, Flutter, and React Native.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Capture and analyze heap dumps on Android (Android Studio Profiler, LeakCanary) and iOS (Instruments Allocations/Leaks). Use when memory-related crashes or growth are suspected.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Deliver responsive images via CDN with AVIF/WebP, placeholders, and progressive loading on iOS, Android, Flutter, and React Native.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Cut mobile network cost with HTTP/2, HTTP/3 (QUIC), Brotli/Zstd compression, and payload trimming. Use when p95 latency or bytes-per-screen exceeds budget.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Layer caches (memory, disk, CDN), use ETag and stale-while-revalidate, and batch small requests to cut latency and radio cost.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Apply read-through, write-through, TTL, LRU, and encrypted caches correctly across memory, disk, and secure storage on mobile.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
List virtualization and pagination patterns per platform — RecyclerView/Paging 3, Compose LazyColumn, SwiftUI List, Flutter ListView.builder, RN FlashList.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Hit 60/90/120Hz frame rate budgets by balancing CPU (UI thread) and GPU (RenderThread/Metal) work. Use when frame time exceeds the device refresh budget.
almasumdev/awesome-mobile-performance-agent-skills
Skill Claude CodeCodex
Detect and attribute janky frames using Perfetto, Android Choreographer logs, Xcode Time Profiler, and Flutter DevTools. Use when users report stutters even though "everything looks fine" in dev.