networkinglisted
Install: claude install-skill caglarbaranbora/Apple-Agent-Kit
# Networking — Foundations Skill
## Purpose
Route `URLSession` networking implementation tasks to the minimum
required Networking Knowledge Contracts — the async/await request path,
the delegate-driven surface built on top of it, and the two older API
families (completion handlers, Combine) an existing codebase may already
be using.
## Routing
Load only the contracts relevant to the task. All paths relative to
knowledge/networking/.
- Requests -> url-request-construction.md, async-data-fetching.md, url-session-configuration.md
- Data handling -> codable-decoding.md, http-error-handling.md
- Lifecycle -> task-cancellation.md
- Security & auth -> app-transport-security.md, authenticated-requests.md
- Delegates -> url-session-delegate.md (URLSessionDelegate, invalidation, delegate queue), background-transfers.md (background(withIdentifier:), handleEventsForBackgroundURLSession, didFinishDownloadingTo), transfer-progress-tracking.md (didWriteData, didSendBodyData, Task.progress)
- Server challenges -> authentication-challenges.md (URLAuthenticationChallenge, AuthChallengeDisposition, URLCredential), server-trust-evaluation.md (serverTrust, certificate pinning)
- Older API families -> completion-handler-apis.md (dataTask completionHandler, resume(), continuation bridging), data-task-publisher.md (Combine dataTaskPublisher)
Never load more than the contracts relevant to the specific question.
For the sign-in mechanism itself, route to
`skill.authenticationservic