mcpbeat Sign in

Swift Architecture Agent Skill

Selects, reviews, and migrates Apple-platform app architectures across MV with Observation, MVVM, MVI, TCA, Clean Architecture, Coordinator, and legacy VIPER. Use when choosing module and dependency boundaries, escalating a feature beyond simple SwiftUI MV, planning incremental architecture migration, or auditing state ownership and test seams.

4k tokens
context cost
the whole folder, loaded on every use
3
files
instructions only
0
copies elsewhere
how many repositories repackaged it
960
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill swift-architecture

The instruction itself

11 sections, as written by the author

Swift Architecture

Choose the smallest architecture that makes state ownership, dependencies, side effects, and tests explicit. Default new SwiftUI features to MV; escalate only for observed complexity.

Contents

  • Scope Boundary
  • Decision Workflow
  • Pattern Selection
  • MV Default
  • Escalation Signals
  • Migration
  • Common Mistakes
  • Review Checklist
  • References

Scope Boundary

This skill owns pattern selection, module boundaries, dependency direction, migration strategy, and architecture-level test seams. Route SwiftUI property-wrapper wiring and view composition to swiftui-patterns, navigation APIs and route models to swiftui-navigation, isolation diagnostics to swift-concurrency, and test syntax/fixtures to swift-testing.

Decision Workflow

  • Record the feature's state owner, inputs, outputs, dependencies, side effects, navigation handoffs, and current tests.
  • Identify the concrete pressure: complex state machine, shared derived state, dependency control, feature composition, team ownership, or UIKit navigation.
  • Select the smallest pattern that addresses that pressure; write down what it adds and what remains unchanged.
  • Implement one vertical slice with injected dependencies and observable state transitions.
  • Run existing behavior tests plus state-transition and dependency-failure tests. If behavior changes, restore the fixture, fix the smallest boundary, and rerun before migrating another slice.

Pattern Selection

| Pattern | Choose when | Main cost |

|---|---|---|

| MV | SwiftUI feature has straightforward state and orchestration | Logic can drift into large views without decomposition |

| MVVM | Presentation logic needs an independently testable adapter | Extra layer can become a forwarding shell |

| MVI | A feature is best modeled as explicit state + intents + reducer/effects | Boilerplate and centralized transition design |

| TCA | Many composable features need deterministic effects, dependencies, and testing | Framework learning and architectural commitment |

| Clean Architecture | Large product needs strict dependency direction across domain/data/UI | Protocol and mapping overhead |

| Coordinator | UIKit or hybrid navigation needs a separate flow owner | Another lifecycle and routing owner |

| VIPER | Maintaining an existing UIKit module with established VIPER boundaries | Very high ceremony; poor default for new SwiftUI work |

Use Coordinator alongside another state pattern when navigation complexity is the pressure; it is not a replacement for domain/state architecture.

MV Default

Keep views as state expressions and put business operations in observable models and injected services:

@MainActor
@Observable
final class TripStore {
    private let client: TripClient
    var trips: [Trip] = []
    var error: Error?

    init(client: TripClient) { self.client = client }

    func load() async {
        do { trips = try await client.fetchTrips() }
        catch { self.error = error }
    }
}

struct TripList: View {
    @State private var store: TripStore

    init(client: TripClient) {
        _store = State(initialValue: TripStore(client: client))
    }

    var body: some View {
        List(store.trips) { Text($0.name) }
            .task { await store.load() }
    }
}

Load Architecture Pattern Recipes for MVVM, MVI, TCA, Clean Architecture, Coordinator, and VIPER structure.

Escalation Signals

  • Choose MVVM when substantial presentation transformation must be tested without rendering and the adapter has real behavior.
  • Choose MVI when transitions, invalid states, and effects need one auditable reducer-like path.
  • Choose TCA when feature composition, dependency overrides, cancellation, and deterministic effect tests recur across modules.
  • Choose Clean Architecture when independent domain rules and dependency direction matter across multiple delivery/data layers.
  • Add Coordinator for UIKit/hybrid route ownership, deep flow composition, or conditional navigation outside view controllers.
  • Keep VIPER for compatible legacy modules or deliberate migrations; do not start a new SwiftUI feature with it by habit.

Do not escalate merely because a view is long. First extract subviews, services, and focused observable models.

Migration

Migrate one feature boundary at a time:

  • Freeze behavior with tests and a dependency/state inventory.
  • Introduce the target boundary around existing operations.
  • Move one state transition or dependency at a time without rewriting UI and persistence simultaneously.
  • Compare behavior, navigation, cancellation, error, and persistence results after each slice.
  • Remove the old path only after no callers or tests depend on it.

For ObservableObject to Observation, preserve the same owner and mutation isolation before replacing wrappers. For MVVM to MV, delete forwarding view-model members only after views bind to the same model/service behavior. For TCA adoption, wrap one feature's state/actions/effects and migrate dependencies incrementally.

Common Mistakes

| Mistake | Fix |

|---|---|

| Pattern chosen by popularity | Tie it to an observed feature pressure. |

| View model only forwards properties | Remove it and use MV. |

| One object owns navigation, networking, formatting, persistence, and UI state | Split by responsibility and dependency direction. |

| TCA or Clean Architecture applied to trivial screens | Start with MV and preserve an escalation seam. |

| Coordinator used as a state architecture | Keep it focused on route/lifecycle ownership. |

| Multiple patterns mixed inside one feature | Define one local state/effect model and migrate at feature boundaries. |

| Big-bang migration | Move one tested vertical slice and rerun the same proof matrix. |

Review Checklist

  • [ ] Choice is justified by concrete feature/team pressures
  • [ ] State owner, mutation path, dependencies, effects, and navigation owner are explicit
  • [ ] Dependencies are injected and replaceable in tests
  • [ ] Pattern cost is proportional to feature complexity
  • [ ] UI mechanics, navigation APIs, isolation, and test syntax route to sibling skills
  • [ ] Migration preserves behavior one vertical slice at a time
  • [ ] Failure, cancellation, navigation, and persistence behavior are verified after each slice
  • [ ] No forwarding-only layers or god objects remain

References

Other skills for the same job

different authors, same section of the catalogue
GitHub Project Management
by ComeOnOliver
×3

Comprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning

14k tokens
Folder Structure Blueprint Generator
by github
vendor ×1

Comprehensive technology-agnostic prompt for analyzing and documenting project folder structures. Auto-detects project types (.NET, Java, React, Angular, Python, Node.js, Flutter), generates detailed blueprints with visualization options, naming conventions, file placement patterns, and extension templates for maintaining consistent code organization across diverse technology stacks.

3k tokens
Sequential Thinking
by mrgoonie
×1

Use when complex problems require systematic step-by-step reasoning with ability to revise thoughts, branch into alternative approaches, or dynamically adjust scope. Ideal for multi-stage analysis, design planning, problem decomposition, or tasks with initially unclear scope.

4k tokens
Openserv Multi Agent Workflows
by internet-court
×1

Multi-agent workflow examples to work together on the OpenServ Platform. Covers agent discovery, multi-agent workspaces, task dependencies, and workflow orchestration using the Platform Client. Read reference.md for the full API reference. Read openserv-agent-sdk and openserv-client for building and running agents.

24k tokens
Caveman Compress
by HoangNguyen0403
×1

> Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md.

7k tokens scripts
API Patterns
by lingxling
×1

API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.

5k tokens scripts
Github Workflow Automation
by lingxling
×1

Patterns for automating GitHub workflows with AI assistance, inspired by [Gemini CLI](https://github.com/google-gemini/gemini-cli) and modern DevOps practices.

5k tokens
Domain Identification Grouping
by christophacham
×1

Groups existing components into logical business domains to plan service-based architecture. Use when asking "which components belong together?", "group these into services", "organize by domain", "component-to-domain mapping", or planning service extraction from an existing codebase. Do NOT use for identifying new domains from scratch (use domain-analysis) or analyzing coupling (use coupling-analysis).

10k tokens

How to use it

Copy the folder

Take dpearson2699/swift-architecture from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.