← Back to Skills Marketplace
steipete

Swiftui View Refactor

by Peter Steinberger · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
2794
Downloads
6
Stars
8
Active Installs
1
Versions
Install in OpenClaw
/install swiftui-view-refactor
Description
Refactor and review SwiftUI view files for consistent structure, dependency injection, and Observation usage. Use when asked to clean up a SwiftUI view’s layout/ordering, handle view models safely (non-optional when possible), or standardize how dependencies and @Observable state are initialized and passed.
README (SKILL.md)

SwiftUI View Refactor

Attribution: copied from @Dimillian’s Dimillian/Skills (2025-12-31).

Overview

Apply a consistent structure and dependency pattern to SwiftUI views, with a focus on ordering, Model-View (MV) patterns, careful view model handling, and correct Observation usage.

Core Guidelines

1) View ordering (top → bottom)

  • Environment
  • private/public let
  • @State / other stored properties
  • computed var (non-view)
  • init
  • body
  • computed view builders / other view helpers
  • helper / async functions

2) Prefer MV (Model-View) patterns

  • Default to MV: Views are lightweight state expressions; models/services own business logic.
  • Favor @State, @Environment, @Query, and task/onChange for orchestration.
  • Inject services and shared models via @Environment; keep views small and composable.
  • Split large views into subviews rather than introducing a view model.

3) Split large bodies and view properties

  • If body grows beyond a screen or has multiple logical sections, split it into smaller subviews.
  • Extract large computed view properties (var header: some View { ... }) into dedicated View types when they carry state or complex branching.
  • It's fine to keep related subviews as computed view properties in the same file; extract to a standalone View struct only when it structurally makes sense or when reuse is intended.
  • Prefer passing small inputs (data, bindings, callbacks) over reusing the entire parent view state.

Example (extracting a section):

var body: some View {
    VStack(alignment: .leading, spacing: 16) {
        HeaderSection(title: title, isPinned: isPinned)
        DetailsSection(details: details)
        ActionsSection(onSave: onSave, onCancel: onCancel)
    }
}

Example (long body → shorter body + computed views in the same file):

var body: some View {
    List {
        header
        filters
        results
        footer
    }
}

private var header: some View {
    VStack(alignment: .leading, spacing: 6) {
        Text(title).font(.title2)
        Text(subtitle).font(.subheadline)
    }
}

private var filters: some View {
    ScrollView(.horizontal, showsIndicators: false) {
        HStack {
            ForEach(filterOptions, id: \.self) { option in
                FilterChip(option: option, isSelected: option == selectedFilter)
                    .onTapGesture { selectedFilter = option }
            }
        }
    }
}

Example (extracting a complex computed view):

private var header: some View {
    HeaderSection(title: title, subtitle: subtitle, status: status)
}

private struct HeaderSection: View {
    let title: String
    let subtitle: String?
    let status: Status

    var body: some View {
        VStack(alignment: .leading, spacing: 4) {
            Text(title).font(.headline)
            if let subtitle { Text(subtitle).font(.subheadline) }
            StatusBadge(status: status)
        }
    }
}

4) View model handling (only if already present)

  • Do not introduce a view model unless the request or existing code clearly calls for one.
  • If a view model exists, make it non-optional when possible.
  • Pass dependencies to the view via init, then pass them into the view model in the view's init.
  • Avoid bootstrapIfNeeded patterns.

Example (Observation-based):

@State private var viewModel: SomeViewModel

init(dependency: Dependency) {
    _viewModel = State(initialValue: SomeViewModel(dependency: dependency))
}

5) Observation usage

  • For @Observable reference types, store them as @State in the root view.
  • Pass observables down explicitly as needed; avoid optional state unless required.

Workflow

  1. Reorder the view to match the ordering rules.
  2. Favor MV: move lightweight orchestration into the view using @State, @Environment, @Query, task, and onChange.
  3. If a view model exists, replace optional view models with a non-optional @State view model initialized in init by passing dependencies from the view.
  4. Confirm Observation usage: @State for root @Observable view models, no redundant wrappers.
  5. Keep behavior intact: do not change layout or business logic unless requested.

Notes

  • Prefer small, explicit helpers over large conditional blocks.
  • Keep computed view builders below body and non-view computed vars above init.
  • For MV-first guidance and rationale, see references/mv-patterns.md.
Usage Guidance
This skill appears coherent and low-risk: it only provides refactor rules for SwiftUI code and asks for no credentials or installs. Before applying automated refactors, review diffs or run them in a branch/PR to confirm behavior is unchanged. Don’t include secrets or private credentials in code you paste to any skill. If you’re concerned about an unknown source, prefer manual review or only use the guidelines as a checklist rather than allowing automated edits. If you want to prevent autonomous runs, restrict the skill’s invocation in your agent settings (it is user-invocable and can be allowed/disallowed at install time).
Capability Analysis
Type: OpenClaw Skill Name: swiftui-view-refactor Version: 1.0.0 The skill bundle is benign. All files, including the `SKILL.md` instructions for the AI agent, are entirely focused on providing architectural and refactoring guidelines for SwiftUI views. There is no evidence of data exfiltration, malicious execution, persistence, obfuscation, or prompt injection attempts designed to subvert the agent's behavior or access sensitive data. The content is consistent with its stated purpose of assisting with SwiftUI code review and refactoring.
Capability Assessment
Purpose & Capability
The skill's name/description (SwiftUI view refactor) matches the SKILL.md content: style and refactor guidelines for SwiftUI views. It requests no binaries, env vars, or installs that would be unrelated to refactoring Swift source.
Instruction Scope
SKILL.md contains only coding guidelines, examples, and a workflow for refactoring SwiftUI views. It does not instruct the agent to read system files, access credentials, or transmit code to external endpoints. Note: as an instruction-only skill, actual file access depends on what the agent is given at invocation — the skill itself doesn't expand scope.
Install Mechanism
No install spec or code files are included. Nothing is written to disk or downloaded by the skill.
Credentials
The skill declares no required environment variables, credentials, or config paths — proportional to a rules-and-style refactor helper.
Persistence & Privilege
always is false and the skill has no install or persistence steps. disable-model-invocation is false (normal platform default) but there are no other elevated privileges or cross-skill configuration changes requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install swiftui-view-refactor
  3. After installation, invoke the skill by name or use /swiftui-view-refactor
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Metadata
Slug swiftui-view-refactor
Version 1.0.0
License
All-time Installs 8
Active Installs 8
Total Versions 1
Frequently Asked Questions

What is Swiftui View Refactor?

Refactor and review SwiftUI view files for consistent structure, dependency injection, and Observation usage. Use when asked to clean up a SwiftUI view’s layout/ordering, handle view models safely (non-optional when possible), or standardize how dependencies and @Observable state are initialized and passed. It is an AI Agent Skill for Claude Code / OpenClaw, with 2794 downloads so far.

How do I install Swiftui View Refactor?

Run "/install swiftui-view-refactor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Swiftui View Refactor free?

Yes, Swiftui View Refactor is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Swiftui View Refactor support?

Swiftui View Refactor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Swiftui View Refactor?

It is built and maintained by Peter Steinberger (@steipete); the current version is v1.0.0.

💬 Comments