From axiom
Routes iOS/Swift tasks to Axiom skills for console capture, crash symbolication, simulator UI automation, trace analysis, and device control.
How this skill is triggered — by the user, by Claude, or both
Slash command
/axiom:axiom-toolsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This suite covers Axiom itself — how to use it, what's available, and the tools that ship with it.
This suite covers Axiom itself — how to use it, what's available, and the tools that ship with it.
| Question | Read |
|---|---|
| "How do I use Axiom?" / "What skills are available?" | skills/getting-started.md |
| "How do I capture console output?" / "What is xclog?" | skills/xclog-ref.md |
| "How do I symbolicate a crash?" / "What is xcsym?" / "Why is my crash unsymbolicated?" | skills/xcsym-ref.md |
| "How do I drive/validate the sim UI?" / "What is xcui?" / "How do I script accessibility checks?" | skills/xcui-ref.md |
| "How do I analyze a trace / CPU or network profile?" / "What is xcprof?" / "Why does the profiler report no findings?" | skills/xcprof-ref.md |
| "How do I control a simulator/device without Xcode running?" / "What is Device Hub?" / "devicectl vs simctl?" | skills/device-control-ref.md |
The content below is the core discipline for Axiom's routing system — it establishes the rule that Axiom skills must be checked before any iOS/Swift response.
If you think there is even a 1% chance an Axiom skill might apply to your iOS/Swift task, you ABSOLUTELY MUST check for the skill.IF AN AXIOM SKILL APPLIES TO YOUR iOS/SWIFT TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
This is not negotiable. This is not optional. You cannot rationalize your way out of this.
Check for Axiom skills BEFORE ANY RESPONSE when working with iOS/Swift projects. This includes clarifying questions. Even 1% chance means check first.
These thoughts mean STOP—you're rationalizing:
| Thought | Reality |
|---|---|
| "This is just a simple build issue" | Build failures have patterns. Check axiom-build first. |
| "I can fix this SwiftUI bug quickly" | SwiftUI issues have hidden gotchas. Check axiom-swiftui first. |
| "Let me just add this database column" | Schema changes risk data loss. Check axiom-data first. |
| "This async code looks straightforward" | Swift concurrency has subtle rules. Check axiom-concurrency first. |
| "I'll debug the memory leak manually" | Leak patterns are documented. Check axiom-performance first. |
| "Let me explore the Xcode project first" | Axiom skills tell you HOW to explore. Check first. |
| "I remember how to do this from last time" | iOS changes constantly. Skills are up-to-date. |
| "This iOS/platform version doesn't exist" | If it postdates your training, you can't know that. Apple shipped iOS 26 at WWDC 2025 (18 → 26, 19-25 skipped). Invoke Axiom skills for post-cutoff facts. |
| "The user just wants a quick answer" | Quick answers without patterns create tech debt. Check skills first. |
| "This doesn't need a formal workflow" | If an Axiom skill exists for it, use it. |
| "I'll gather info first, then check skills" | Skills tell you WHAT info to gather. Check first. |
When multiple Axiom skills could apply, use this priority:
Examples:
Axiom skills apply when:
.xcodeproj or .xcworkspaceAxiom uses router skills for progressive disclosure:
Do not skip the router. Routers have decision logic to select the right specialized skill.
When a question spans multiple domains, invoke ALL relevant routers — don't stop after the first one.
Examples:
How to tell: If the question mentions symptoms from two different domains, or involves two different frameworks, invoke both routers. Each router has cross-domain routing guidance for common overlaps.
/skill axiom-concurrency/axiom:fix-build, /axiom:audit-accessibilitySkip Axiom skills for:
But when in doubt for iOS/Swift work: check first, decide later.
On Xcode 27, Device Hub — a standalone app that auto-launches on build-and-run — replaces the Simulator.app GUI and manages simulators and physical devices in one place (Xcode 26 and earlier keep Simulator.app). Every operation has an Xcode-independent CLI counterpart, so the Axiom tools and scripts are unaffected.
For the full tool map (Device Hub / devicectl / simctl / xcui vs the Xcode-bound mcpbridge), the verified subcommand matrix, and the Device Hub GUI reference, see skills/device-control-ref.md.
Skills: axiom-swiftui, axiom-concurrency, axiom-data, axiom-build, axiom-performance
Axiom tools: xclog (simulator console capture, skills/xclog-ref.md), xcsym (crash symbolication for .ips, MetricKit, legacy .crash text files, and Xcode Organizer .xccrashpoint bundles, skills/xcsym-ref.md), xcui (scriptable sim UI & accessibility testing, skills/xcui-ref.md), xcprof (structured xctrace CPU & network profile analysis, skills/xcprof-ref.md)
npx claudepluginhub p/charleswiltgen-axiom-claude-plugin-plugins-axiomDiagnoses iOS build failures, test crashes, and Xcode environment issues before debugging application code. Routes to specialized skills for environment debugging, build performance, and dependency conflicts.
Analyzes iOS app crash logs from simulators/devices/TestFlight, symbolicates stack traces with dSYM files using atos, identifies common patterns and root causes.
iOS platform-specific development with XcodeBuildMCP tools for simulator, device, UI automation, and debugging. Use when building iPhone apps, testing on simulator/device, or automating UI interactions.