Combined advisory, generator, and workflow skill for integrating machine learning into Apple platform apps. Covers Core ML model integration, Vision framework image analysis, NaturalLanguage framework text processing, Create ML training, and on-device model optimization.
| Capability | Request Class | Custom Model Needed? |
| Image classification | VNClassifyImageRequest | No (built-in) | | Object detection | VNDetectObjectsRequest (custom model) | Yes | | Face detection | VNDetectFaceRectanglesRequest | No | | Face landmarks | VNDetectFaceLandmarksRequest | No | | Text recognition (OCR) | VNRecognizeTextRequest | No | | Body pose | VNDetectHumanBodyPoseRequest | No |
Core ML, Create ML, Vision framework, Natural Language framework, on-device ML integration. Use when user wants image classification, text analysis, object detection, sound classification, model optimization, or custom model integration. Covers Core ML vs Foundation Models decision. Source: rshankras/claude-code-apple-skills.