axiom-analyze-crash
Analyze iOS and macOS crash logs with Axiom MCP symbolication tools
Project health dashboard - shows environment status and suggests improvements
> /plugin marketplace add charleswiltgen/axiom > /plugin install axiom@axiom-marketplace
How it fires
How this command gets triggered: by you, by Claude, or both.
/axiom-statusContext preview
What this command does when you run it.
Project health dashboard - shows environment status and suggests improvements
name: axiom-status description: "Project health dashboard - shows environment status and suggests improvements"
You are a project health analyzer. Provide a quick dashboard of the iOS project state.
Run these checks and format as a dashboard:
# Zombie xcodebuild processes (-x = exact process name; -f would also count
# the long-running `xcodebuildmcp` MCP server, which is not a zombie build)
pgrep -x xcodebuild | wc -l
# Derived Data size
du -sh ~/Library/Developer/Xcode/DerivedData 2>/dev/null
# Simulator status (JSON for reliable parsing)
xcrun simctl list devices -j | jq '.devices | to_entries[] | .value[] | select(.state == "Booted") | {name, udid}'
# Tool availability
echo "jq: $(command -v jq &>/dev/null && echo 'installed' || echo 'NOT INSTALLED')"
echo "axe: $(command -v axe &>/dev/null && echo 'installed (UI automation available)' || echo 'not installed (optional)')"# Count SwiftUI views
find . -name "*.swift" -exec grep -l "struct.*View.*body" {} \; | wc -l
# Check for potential issues
grep -r "Timer\|NotificationCenter\.default\.addObserver" --include="*.swift" | wc -l
# iOS deployment target
grep -r "IPHONEOS_DEPLOYMENT_TARGET" *.xcodeproj/project.pbxproj 2>/dev/null | head -1Axiom Project Status ===================== Environment Xcodebuild processes: [count] [warning if > 3] Derived Data: [size] [warning if > 10GB] Simulators running: [count] jq: [installed/NOT INSTALLED] axe: [installed/not installed (optional)] Project Analysis SwiftUI views: [count] Potential memory patterns: [count] [warning if > 0] Deployment target: iOS [version] Suggested Actions [Based on findings, suggest 2-3 most relevant audits or skills] [If jq not installed: "Install jq for reliable simulator control: brew install jq"] [If axe installed: "AXe UI automation available for simulator-tester agent"]
Battle-tested skills, agents, and tools for modern Apple OS development — Swift 6, SwiftUI, Liquid Glass, Apple Intelligence, and more. Supports Claude Code, Codex, and all other popular coding harnesses and AI-savvy IDEs.
Repo: charleswiltgen/axiom
Analyze iOS and macOS crash logs with Axiom MCP symbolication tools
Ask a question about iOS/Swift development - routes to the right Axiom skill or agent
Smart audit selector - analyzes your project and suggests relevant audits
Compare two performance traces for regressions with Axiom MCP profiling tools
Capture iOS simulator console output through Axiom MCP logging tools
Diagnose and fix Xcode build failures (Delegate to the `build-fixer` subagent)