axiom-ios-integration

axiom-ios-integration is a skill for Claude Code, Codex from ComeOnOliver/skillshub. It costs 87 tokens per session (3,415 once invoked), scanned A, original, MIT.

An iOS concurrency guide for code that runs asynchronously or across threads. It covers Swift's async/await model, actors, @MainActor, and Sendable, which help coordinate work safely between tasks.

In plain words
What is it for?
Use it to write async code, fix actor-isolation or Sendable errors, migrate to Swift 6 concurrency, handle background work, or investigate frozen app interfaces.
Why use it?
It helps prevent data races, UI freezes, and Swift 6 concurrency errors caused by unsafe access to shared data or blocking the main thread.

Skill for Claude CodeCodex

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

Good fit Use it to write async code, fix actor-isolation or Sendable errors, migrate to Swift 6 concurrency, handle background work, or investigate frozen app interfaces.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/comeonoliver/skillshub/axiom-ios-integration
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-integration
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-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-ios-integration/github.svg)](https://agentmods.dev/skills/comeonoliver/skillshub/axiom-ios-integration)
Your own site
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-ios-integration"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-ios-integration/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-integration

Your own site · 80×15
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-ios-integration"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-ios-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,415 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.00087 $0.03415
Opus 5 $0.00044 $0.01707
Sonnet 5 $0.00017 $0.00683
Haiku 4.5 $0.00009 $0.00342

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

Security

Grade A, and why

axiom-ios-integration 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 9d 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-integration/SKILL.md · 326 lines

How it starts

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

iOS System Integration Router

You MUST use this skill for ANY iOS system integration including Siri, Shortcuts, widgets, in-app purchases, camera, photo library, audio, axiom-haptics, and more.

When to Use

Use this router for:

  • Siri & Shortcuts (App Intents)
  • Apple Intelligence integration
  • Widgets & Live Activities
  • In-app purchases (StoreKit)
  • Camera capture (AVCaptureSession)
  • Photo library & pickers (PHPicker, PhotosPicker)
  • Audio & haptics
  • Localization
  • Privacy & permissions
  • Spotlight search
  • App discoverability
  • Alarms (AlarmKit)
  • Background processing (BGTaskScheduler)
  • Location services (Core Location)
  • Maps & MapKit (Map, MKMapView, annotations, search, directions)
  • Passkeys & authentication (ASAuthorizationController, WebAuthn)
  • App integrity & fraud prevention (App Attest, DeviceCheck)

Cross-Domain Routing

When integration issues overlap with other domains:

Widget + data sync issues (widget not showing updated data):

  • Widget timeline not refreshing → stay in ios-integration (extensions-widgets)
  • SwiftData/Core Data not shared with extension → also invoke ios-data — App Groups and shared containers are data-layer concerns
  • Background refresh timing → also invoke ios-concurrency if async patterns are involved

Live Activity + push notification issues:

  • ActivityKit push token setup, Live Activity not updating → stay in ios-integration (extensions-widgets)
  • Push notification delivery failures, APNs errors → also invoke ios-networking (networking-diag)
  • Entitlements/certificates misconfigured → also invoke ios-build (xcode-debugging)

Camera + permissions + privacy:

  • Camera code issues → stay in ios-integration (camera-capture)
  • Privacy manifest or Info.plist issues → stay in ios-integration (privacy-ux)
  • Build/entitlement errors → also invoke ios-build

MapKit + location issues (user location not showing on map):

  • Map display, annotations, search → stay in ios-integration (mapkit)
  • Location authorization, monitoring, background location → also invoke ios-performance or ios-integration (core-location)
  • Map performance with many annotations → also invoke ios-performance if profiling needed

Read the full file on GitHub · 326 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. 9d ago First seen · 326 lines · 87 tokens per session scan A ba80f1acbd79

Subscribe to this mod's changes

axiom-ios-integration is a skill published in the GitHub repository ComeOnOliver/skillshub (63 stars, last pushed 2mo ago), licensed MIT. It adds 87 tokens to every session and 3,415 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.