ソース情報
- リポジトリ
- mikailustuner/OmniRule
- ソースの最終更新活動
- 2026年5月8日 23:36
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/mikailustuner/OmniRule --skill mobile-patternsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Bun runtime: HTTP server, file I/O, SQLite, test runner, package manager, bundler — all-in-one JS toolchain.
Clerk: Drop-in auth UI, Organizations, User management, JWT templates, webhooks, Next.js middleware integration.
Gelişmiş masaüstü, tarayıcı ve işletim sistemi kontrol yeteneği. Görsel (koordinat tabanlı) fare/klavye otomasyonu, DOM manipülasyonu, pencere yönetimi, gelişmiş dosya, ağ ve süreç yönetimini kapsar.
SOC 職業分類に基づく
SKILL.md を表示中
| name | mobile-patterns |
| description | Mobile: React Native, PWA, native features, offline-first, app store |
| triggers | {"extensions":[".tsx"],"keywords":["React Native","Expo","mobile","iOS","Android","native","FlashList","expo-router"]} |
| auto_load_when | Building React Native or Expo mobile apps |
| agent | mobile-ops |
| tools | ["Read","Write","Bash"] |
Focus: Mobile strategy, React Native vs PWA, native features, offline
Choose React Native when:
├── Need native performance
├── Platform-specific UI
├── Access device APIs
└── Existing JS team
Choose PWA when:
├── Web-only is acceptable
├── No app store review
├── Low development budget
├── Target all platforms equally
Choose Native (Swift/Kotlin) when:
├── Complex graphics (games)
├── Heavy processing
├── Platform-first requirements
└── Deep OS integration
Manifest requirements:
├── name, short_name
├── icons: 192x192, 512x512
├── theme_color
├── display: standalone
└── start_url
Service Worker:
├── Cache-first for assets
├── Network-first for API
└── Background sync for offline
Web capabilities:
├── Push notifications
├── Add to home screen
└── Full-screen experience
Data sync strategy:
├── Local-first: read from local
├── Queue writes when offline
├── Sync on connectivity
└── Conflict resolution
Storage options:
├── IndexedDB: large structured data
├── Cache API: HTTP responses
└── localStorage: simple key-value
Sync patterns:
├── Optimistic updates
├── Background sync
└── Periodic sync (when charging)
Camera/Photo:
├── React Native: react-native-camera
├── PWA: <input type="file" capture>
└── Consider: permissions, quality
Location:
├── Geolocation API (PWA)
├── Geolocation native (RN)
└── Background tracking: platform-specific
Push Notifications:
├── Web Push (PWA): VAPID keys
├── Native: APNs/FCM tokens
└── Handle: permissions, states
Biometrics:
├── Face ID / Touch ID
├── WebAuthn (newer browsers)
└── Native bridge for older
iOS App Store:
├── App Store Review Guidelines
├── Privacy nutrition labels
└── TestFlight for beta
Google Play:
├── Play Console
├── Internal testing tracks
└── Material Design guidelines
Cross-platform tools:
├── EAS Build (Expo)
├── React Native CLI
└── Capacitor (PWA to app)
React Native optimization:
├── FlatList for long lists
├── useMemo/useCallback
├── Native modules for heavy ops
└── Hermes JS engine
PWA optimization:
├── Lazy loading
├── Image optimization
└── Code splitting
Metrics:
├── Core Web Vitals
├── App startup time
└── Memory usage
❌ Using web-style touch handlers instead of Gesture Responder
✅ Use React Native PanResponder or Gesture Handler for touch
❌ Large JS bundle causing slow TTI on mobile
✅ Hermes engine + Metro bundler tree-shaking; lazy load screens
❌ Platform-specific code scattered everywhere
✅ Platform.select() or .ios.tsx / .android.tsx file extensions
❌ ScrollView wrapping FlatList (double scroll)
✅ FlatList / SectionList for any dynamic list — not ScrollView
❌ No deep link handling
✅ React Navigation linking config + universal links setup
| Need | React Native API | Expo |
|---|---|---|
| Navigation | React Navigation | expo-router |
| Camera | react-native-vision-camera | expo-camera |
| Storage | MMKV / AsyncStorage | expo-secure-store |
| Push notifications | notifee | expo-notifications |
| OTA update | CodePush | expo-updates |
| Device info | react-native-device-info | expo-device |