app-store
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user…
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
$ npx -y skills add rshankras/claude-code-apple-skills --skill core-ml --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/core-mlContext preview
The summary Claude sees to decide when to auto-load this skill.
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
name: core-ml description: 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. allowed-tools: [Read, Write, Edit, Glob, Grep, Bash, AskUserQuestion] last_verified: 2026-07-16 review_by: 2027-06-22 os_version: iOS 27 / macOS 27
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.
Use this skill when the user:
Before generating code, determine which framework is appropriate.
Search for existing ML integration:
Glob: **/*Model*.swift, **/*Classifier*.swift, **/*Predictor*.swift, **/*.mlmodel, **/*.mlmodelc, **/*.mlpackage Grep: "import CoreML" or "import Vision" or "import NaturalLanguage"
If found, ask user:
Ask user via AskUserQuestion:
1. **What ML capability do you need?**
2. **Do you have a trained model, or need to train one?**
3. **Performance requirements?**
1. Drag `.mlmodel` or `.mlpackage` into Xcode project navigator 2. Xcode auto-generates a Swift class with the model name 3. The generated class provides type-safe input/output interfaces 4. Xcode compiles to `.mlmodelc` at build time (optimized for device)
// Option 1: Auto-generated class (simplest) let model = try MyImageClassifier(configuration: MLModelConfiguration()) // Option 2: Generic MLModel loading (flexible) let url = Bundle.main.url(forResource: "MyModel", withExtension: "mlmodelc")! let config = MLModelConfiguration() config.computeUnits = .all // CPU + GPU + Neural Engine let model = try MLModel(contentsOf: url, configuration: config) // Option 3: Async loading (recommended for large models) let model = try await MLModel.load(contentsOf: url, configuration: config)
// Type-safe prediction with auto-generated class let input = MyImageClassifierInput(image: pixelBuffer) let output = try model.prediction(input: input) print(output.classLabel) // "cat" print(output.classLabelProbs) // ["cat": 0.95, "dog": 0.04, ...] // Batch predictions let batch = MLArrayBatchProvider(array: inputs) let results = try model.predictions(from: batch)
##
A collection of Claude Code skills for iOS, macOS, watchOS, visionOS, and Apple platform development. These skills help you plan and build apps, maintain code quality, ensure HIG compliance, and guide you from idea to App Store.
Repo: rshankras/claude-code-apple-skills
App Store optimization and marketing skills for descriptions, screenshots, keywords, review responses, and comprehensive promotional strategy. Use when user…
Privacy-preserving ad measurement with AdAttributionKit (SKAdNetwork's successor) — install and re-engagement attribution, conversion-value strategy under…
Generate compelling App Store descriptions that convert browsers into users. Use when writing initial descriptions, improving existing copy, or drafting…
Apple Search Ads campaign strategy for indie developers — paid acquisition, keyword bidding, budget planning, and ROAS optimization. Use when user asks about…
Take a one-time in-app purchase from MISSING_METADATA to READY_TO_SUBMIT in App Store Connect — set its price schedule and localized display name/description…
Optimize app title, subtitle, and keywords for maximum App Store discoverability. Use when launching a new app, improving search rankings, entering new…