← ClaudeAtlas

apple-on-device-ailisted

Build private, on-device AI features on iPhone, iPad, and Mac with Foundation Models, Core ML, MLX Swift, or llama.cpp. Use when choosing an Apple-local model runtime, building an Apple Intelligence chatbot or tool-calling feature, running an LLM on Apple Silicon, converting or compressing a Python model for Core ML, or comparing on-device inference backends. For Swift Core ML loading and prediction code, use the coreml skill.
thiennc-tesoglobal/ios-skills · ★ 3 · AI & Automation · score 66
Install: claude install-skill thiennc-tesoglobal/ios-skills
# On-Device AI for Apple Platforms Guide for selecting, deploying, and optimizing on-device ML models. Covers Apple Foundation Models, Core ML, MLX Swift, and llama.cpp. ## Contents - [Framework Selection Router](#framework-selection-router) - [Apple Foundation Models Overview](#apple-foundation-models-overview) - [Core ML Overview](#core-ml-overview) - [MLX Swift Overview](#mlx-swift-overview) - [Multi-Backend Architecture](#multi-backend-architecture) - [Performance Best Practices](#performance-best-practices) - [Common Mistakes](#common-mistakes) - [Review Checklist](#review-checklist) - [References](#references) ## Framework Selection Router Use this decision tree to pick the right framework for your use case. ### Apple Foundation Models **When to use:** Text generation, summarization, entity extraction, structured output, and short dialog on iOS 26+ / macOS 26+ devices with Apple Intelligence enabled. No app-managed API key, network round trip, or model hosting; still handle system model asset readiness. **Best for:** - Generating text or structured data with `@Generable` types - Summarization, classification, content tagging - Tool-augmented generation with the `Tool` protocol - Apps that need guaranteed on-device privacy **Not suited for:** Complex math, code generation, factual accuracy tasks, or apps targeting pre-iOS 26 devices. ### Core ML **When to use:** Deploying custom trained models (vision, NLP, audio) across all Apple platforms. Converting models