.claude/skills/mobile-review/SKILL.md
Reviews mobile app code and design for platform guidelines compliance, performance, accessibility, and offline behavior. Use when reviewing a mobile app feature or when the user mentions mobile review, iOS guidelines, or app store compliance.
npx skillsauth add tranhieutt/software_development_department mobile-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When this skill is invoked:
Read the target file(s) in full.
Read the CLAUDE.md to identify the mobile tech stack (React Native / Flutter / Swift / Kotlin).
Determine platform scope: iOS-only, Android-only, or cross-platform.
Evaluate Performance (MFRI Check):
ScrollView wrapping long or dynamic lists — use FlatList / FlashList (RN) or ListView.builder (Flutter)renderItem is wrapped in useCallback / item widget is const or StatelessWidgetkeyExtractor — no array index as keyuseNativeDriver: true) or GPU-composited propertiesconsole.log / debug print in production code pathsEvaluate Platform Standards:
Evaluate Security (OWASP MASVS):
AsyncStorage / SharedPreferences — use SecureStore / Keychain / EncryptedSharedPreferencesEvaluate Offline & Network Handling:
Evaluate Accessibility:
accessibilityLabel / contentDescription / semanticsLabelOutput the review in this format:
## Mobile Code Review: [File/Feature Name]
Platform: [iOS / Android / Cross-platform]
Framework: [React Native / Flutter / SwiftUI / Compose]
### Performance: [X/7 passing]
[List failures with line references and fix suggestion]
### Platform Standards: [X/6 passing]
[List non-compliant items]
### Security (MASVS): [X/4 passing]
[List security issues with severity: CRITICAL / HIGH / MEDIUM]
### Offline & Network: [X/4 passing]
[List missing states or error handling gaps]
### Accessibility: [X/4 passing]
[List missing labels or navigation issues]
### Positive Observations
[What is done well — always include this section]
### Required Changes (block release)
[Must-fix items]
### Suggestions (non-blocking)
[Nice-to-have improvements]
### Verdict: [APPROVED / APPROVED WITH SUGGESTIONS / CHANGES REQUIRED]
Deliver exactly:
APPROVED / APPROVED WITH SUGGESTIONS / CHANGES REQUIREDtesting
Generates high-fidelity architecture diagrams, sequence flows, and component maps for SDD projects. Use when finalizing a design phase, documenting system architecture, or visualizing agentic workflows. Default style: Style 6 (Claude Official).
data-ai
Provides vector database and semantic search patterns for Pinecone, Weaviate, Qdrant, Milvus, and pgvector in RAG and recommendation systems. Use when implementing vector search or when the user mentions vector database, semantic search, embeddings, or similarity search.
development
Updates docs/technical/CODEMAP.md by scanning the current codebase structure. Run after a significant feature merge, refactor, or when CODEMAP feels stale.
development
Unlocks the codebase after a release freeze or incident freeze period to resume normal development. Use when a freeze period ends or when the user mentions unfreezing or lifting the code freeze.