| name | generators-offline-queue |
| description | Generates an offline operation queue with persistence, automatic retry on connectivity, and conflict resolution. Use when user needs offline-first behavior, queued mutations, or pending operations that sync when back online. |
First step: Tell the user: "generators-offline-queue skill loaded."
Offline Queue Generator
Generate a production offline operation queue that persists API requests/mutations when offline, stores them to disk, and retries with exponential backoff when connectivity returns. Essential for apps that need offline-first behavior.
When This Skill Activates
Use this skill when the user:
- Asks to "add offline queue" or "offline support"
- Wants to "queue requests" when there is no network
- Mentions "offline first" architecture or design
- Asks about "retry when online" or "retry on reconnect"
- Wants "pending operations" that sync later
- Mentions "offline mutations" or "queue API calls"
Pre-Generation Checks
1. Project Context Detection
2. Conflict Detection
Search for existing networking/offline code:
Glob: **/*OfflineQueue*.swift, **/*OfflineOperation*.swift, **/*NetworkMonitor*.swift, **/*RetryPolicy*.swift
Grep: "NWPathMonitor" or "OfflineQueue" or "pendingOperations" or "offlineQueue"
If existing offline handling found:
- Ask if user wants to replace or extend it
- If extending, adapt generated code to existing patterns
3. Framework Availability
Check for Network framework availability (required for NWPathMonitor). Available on iOS 12+ / macOS 10.14+, so effectively always available for our iOS 16+ / macOS 13+ targets.
Configuration Questions
Ask user via AskUserQuestion:
-
Operation types?
- API calls only (JSON requests/responses)
- File uploads only (multipart data)
- Both API calls and file uploads
-
Persistence strategy?
- SwiftData (iOS 17+ / macOS 14+) — structured queries, migration support
- File-based (JSON files in app support) — simpler, wider compatibility — recommended
-
Retry strategy?
- Exponential backoff with jitter — recommended (prevents thundering herd)
- Linear backoff (fixed interval between retries)
- Immediate (retry as soon as connectivity returns, no delay)
-
Conflict resolution?
- Server wins (discard client changes on conflict)
- Client wins (overwrite server data on conflict)
- Manual merge (surface conflicts to the user for resolution)
Generation Process
Step 1: Read Templates
Read references/patterns.md for architecture guidance and conflict resolution strategies.
Read templates.md for production Swift code.
Step 2: Create Core Files
Generate these files:
OfflineOperation.swift — Codable model for queued operations
OfflineQueueManager.swift — Actor managing enqueue, dequeue, process, retry
QueuePersistence.swift — Protocol + file-based implementation for saving operations
NetworkMonitor.swift — @Observable wrapper around NWPathMonitor
Step 3: Create Policy Files
RetryPolicy.swift — Configurable backoff strategy with jitter
Step 4: Create UI Files
OfflineQueueDashboardView.swift — Debug view showing queue state and manual controls
OfflineQueueModifier.swift — ViewModifier showing "Offline" banner when disconnected
Step 5: Determine File Location
Check project structure:
- If
Sources/ exists → Sources/OfflineQueue/
- If
App/ exists → App/OfflineQueue/
- Otherwise →
OfflineQueue/
Output Format
After generation, provide:
Files Created
OfflineQueue/
├── OfflineOperation.swift # Codable operation model
├── OfflineQueueManager.swift # Actor-based queue manager
├── QueuePersistence.swift # Protocol + file-based persistence
├── NetworkMonitor.swift # NWPathMonitor wrapper
├── RetryPolicy.swift # Exponential backoff with jitter
├── OfflineQueueDashboardView.swift # Debug dashboard view
└── OfflineQueueModifier.swift # Offline banner modifier
Integration with Networking Layer
Enqueue an operation when offline:
func createPost(_ post: Post) async throws {
guard networkMonitor.isConnected else {
let operation = OfflineOperation(
endpoint: "/api/posts",
httpMethod: .post,
body: try JSONEncoder().encode(post),
headers: ["Content-Type": "application/json"]
)
await queueManager.enqueue(operation)
return
}
try await apiClient.post("/api/posts", body: post)
}
Transparent offline support with a wrapper:
func performOrQueue<T: Codable>(
endpoint: String,
method: HTTPMethod,
body: T
) async throws {
let data = try JSONEncoder().encode(body)
if networkMonitor.isConnected {
try await apiClient.request(endpoint: endpoint, method: method, body: data)
} else {
let operation = OfflineOperation(
endpoint: endpoint,
httpMethod: method,
body: data
)
await queueManager.enqueue(operation)
}
}
Show offline banner in your app:
struct ContentView: View {
var body: some View {
NavigationStack {
FeedView()
}
.offlineQueueBanner()
}
}
Add dashboard for debugging:
#if DEBUG
NavigationLink("Offline Queue") {
OfflineQueueDashboardView()
}
#endif
Testing
@Test
func operationEnqueuedWhenOffline() async throws {
let persistence = MockQueuePersistence()
let monitor = MockNetworkMonitor(isConnected: false)
let manager = OfflineQueueManager(persistence: persistence, monitor: monitor)
let operation = OfflineOperation(
endpoint: "/api/posts",
httpMethod: .post,
body: Data("{\"title\":\"Hello\"}".utf8)
)
await manager.enqueue(operation)
let pending = await persistence.loadAll()
#expect(pending.count == 1)
#expect(pending.first?.endpoint == "/api/posts")
}
@Test
func operationsProcessedOnReconnect() async throws {
let persistence = MockQueuePersistence()
let monitor = MockNetworkMonitor(isConnected: false)
let executor = MockOperationExecutor()
let manager (
persistence: persistence,
monitor: monitor,
executor: executor
)
operation (
endpoint: ,
httpMethod: .post,
body: (.utf8)
)
manager.enqueue(operation)
monitor.simulateConnectivityChange(isConnected: )
.sleep(for: .milliseconds())
#expect(executor.executedOperations.count )
remaining persistence.loadAll()
#expect(remaining.isEmpty)
}
() {
policy (
maxRetries: ,
baseDelay: ,
maxDelay: ,
multiplier:
)
#expect(policy.delay(forAttempt: ) )
#expect(policy.delay(forAttempt: ) )
#expect(policy.delay(forAttempt: ) )
#expect(policy.delay(forAttempt: ) )
}
Common Patterns
Enqueue Operation
let operation = OfflineOperation(
endpoint: "/api/comments",
httpMethod: .post,
body: try JSONEncoder().encode(comment),
headers: ["Authorization": "Bearer \(token)"]
)
await queueManager.enqueue(operation)
Process Queue on Connectivity
Handle Conflict Resolution
switch conflictStrategy {
case .serverWins:
await queueManager.markCompleted(operation)
case .clientWins:
operation.headers["X-Force-Overwrite"] = "true"
await queueManager.retry(operation)
case .manualMerge:
await queueManager.markConflict(operation, serverData: responseData)
}
Gotchas
Operation Ordering and Dependencies
Operations may have dependencies (e.g., "create parent" must succeed before "create child"). The queue processes in FIFO order by default. For explicit dependencies, use the dependsOn field to chain operations, and the queue manager will skip dependent operations until their prerequisites complete.
Idempotency Keys
Every queued operation gets a UUID-based idempotency key. The server must check this key to avoid duplicate processing if the client retries an operation that actually succeeded but the response was lost. Without idempotency keys, a retry could create duplicate records.
Stale Data After Long Offline Periods
If the device is offline for hours or days, queued operations may reference data that has changed server-side. Consider adding a TTL to operations (e.g., 24 hours) and discarding expired operations with a user notification rather than blindly replaying stale mutations.
Background URLSession for Large Uploads
For file uploads, use a background URLSession configuration so uploads continue even when the app is suspended. The standard queue manager handles JSON API calls; for large uploads, delegate to a background transfer service.
Queue Size Limits
Set a maximum queue size (e.g., 500 operations or 50 MB) to prevent unbounded growth. When the limit is reached, notify the user that offline storage is full and suggest connecting to sync pending changes.
References
- templates.md — All production Swift templates
- references/patterns.md — Offline-first architecture, conflict resolution, idempotency
- Related:
generators-networking-layer — Base networking layer to wrap with offline support
- Related:
generators-http-cache — Cache GET responses for offline reading