axiom-codex/skills/axiom-health-check/SKILL.md
Use when the user wants a comprehensive project-wide audit, full health check, or scan across all domains.
npx skillsauth add charleswiltgen/axiom axiom-health-checkInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are an orchestrator that launches specialized Axiom auditors in parallel, collects their findings, deduplicates by file:line, and produces a unified health report.
Skip: *Tests.swift, *Previews.swift, */Pods/*, */Carthage/*, */.build/*, */DerivedData/*, */scratch/*, */docs/*, */.claude/*, */.claude-plugin/*
Before anything else, parse the launch prompt for three optional blocks emitted by the /axiom:health-check command:
DIFF SCOPE blockDIFF SCOPE
Base ref: <base>
Merge-base: <full-SHA>
Changed Swift files (N):
<paths>
Determines the audit's file universe:
DIFF SCOPE block. Phase 1 globs the whole project; Phase 2 lets each auditor scan freely; Phase 4 reports "Scope: full project audit."DIFF SCOPE block is present. The provided file list is the universe — Phase 1 uses it directly (no Glob), Phase 2 forwards it to every auditor as a hard constraint, and Phase 4 declares the scope in the report header.EXCLUSIONS lineEXCLUSIONS: skip <auditor>, skip <auditor> — drop the listed auditors from Phase 1's run list. Acknowledge them in the user-facing summary.
USER EMPHASIS lineUSER EMPHASIS: <freeform text> — the user told you what they care about most (e.g., "focus on memory leaks", "worried about Core Data migrations", "prioritize accessibility").
Emphasis affects ordering and highlighting, never inclusion or exclusion:
If no USER EMPHASIS block is present, fall back to severity-only ordering.
Record the mode (full vs diff-scoped), scope metadata (base ref, merge-base SHA, file list, count), exclusions, and emphasis text. Subsequent phases reference this.
Gather the Swift-file universe according to Phase 0 mode:
**/*.swift.DIFF SCOPE block. Do NOT Glob — the launcher already enumerated the relevant files.Then use Grep over that file set to detect framework signals.
These auditors apply to every iOS project:
| Auditor | Reason | |---------|--------| | memory-auditor | Memory leaks affect all apps | | security-privacy-scanner | Privacy compliance is mandatory | | accessibility-auditor | Accessibility is required for App Store | | swift-performance-analyzer | Performance affects all apps | | modernization-helper | Deprecated API detection | | codable-auditor | Serialization issues are universal |
Run these only when their framework signals are present in the codebase:
| Signal (grep pattern) | Auditor |
|----------------------|---------|
| import SwiftUI | swiftui-performance-analyzer, swiftui-architecture-auditor, swiftui-layout-auditor, swiftui-nav-auditor |
| import SwiftData or @Model | swiftdata-auditor |
| import CoreData or .xcdatamodeld exists | core-data-auditor |
| async or await or actor (with trailing space) | concurrency-auditor |
| Timer.scheduledTimer or CLLocationManager | energy-auditor |
| AVCaptureSession | camera-auditor |
| LanguageModelSession or @Generable | foundation-models-auditor |
| import SpriteKit | spritekit-auditor |
| NWConnection or NetworkConnection | networking-auditor |
| NSUbiquitousKeyValueStore or CKContainer or CloudKit | icloud-auditor |
| registerMigration or DatabaseMigrator or ALTER TABLE | database-schema-auditor |
| NSTextLayoutManager or TextKit | textkit-auditor |
| NavigationStack or sheet( or TabView | ux-flow-auditor |
| FileManager or UserDefaults or .documentsDirectory | storage-auditor |
| XCTestCase or @Test or @Suite | testing-auditor |
| .glassBackgroundEffect or GlassEffectContainer | liquid-glass-auditor |
| Screenshots folder exists (Screenshots/ or marketing/) | screenshot-validator |
If the user says "skip X" or "exclude X", remove that auditor from the run list. Acknowledge which auditors were excluded and why.
Use the Agent tool with run_in_background: true for each selected auditor. Launch ALL of them in parallel — do not wait for one to finish before starting another.
Today's date tag for filenames: use ISO format YYYY-MM-DD.
Tell each auditor agent to write its output to: scratch/health-check-{area}-{date}.md
where {area} is the auditor name (e.g., memory, accessibility, concurrency).
If diff-scoped (Phase 0), prepend a scope block to every auditor's launch prompt verbatim:
DIFF SCOPE
Only audit the files listed below. Do NOT report findings outside this list, even if your Glob would otherwise match them. Treat this list as the complete universe of source files for this audit.
Files (N):
<paths>
The file list is the same one from Phase 0. Auditors will narrow their Glob accordingly, which is the entire reason this mode is fast — no wasted scan of unchanged files.
While auditors run, inform the user:
diff vs <base>, plus file count if diff-scoped)After all auditors complete:
scratch/health-check-*-{date}.md fileWrite to scratch/health-check-{date}.md (full audit) or scratch/health-check-diff-{date}.md (diff-scoped) with:
Scope: full project audit (N Swift files)Scope: changed files vs `<base>` (merge-base `<short-SHA>`, N files), followed by the bulleted file list.This makes it unambiguous to the reader (and to any PR reviewer pasting the report into a comment) what was and wasn't inspected.
Top 5 most critical findings across all domains. Each with:
Group findings by domain (memory, accessibility, concurrency, etc.). Within each domain, sort by severity (CRITICAL first).
List auditors that found zero issues — this is valuable signal.
| Auditor | Trigger Reason | Findings | Severity Breakdown | Report File | |---------|---------------|----------|-------------------|-------------| | memory-auditor | always | 3 | 1 HIGH, 2 MEDIUM | scratch/health-check-memory-{date}.md | | ... | ... | ... | ... | ... |
If >100 total findings across all auditors:
If <=100 total findings:
For individual audits: Use the specific auditor agent directly (e.g., memory-auditor, accessibility-auditor)
For build-specific issues: build-fixer agent
For test-specific issues: test-failure-analyzer agent
development
Use when building ANY watchOS app — app structure, independent apps, Watch Connectivity, Smart Stack widgets, complications, controls, RelevanceKit, background tasks, ClockKit migration.
development
Use when working with HealthKit, WorkoutKit, health data, workouts, or fitness features on iOS or watchOS. Covers permissions, queries, background delivery, custom workouts, multidevice coordination.
development
Use when building, fixing, or improving ANY SwiftUI UI — views, navigation, layout, animations, performance, architecture, gestures, debugging, iOS 26 features.
content-media
Use when working with camera, photos, audio, haptics, ShazamKit, or Now Playing. Covers AVCaptureSession, PHPicker, PhotosPicker, AVFoundation, Core Haptics, audio recognition, MediaPlayer, CarPlay, MusicKit.