axiom-ios-ml

axiom-ios-ml is a skill for Claude Code, Codex from ComeOnOliver/skillshub. It costs 74 tokens per session (1,050 once invoked), scanned A, original, MIT.

An iOS machine-learning deployment guide for running custom models on a device and converting them to Apple's Core ML format. It also covers model size reduction and speech-to-text features.

In plain words
What is it for?
Use it to convert PyTorch or TensorFlow models, optimize models with quantization or pruning, run language models on-device, implement speech transcription, or use Core ML predictions.
Why use it?
It helps developers distinguish deploying their own machine-learning model from using Apple's built-in Apple Intelligence features, and guides the related implementation choices.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to convert PyTorch or TensorFlow models, optimize models with quantization or pruning, run language models on-device, implement speech transcription, or use Core ML predictions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/comeonoliver/skillshub/axiom-ios-ml
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ComeOnOliver/skillshub --skill axiom-ios-ml
Clone the repo
git clone --depth 1 https://github.com/ComeOnOliver/skillshub

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for axiom-ios-ml

README.md
[![agentmods](https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-ios-ml/github.svg)](https://agentmods.dev/skills/comeonoliver/skillshub/axiom-ios-ml)
Your own site
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-ios-ml"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-ios-ml/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for axiom-ios-ml

Your own site · 80×15
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-ios-ml"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-ios-ml.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,050 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.01050
Opus 5 $0.00037 $0.00525
Sonnet 5 $0.00015 $0.00210
Haiku 4.5 $0.00007 $0.00105

Measured 7d ago against content hash a341f37055d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

axiom-ios-ml scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/CharlesWiltgen/Axiom/axiom-ios-ml/SKILL.md · 138 lines

How it starts

The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.

iOS Machine Learning Router

You MUST use this skill for ANY on-device machine learning or speech-to-text work.

When to Use

Use this router when:

  • Converting PyTorch/TensorFlow models to CoreML
  • Deploying ML models on-device
  • Compressing models (quantization, palettization, pruning)
  • Working with large language models (LLMs)
  • Implementing KV-cache for transformers
  • Using MLTensor for model stitching
  • Building speech-to-text features
  • Transcribing audio (live or recorded)

Boundary with ios-ai

ios-ml vs ios-ai — know the difference:

Developer Intent Router
"Use Apple Intelligence / Foundation Models" ios-ai — Apple's on-device LLM
"Run my own ML model on device" ios-ml — CoreML conversion + deployment
"Add text generation with @Generable" ios-ai — Foundation Models structured output
"Deploy a custom LLM with KV-cache" ios-ml — Custom model optimization
"Use Vision framework for image analysis" ios-vision — Not ML deployment
"Use pre-trained Apple NLP models" ios-ai — Apple's models, not custom

Rule of thumb: If the developer is converting/compressing/deploying their own model → ios-ml. If they're using Apple's built-in AI → ios-ai. If they're doing computer vision → ios-vision.

Routing Logic

CoreML Work

Implementation patterns/skill coreml

  • Model conversion workflow
  • MLTensor for model stitching
  • Stateful models with KV-cache
  • Multi-function models (adapters/LoRA)
  • Async prediction patterns
  • Compute unit selection

API reference/skill coreml-ref

  • CoreML Tools Python API
  • MLModel lifecycle
  • MLTensor operations
  • MLComputeDevice availability
  • State management APIs
  • Performance reports

Diagnostics/skill coreml-diag

  • Model won't load
  • Slow inference
  • Memory issues
  • Compression accuracy loss
  • Compute unit problems

Speech Work

Implementation patterns/skill speech

  • SpeechAnalyzer setup (iOS 26+)
  • SpeechTranscriber configuration
  • Live transcription
  • File transcription
  • Volatile vs finalized results
  • Model asset management

Read the full file on GitHub · 138 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 138 lines · 74 tokens per session scan A a341f37055d4

Subscribe to this mod's changes

axiom-ios-ml is a skill published in the GitHub repository ComeOnOliver/skillshub (63 stars, last pushed 2mo ago), licensed MIT. It adds 74 tokens to every session and 1,050 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.