android-to-ios
Installation
SKILL.md
Android to iOS: Feature Parity Implementation
Use Android code as the reference to implement the equivalent iOS feature. Not a literal translation - understand what the Android code does, then implement it idiomatically for iOS.
Use this when:
- Porting a feature from Android to iOS
- Android is the "source of truth" for a feature
- Ensuring feature parity between platforms
Key Principle
Android Code → Understand Feature → Match iOS Codebase Patterns → Implement
(what) (how it's done here)
Preserved: Feature behavior, data structure shapes, business logic, user flows Adapted: Language idioms, frameworks, patterns to match the iOS codebase
Related skills