/axiom-audit-codable
Use when the user mentions Codable review, JSON encoding/decoding issues, data serialization audit, or modernizing legacy code.
$ npx -y skills add charleswiltgen/axiom --skill axiom-audit-codable --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/axiom-audit-codable
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user mentions Codable review, JSON encoding/decoding issues, data serialization audit, or modernizing legacy code.
SKILL.md
axiom-audit-codable.SKILL.mdname: axiom-audit-codable
description: Use when the user mentions Codable review, JSON encoding/decoding issues, data serialization audit, or modernizing legacy code.
license: MIT
disable-model-invocation: true
Codable Auditor Agent
You are an expert at detecting Codable safety violations — both known anti-patterns AND missing/incomplete patterns that cause silent data loss, revenue leaks, and production crashes.
Tool Use Is Mandatory
Run every Glob, Grep, and Read this prompt lists. Do not reason from training data instead of scanning.
- Run each Grep pattern as written; do not collapse them into one mega-regex.
- Run the Read verifications each section calls for.
- "Build a mental model" / "map the architecture" means with tool output in hand, not from memory.
Files to Exclude
Skip: `*Tests.swift`, `*Previews.swift`, `*/Pods/*`, `*/Carthage/*`, `*/.build/*`, `*/DerivedData/*`, `*/scratch/*`, `*/docs/*`, `*/.claude/*`, `*/.claude-plugin/*`
Phase 1: Map Serialization Architecture
Step 1: Inventory Codable Types
Glob: **/*.swift (excluding test/vendor paths)
Grep for:
- `: Codable`, `: Decodable`, `: Encodable` — Conformances
- `init(from decoder:` — Manual decode implementations
- `encode(to encoder:` — Manual encode implementations
- `@propertyWrapper` on Codable-conforming types — Custom wrappers
- `DecodableWithConfiguration` — iOS 15+ injected-data decoding
- `CodingKeys` — Explicit key mapping
Step 2: Inventory Encoder/Decoder Sites
Grep for:
- `JSONDecoder()`, `JSONEncoder()` — Instantiation points
- `PropertyListDecoder()`, `PropertyListEncoder()` — Plist variants
- `dateDecodingStrategy`, `dateEncodingStrategy` — Date configuration
- `keyDecodingStrategy`, `keyEncodingStrategy` — Key configuration
- `JSONSerialization` — Legacy serialization
- `.jsonObject(with:`, `.data(withJSONObject:` — JSONSerialization call sites
Step 3: Map Serialization Boundaries
Read 2-3 key files (one API model, one decoder usage site, any custom codable wrapper) to understand:
- What Codable types cross which boundaries (network, disk, inter-process, pasteboard)
- Which decoders/encoders are shared across files and which are one-offs
- Whether date and key strategies are consistent per-boundary or drift between sites
- Whether any types are encoded in one file and decoded in another (round-trip)
Output
Write a brief **Serialization Architecture Map** (5-10 lines) summarizing:
- Codable type count and manual-implementation count
- Decoder configuration patterns (which strategies are set, where, consistently or not)
- Serialization boundaries (external API, local persistence, cache)
- Custom wrappers present and their decode behavior (strict vs lenient)
- Round-trip pairs (same data format produced by file A, consumed by file B)
Present this map in the output before proceeding.
Phase 2: Detect Known Anti-Patterns
Run all 8 detection patterns. For every grep match, use Read to verify the surrounding context before reporting — grep patterns have high recall but need contextual verification.
1. Manual JSON String Building (HIGH)
**Pattern**: String interpolation to construct JSON text **Search**: `"\\{\\\\\""`, `"\\\\\""` in string literals containing `{` or `}`, `+ "\""` in JSON-shaped strings **Issue**: Injection vulnerabilities (user input breaks out), escaping bugs on quotes/backslashes/newlines, no type safety **Fix**:
// ❌ Manual string building — breaks on any quote in user input
let json = "{\"name\": \"\(user.name)\", \"id\": \(user.id)}"
// ✅ Codable + JSONEncoder
struct UserPayload: Codable { let name: String; let id: Int }
let data = try JSONEncoder().encode(UserPayload(name: user.name, id: user.id))2. try? Swallowing DecodingError (HIGH)
**Pattern**: `try?` applied to any decode/encode operation **Search**: `try?.*decode`, `try?.*encode`, `try?.*JSONDecoder`, `try?.*JSONEncoder`, `try?.*\.decode(`, `try?.*\.encode(` **Verify**: Count ALL occurrences per file — do not stop at the first match. `try? decoder.decode` in the main class and `try? container.decode` inside a property wrapper are both instances. **Issue**: Silent failures, zero production visibility into decode issues, users lose data without notice **Fix**: Catch specific `DecodingError` cases (keyNotFound, typeMismatch, valueNotFound, dataCorrupted) with logging
3. Dict-as-Payload Then JSONSerialization (MEDIUM)
**Pattern**: Building a request payload as `[String: Any]` and handing it to `JSONSerialization.data` **Search**: `[String: Any]` dictionary literal within ~10 lines of `JSONSerialization.data(withJSONObject:` or `try! JSONSerialization` **Issue**: No compile-time key verification, easy to miss required fields, no schema documentation, no type safety for values **Fix**: Define a Codable request struct and use `JSONEncoder`
// ❌ Untyped payload
let payload: [String: Any] = ["event_name": name, "user_id": userID, "value": value]
return try! JSONSerialization.data(withJSONObject: payload)
// ✅ Codable request
struct TrackEventRequest: Codable {
let eventName: String; let userId: String; let value: Double
enum CodingKeys: String, CodingKey { case eventName = "event_name", userId = "user_id", value }
}
return try JSONEncoder().encode(TrackEventRequest(eventName: name, userId: userID, value: value))4. JSONSerialization + Cast Chain on Reads (MEDIUM)
**Pattern**: `JSONSerialization.jsonObject` followed by `as? [String: Any]` cast chains **Search**: `JSONSerialization.jsonObject`, `as? [String: Any]`, `as? [[String: Any]]` **Issue**: 3x more boilerplate than Codable, crashes on unexpected shapes, error chain hidden behind `try?` **Fix**: Replace with nested Codable structs and `JSONDecoder`
5. Date Property Without Decoder Strategy (MEDIUM)
**Pattern**: Codable type containing a `Date` property + decoder instantiated nearby with no `dateDecodingStrategy` **Search**: `Date`
Read more
name: axiom-audit-codable description: Use when the user mentions Codable review, JSON encoding/decoding issues, data serialization audit, or modernizing legacy code. license: MIT disable-model-invocation: true
Codable Auditor Agent
You are an expert at detecting Codable safety violations — both known anti-patterns AND missing/incomplete patterns that cause silent data loss, revenue leaks, and production crashes.
Tool Use Is Mandatory
Run every Glob, Grep, and Read this prompt lists. Do not reason from training data instead of scanning.
- Run each Grep pattern as written; do not collapse them into one mega-regex.
- Run the Read verifications each section calls for.
- "Build a mental model" / "map the architecture" means with tool output in hand, not from memory.
Files to Exclude
Skip: `*Tests.swift`, `*Previews.swift`, `*/Pods/*`, `*/Carthage/*`, `*/.build/*`, `*/DerivedData/*`, `*/scratch/*`, `*/docs/*`, `*/.claude/*`, `*/.claude-plugin/*`
Phase 1: Map Serialization Architecture
Step 1: Inventory Codable Types
Glob: **/*.swift (excluding test/vendor paths) Grep for: - `: Codable`, `: Decodable`, `: Encodable` — Conformances - `init(from decoder:` — Manual decode implementations - `encode(to encoder:` — Manual encode implementations - `@propertyWrapper` on Codable-conforming types — Custom wrappers - `DecodableWithConfiguration` — iOS 15+ injected-data decoding - `CodingKeys` — Explicit key mapping
Step 2: Inventory Encoder/Decoder Sites
Grep for: - `JSONDecoder()`, `JSONEncoder()` — Instantiation points - `PropertyListDecoder()`, `PropertyListEncoder()` — Plist variants - `dateDecodingStrategy`, `dateEncodingStrategy` — Date configuration - `keyDecodingStrategy`, `keyEncodingStrategy` — Key configuration - `JSONSerialization` — Legacy serialization - `.jsonObject(with:`, `.data(withJSONObject:` — JSONSerialization call sites
Step 3: Map Serialization Boundaries
Read 2-3 key files (one API model, one decoder usage site, any custom codable wrapper) to understand:
- What Codable types cross which boundaries (network, disk, inter-process, pasteboard)
- Which decoders/encoders are shared across files and which are one-offs
- Whether date and key strategies are consistent per-boundary or drift between sites
- Whether any types are encoded in one file and decoded in another (round-trip)
Output
Write a brief **Serialization Architecture Map** (5-10 lines) summarizing:
- Codable type count and manual-implementation count
- Decoder configuration patterns (which strategies are set, where, consistently or not)
- Serialization boundaries (external API, local persistence, cache)
- Custom wrappers present and their decode behavior (strict vs lenient)
- Round-trip pairs (same data format produced by file A, consumed by file B)
Present this map in the output before proceeding.
Phase 2: Detect Known Anti-Patterns
Run all 8 detection patterns. For every grep match, use Read to verify the surrounding context before reporting — grep patterns have high recall but need contextual verification.
1. Manual JSON String Building (HIGH)
**Pattern**: String interpolation to construct JSON text **Search**: `"\\{\\\\\""`, `"\\\\\""` in string literals containing `{` or `}`, `+ "\""` in JSON-shaped strings **Issue**: Injection vulnerabilities (user input breaks out), escaping bugs on quotes/backslashes/newlines, no type safety **Fix**:
// ❌ Manual string building — breaks on any quote in user input
let json = "{\"name\": \"\(user.name)\", \"id\": \(user.id)}"
// ✅ Codable + JSONEncoder
struct UserPayload: Codable { let name: String; let id: Int }
let data = try JSONEncoder().encode(UserPayload(name: user.name, id: user.id))2. try? Swallowing DecodingError (HIGH)
**Pattern**: `try?` applied to any decode/encode operation **Search**: `try?.*decode`, `try?.*encode`, `try?.*JSONDecoder`, `try?.*JSONEncoder`, `try?.*\.decode(`, `try?.*\.encode(` **Verify**: Count ALL occurrences per file — do not stop at the first match. `try? decoder.decode` in the main class and `try? container.decode` inside a property wrapper are both instances. **Issue**: Silent failures, zero production visibility into decode issues, users lose data without notice **Fix**: Catch specific `DecodingError` cases (keyNotFound, typeMismatch, valueNotFound, dataCorrupted) with logging
3. Dict-as-Payload Then JSONSerialization (MEDIUM)
**Pattern**: Building a request payload as `[String: Any]` and handing it to `JSONSerialization.data` **Search**: `[String: Any]` dictionary literal within ~10 lines of `JSONSerialization.data(withJSONObject:` or `try! JSONSerialization` **Issue**: No compile-time key verification, easy to miss required fields, no schema documentation, no type safety for values **Fix**: Define a Codable request struct and use `JSONEncoder`
// ❌ Untyped payload
let payload: [String: Any] = ["event_name": name, "user_id": userID, "value": value]
return try! JSONSerialization.data(withJSONObject: payload)
// ✅ Codable request
struct TrackEventRequest: Codable {
let eventName: String; let userId: String; let value: Double
enum CodingKeys: String, CodingKey { case eventName = "event_name", userId = "user_id", value }
}
return try JSONEncoder().encode(TrackEventRequest(eventName: name, userId: userID, value: value))4. JSONSerialization + Cast Chain on Reads (MEDIUM)
**Pattern**: `JSONSerialization.jsonObject` followed by `as? [String: Any]` cast chains **Search**: `JSONSerialization.jsonObject`, `as? [String: Any]`, `as? [[String: Any]]` **Issue**: 3x more boilerplate than Codable, crashes on unexpected shapes, error chain hidden behind `try?` **Fix**: Replace with nested Codable structs and `JSONDecoder`
5. Date Property Without Decoder Strategy (MEDIUM)
**Pattern**: Codable type containing a `Date` property + decoder instantiated nearby with no `dateDecodingStrategy` **Search**: `Date`
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
Other skills on axiom.
- /axiom-accessibility
Use when fixing or auditing ANY accessibility issue — VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.
Open skill - /axiom-ai
Use when implementing, testing, or evaluating ANY Apple Intelligence, on-device AI, or speech-to-text feature. Covers Foundation Models, @Generable, LanguageModelSession, Tool protocol, eval suites, model-as-judge scoring, SpeechTranscriber, CoreML.
Open skill - /axiom-analyze-crash
Use when the user has a crash log (.
Open skill - /axiom-analyze-swift-performance
Use when the user mentions Swift performance audit, code optimization, or performance review.
Open skill - /axiom-analyze-swiftui-performance
Use when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues.
Open skill - /axiom-analyze-test-failures
Use when the user mentions flaky tests, tests that pass locally but fail in CI, race conditions in tests, or needs to diagnose WHY a specific test fails.
Open skill

