Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
charleswiltgen avatar

Axiom Tools

  • 696 installs
  • 1.1k repo stars
  • Updated August 3, 2026
  • charleswiltgen/axiom

axiom-tools is an agent skill that routes iOS and Swift work through Axiom’s xclog, xcsym, xcui, and xcprof utilities for console capture, crash symbolication, simulator UI validation, and trace profiling.

About

axiom-tools is a Claude Code skill from charleswiltgen/axiom that onboards developers to the Axiom iOS agent toolkit and its four bundled CLIs. xclog captures Xcode console output, xcsym symbolicates .ips, MetricKit, and .crash reports, xcui drives and validates simulator UI and accessibility, and xcprof analyzes xctrace and CPU profiles. Developers reach for axiom-tools when debugging Swift apps in the simulator, triaging symbolicated crashes, validating accessibility trees, or profiling hot paths without manually chaining separate Xcode workflows.

  • Routing table maps questions to getting-started, xclog, xcsym, xcui, and xcprof reference docs
  • xclog captures console output from iOS runs
  • xcsym symbolicates .ips, MetricKit, and .crash reports
  • xcui drives and validates simulator UI and accessibility scripts
  • xcprof analyzes xctrace CPU and network profiles

Axiom Tools by the numbers

  • 696 all-time installs (skills.sh)
  • Ranked #263 of 1,039 Mobile Development skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/charleswiltgen/axiom --skill axiom-tools

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs696
repo stars1.1k
Security audit3 / 3 scanners passed
Last updatedAugust 3, 2026
Repositorycharleswiltgen/axiom

How do you debug iOS simulator crashes and profiles?

Route iOS and Swift agent work through Axiom’s xclog, xcsym, xcui, and xcprof tools for console capture, crash symbolication, simulator UI checks, and trace profiling.

Who is it for?

iOS and Swift developers using Axiom who need guided routing across xclog, xcsym, xcui, and xcprof during simulator debugging.

Skip if: Android or cross-platform teams without Xcode simulators should skip axiom-tools.

When should I use this skill?

A developer asks about Axiom onboarding, xclog console capture, xcsym crash symbolication, xcui simulator checks, or xcprof trace analysis.

What you get

Console logs, symbolicated crash reports, simulator UI validation results, and xctrace CPU profile analysis

  • Console capture output
  • Symbolicated crash report
  • Simulator UI validation

By the numbers

  • Documents 4 Axiom CLI tools: xclog, xcsym, xcui, and xcprof

Files

SKILL.mdMarkdownGitHub ↗

Axiom Tools & Onboarding

This suite covers Axiom itself — how to use it, what's available, and the tools that ship with it.

Routing

QuestionRead
"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

Using Axiom Skills

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.

<EXTREMELY-IMPORTANT> 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. </EXTREMELY-IMPORTANT>

The Rule

Check for Axiom skills BEFORE ANY RESPONSE when working with iOS/Swift projects. This includes clarifying questions. Even 1% chance means check first.

Red Flags — iOS-Specific Rationalizations

These thoughts mean STOP—you're rationalizing:

ThoughtReality
"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.

Skill Priority for iOS Development

When multiple Axiom skills could apply, use this priority:

1. Environment/Build first (axiom-build) — Fix the environment before debugging code 2. Architecture patterns (axiom-swiftui, axiom-data, axiom-concurrency) — These determine HOW to structure the solution 3. Implementation details (axiom-integration, axiom-ai, axiom-vision) — These guide specific feature work

Examples:

  • "Xcode build failed" → axiom-build first (environment)
  • "Add SwiftUI screen" → axiom-swiftui first (architecture), then maybe axiom-integration if using system features
  • "App is slow" → axiom-performance first (diagnose), then fix the specific domain
  • "Network request failing" → axiom-build first (environment check), then axiom-networking (implementation)

iOS Project Detection

Axiom skills apply when:

  • Working directory contains .xcodeproj or .xcworkspace
  • User mentions iOS, Swift, Xcode, SwiftUI, UIKit
  • User asks about Apple frameworks (SwiftData, CloudKit, etc.)
  • User reports iOS-specific errors (concurrency, memory, build failures)

Using Axiom Router Skills

Axiom uses router skills for progressive disclosure:

1. Check the appropriate router skill first (axiom-build, axiom-swiftui, axiom-data, etc.) 2. Router will invoke the specialized skill(s) you actually need 3. Follow the specialized skill exactly

Do not skip the router. Routers have decision logic to select the right specialized skill.

Multi-Domain Questions

When a question spans multiple domains, invoke ALL relevant routers — don't stop after the first one.

Examples:

  • "My SwiftUI view doesn't update when SwiftData changes" → invoke both axiom-swiftui AND axiom-data
  • "My widget isn't showing updated data from SwiftData" → invoke both axiom-integration AND axiom-data
  • "My Foundation Models session freezes the UI" → invoke both axiom-ai AND axiom-concurrency
  • "My Core Data saves lose data from background tasks" → invoke both axiom-data AND axiom-concurrency

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.

Backward Compatibility

  • Direct skill invocation still works: /skill axiom-concurrency
  • Commands work unchanged: /axiom:fix-build, /axiom:audit-accessibility
  • Agents work via routing or direct command invocation

When Axiom Skills Don't Apply

Skip Axiom skills for:

  • Non-iOS/Swift projects (Android, web, backend)
  • Generic programming questions unrelated to Apple platforms
  • Questions about Claude Code itself (use claude-code-guide skill)

But when in doubt for iOS/Swift work: check first, decide later.

Resources

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)

Related skills

How it compares

Use axiom-tools over generic iOS build skills when the task needs Axiom-specific console, crash, UI, or profiling CLIs.

FAQ

Which Axiom tools does axiom-tools cover?

axiom-tools documents four Axiom CLIs: xclog for console capture, xcsym for .ips and crash symbolication, xcui for simulator UI and accessibility, and xcprof for xctrace and CPU profile analysis.

When should iOS developers invoke axiom-tools?

Invoke axiom-tools when routing Swift agent work through Axiom for simulator logs, symbolicated crashes, UI validation, or performance traces instead of manual Xcode-only workflows.

Is Axiom Tools safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Mobile Developmenttestingintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.