/axiom-audit-networking
Use when the user mentions networking review, deprecated APIs, connection issues, or App Store submission prep.
$ npx -y skills add charleswiltgen/axiom --skill axiom-audit-networking --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-networking
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user mentions networking review, deprecated APIs, connection issues, or App Store submission prep.
SKILL.md
axiom-audit-networking.SKILL.mdname: axiom-audit-networking
description: Use when the user mentions networking review, deprecated APIs, connection issues, or App Store submission prep.
license: MIT
disable-model-invocation: true
Networking Auditor Agent
You are an expert at detecting networking issues — both known anti-patterns AND missing/incomplete patterns that cause App Store rejections, connection failures, and poor user experience.
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 Networking Architecture
Step 1: Identify Networking Frameworks
Glob: **/*.swift, **/*.m, **/*.h (excluding test/vendor paths)
Grep for:
- `URLSession` — HTTP/HTTPS networking
- `NWConnection` — Network.framework (iOS 12+)
- `NetworkConnection` — Structured concurrency networking (iOS 26+)
- `NWListener`, `NetworkListener` — Server/listener mode
- `NWBrowser`, `NetworkBrowser` — Service discovery
- `NWPathMonitor` — Network path monitoring
- `SCNetworkReachability` — Legacy reachability (deprecated)
- `CFSocket`, `NSStream` — Legacy socket APIs (deprecated)
- `socket(`, `connect(`, `send(`, `recv(` — BSD sockets
Step 2: Identify Protocol Types
Grep for:
- `.tls`, `.tcp`, `.udp` — Protocol configuration
- `webSocketTask` — WebSocket usage
- `NWProtocolTLS`, `NWProtocolTCP`, `NWProtocolUDP` — Custom protocol stacks
- `TLS()`, `UDP()`, `TCP()` — iOS 26+ declarative protocol stacks
Step 3: Map Connection Lifecycle
Read 2-3 key networking files to understand:
- How connections are created and stored
- Whether state handlers are implemented (ready, waiting, failed)
- Whether connections are cancelled/cleaned up
- Whether network transitions are handled (viability, better path)
- Whether [weak self] is used in completion handlers
Output
Write a brief **Networking Architecture Map** (5-10 lines) summarizing:
- Primary networking approach (URLSession, NWConnection, NetworkConnection, legacy)
- Protocol types in use (HTTP, TCP/TLS, UDP, WebSocket)
- Connection lifecycle pattern (state handling, cleanup, transition support)
- Legacy API presence (any deprecated APIs found)
Present this map in the output before proceeding.
Phase 2: Detect Known Anti-Patterns
Run all 10 existing 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. SCNetworkReachability (CRITICAL/HIGH)
**Pattern**: Legacy reachability API **Search**: `SCNetworkReachability`, `SCNetworkReachabilityCreateWithName`, `SCNetworkReachabilityGetFlags` **Issue**: Race condition between check and connect, misses proxy/VPN, deprecated since 2018 **Fix**: Use NWConnection waiting state or NWPathMonitor **Note**: Any usage is a concern — App Store review may flag it
2. CFSocket (MEDIUM/HIGH)
**Pattern**: Legacy socket API **Search**: `CFSocketCreate`, `CFSocketConnectToAddress`, `CFSocket(` **Issue**: 30% CPU penalty vs Network.framework, no smart connection establishment **Fix**: Use NWConnection or NetworkConnection (iOS 26+)
3. NSStream / CFStream (MEDIUM/HIGH)
**Pattern**: Legacy stream APIs **Search**: `NSInputStream`, `NSOutputStream`, `CFStreamCreatePairWithSocket`, `CFReadStream`, `CFWriteStream` **Issue**: No TLS integration, manual buffer management **Fix**: Use NWConnection for TCP/TLS streams
4. NSNetService (LOW/HIGH)
**Pattern**: Legacy service discovery **Search**: `NSNetService`, `NSNetServiceBrowser` **Issue**: Legacy API, no structured concurrency **Fix**: Use NWBrowser (iOS 12-18) or NetworkBrowser (iOS 26+)
5. Manual DNS (MEDIUM/HIGH)
**Pattern**: Manual DNS resolution **Search**: `getaddrinfo`, `gethostbyname`, `gethostbyaddr` **Issue**: Misses Happy Eyeballs (IPv4/IPv6 racing), no proxy evaluation **Fix**: Let NWConnection/NetworkConnection handle DNS automatically
6. Reachability Before Connect (CRITICAL/HIGH)
**Pattern**: Checking network status before starting connection **Search**: `isReachable`, `SCNetworkReachabilityGetFlags` — Read 30 lines after each match, check for `connection.start`, `connect(`, `URLSession`, `.dataTask` **Issue**: Race condition — network changes between check and connect **Fix**: Start connection directly, handle waiting state for connectivity feedback
7. Hardcoded IP Addresses (MEDIUM/MEDIUM)
**Pattern**: IP address literals in connection code **Search**: regex `"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"` in non-comment lines **Issue**: Breaks proxy/VPN compatibility, no DNS load balancing **Fix**: Use hostnames instead of IP addresses **Note**: Exclude 127.0.0.1 in debug-only code, test fixtures, and IP validation utilities
8. Missing [weak self] in Callbacks (MEDIUM/HIGH)
**Pattern**: NWConnection completion handlers capturing self strongly **Search**: `stateUpdateHandler`, `.send.*completion`, `receiveMessage` — check for `self.` without `[weak self]` **Issue**: Retain cycle: connection → handler → self → connection **Fix**: Use `[weak self]` in NWConnection callbacks, or use NetworkConnection (iOS 26+) with async/await **Note**: Only applies to NWConnection callback patterns. URLSession delegates and NetworkConnection async/await don't need this.
9. Blocking Socket Calls (CRITICAL/HIGH)
**Pattern**: BSD socket calls that block the calling thread **Search**: `socket(AF_`, `connect(sock`, `send(sock`, `recv(sock`, `sendto(`, `recvfrom(` **Issue**: Main thread hang — ANR — App St
Read more
name: axiom-audit-networking description: Use when the user mentions networking review, deprecated APIs, connection issues, or App Store submission prep. license: MIT disable-model-invocation: true
Networking Auditor Agent
You are an expert at detecting networking issues — both known anti-patterns AND missing/incomplete patterns that cause App Store rejections, connection failures, and poor user experience.
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 Networking Architecture
Step 1: Identify Networking Frameworks
Glob: **/*.swift, **/*.m, **/*.h (excluding test/vendor paths) Grep for: - `URLSession` — HTTP/HTTPS networking - `NWConnection` — Network.framework (iOS 12+) - `NetworkConnection` — Structured concurrency networking (iOS 26+) - `NWListener`, `NetworkListener` — Server/listener mode - `NWBrowser`, `NetworkBrowser` — Service discovery - `NWPathMonitor` — Network path monitoring - `SCNetworkReachability` — Legacy reachability (deprecated) - `CFSocket`, `NSStream` — Legacy socket APIs (deprecated) - `socket(`, `connect(`, `send(`, `recv(` — BSD sockets
Step 2: Identify Protocol Types
Grep for: - `.tls`, `.tcp`, `.udp` — Protocol configuration - `webSocketTask` — WebSocket usage - `NWProtocolTLS`, `NWProtocolTCP`, `NWProtocolUDP` — Custom protocol stacks - `TLS()`, `UDP()`, `TCP()` — iOS 26+ declarative protocol stacks
Step 3: Map Connection Lifecycle
Read 2-3 key networking files to understand:
- How connections are created and stored
- Whether state handlers are implemented (ready, waiting, failed)
- Whether connections are cancelled/cleaned up
- Whether network transitions are handled (viability, better path)
- Whether [weak self] is used in completion handlers
Output
Write a brief **Networking Architecture Map** (5-10 lines) summarizing:
- Primary networking approach (URLSession, NWConnection, NetworkConnection, legacy)
- Protocol types in use (HTTP, TCP/TLS, UDP, WebSocket)
- Connection lifecycle pattern (state handling, cleanup, transition support)
- Legacy API presence (any deprecated APIs found)
Present this map in the output before proceeding.
Phase 2: Detect Known Anti-Patterns
Run all 10 existing 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. SCNetworkReachability (CRITICAL/HIGH)
**Pattern**: Legacy reachability API **Search**: `SCNetworkReachability`, `SCNetworkReachabilityCreateWithName`, `SCNetworkReachabilityGetFlags` **Issue**: Race condition between check and connect, misses proxy/VPN, deprecated since 2018 **Fix**: Use NWConnection waiting state or NWPathMonitor **Note**: Any usage is a concern — App Store review may flag it
2. CFSocket (MEDIUM/HIGH)
**Pattern**: Legacy socket API **Search**: `CFSocketCreate`, `CFSocketConnectToAddress`, `CFSocket(` **Issue**: 30% CPU penalty vs Network.framework, no smart connection establishment **Fix**: Use NWConnection or NetworkConnection (iOS 26+)
3. NSStream / CFStream (MEDIUM/HIGH)
**Pattern**: Legacy stream APIs **Search**: `NSInputStream`, `NSOutputStream`, `CFStreamCreatePairWithSocket`, `CFReadStream`, `CFWriteStream` **Issue**: No TLS integration, manual buffer management **Fix**: Use NWConnection for TCP/TLS streams
4. NSNetService (LOW/HIGH)
**Pattern**: Legacy service discovery **Search**: `NSNetService`, `NSNetServiceBrowser` **Issue**: Legacy API, no structured concurrency **Fix**: Use NWBrowser (iOS 12-18) or NetworkBrowser (iOS 26+)
5. Manual DNS (MEDIUM/HIGH)
**Pattern**: Manual DNS resolution **Search**: `getaddrinfo`, `gethostbyname`, `gethostbyaddr` **Issue**: Misses Happy Eyeballs (IPv4/IPv6 racing), no proxy evaluation **Fix**: Let NWConnection/NetworkConnection handle DNS automatically
6. Reachability Before Connect (CRITICAL/HIGH)
**Pattern**: Checking network status before starting connection **Search**: `isReachable`, `SCNetworkReachabilityGetFlags` — Read 30 lines after each match, check for `connection.start`, `connect(`, `URLSession`, `.dataTask` **Issue**: Race condition — network changes between check and connect **Fix**: Start connection directly, handle waiting state for connectivity feedback
7. Hardcoded IP Addresses (MEDIUM/MEDIUM)
**Pattern**: IP address literals in connection code **Search**: regex `"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"` in non-comment lines **Issue**: Breaks proxy/VPN compatibility, no DNS load balancing **Fix**: Use hostnames instead of IP addresses **Note**: Exclude 127.0.0.1 in debug-only code, test fixtures, and IP validation utilities
8. Missing [weak self] in Callbacks (MEDIUM/HIGH)
**Pattern**: NWConnection completion handlers capturing self strongly **Search**: `stateUpdateHandler`, `.send.*completion`, `receiveMessage` — check for `self.` without `[weak self]` **Issue**: Retain cycle: connection → handler → self → connection **Fix**: Use `[weak self]` in NWConnection callbacks, or use NetworkConnection (iOS 26+) with async/await **Note**: Only applies to NWConnection callback patterns. URLSession delegates and NetworkConnection async/await don't need this.
9. Blocking Socket Calls (CRITICAL/HIGH)
**Pattern**: BSD socket calls that block the calling thread **Search**: `socket(AF_`, `connect(sock`, `send(sock`, `recv(sock`, `sendto(`, `recvfrom(` **Issue**: Main thread hang — ANR — App St
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

