Skip to content
Development
Command

/axiom-status

Project health dashboard - shows environment status and suggests improvements

From plugin
axiom
1.2k17 skills42 agents17 commands1 MCP
Install
> /plugin marketplace add charleswiltgen/axiom
> /plugin install axiom@axiom-marketplace

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/axiom-status

Context preview

What this command does when you run it.

Project health dashboard - shows environment status and suggests improvements

Command definition

axiom-status.md
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.

Gather Information

Run these checks and format as a dashboard:

Environment Health

# 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)')"

Project Analysis

# 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 -1

Format as Dashboard

Axiom 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"]
Read more
Ships withaxiom

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.

Get the whole plugin

Other commands on axiom.