swiftui-component-audit-workflow

swiftui-component-audit-workflow is a skill for Claude Code, Codex from gaelic-ghost/socket. It costs 65 tokens per session (1,297 once invoked), scanned A, original, Apache-2.0.

A workflow for reviewing SwiftUI components so they use clear inputs, local reactive state, and SwiftUI's built-in data flow. Reactive state means the interface updates when its data changes.

In plain words
What is it for?
Use it to audit or refactor views that depend on ViewModels, stores, services, routers, coordinators, or unnecessary abstraction layers.
Why use it?
It helps remove duplicated state, overly complicated collaborators, and imperative coordination that make SwiftUI features harder to understand and reuse.

Skill for Claude CodeCodex

Part of the apple-dev-skills plugin — 65 skills, 2 MCP servers shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/gaelic-ghost/socket/swiftui-component-audit-workflow
Any agent
npx skills add gaelic-ghost/socket --skill swiftui-component-audit-workflow
Clone the repo
git clone --depth 1 https://github.com/gaelic-ghost/socket

Made for: Claude Code, Codex.

Or install apple-dev-skills, the plugin that ships this one along with the rest of its 65 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for swiftui-component-audit-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/gaelic-ghost/socket/swiftui-component-audit-workflow.svg)](https://agentmods.dev/skills/gaelic-ghost/socket/swiftui-component-audit-workflow)
Your own site
<a href="https://agentmods.dev/skills/gaelic-ghost/socket/swiftui-component-audit-workflow"><img src="https://agentmods.dev/badge/skills/gaelic-ghost/socket/swiftui-component-audit-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,297 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00065 $0.01297
Opus 5 $0.00032 $0.00648
Sonnet 5 $0.00013 $0.00259
Haiku 4.5 $0.00006 $0.00130

Measured yesterday against content hash b13d92ded9a0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

swiftui-component-audit-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/apple-dev-skills/skills/swiftui-component-audit-workflow/SKILL.md · 95 lines

How it starts

The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SwiftUI Component Audit Workflow

Purpose

Audit or repair a SwiftUI feature without importing AppKit, UIKit, or generic imperative architecture into a declarative view tree. SwiftUI components stand on their own: they render from explicit values and framework state, own local presentation state, and express user intent through narrow actions. A feature service, when needed, is a direct concrete owner of one capability rather than a wrapper stack.

SwiftData And SwiftUI Rule

Keep SwiftData directly integrated with SwiftUI through modelContainer, environment modelContext, @Query, model objects, and narrow bindings. Do not insert repositories, stores, service mirrors, DTO mirrors, ViewModel caches, or other abstraction layers between SwiftData and SwiftUI. Hand persistence-specific decisions to swiftdata-workflow.

When To Use

  • Use for a SwiftUI architecture review, component audit, repair, or refactor.
  • Use when reusable views receive ViewModels, stores, services, managers, coordinators, or other collaborating objects.
  • Use when state is duplicated, a router or coordinator shadows SwiftUI navigation, or an environment becomes a dependency dump.
  • Use when a team needs concrete good/bad SwiftUI examples before implementing a feature.
  • Hand SwiftData persistence decisions to swiftdata-workflow, app and scene ownership to swiftui-app-architecture-workflow, and execution to the Xcode build or testing workflows.

Single-Path Workflow

  1. Read the relevant Apple documentation through explore-apple-swift-docs before proposing a repair.
  2. Inventory each view's stored properties, local state, environment reads, preferences, focus, commands, and outward actions.
  3. Classify every dependency:
    • component input: value, narrow binding, or action closure
    • component-local state: @State, derived value, or locally owned @Observable state
    • hierarchy context: existing or custom environment value/action
    • upward layout or presentation fact: preference key
    • active command context: focus or focused value
    • direct persistence state: ModelContainer, modelContext, @Query, model object, or narrow binding
    • non-SwiftUI boundary: networking, import/export, migration, testing, or server sync
    • direct concrete feature service: one capability or cohesive related group with a named app or scene lifecycle owner
  4. Report a finding for every reusable view that accepts an external ViewModel, store, coordinator, manager, service, or observable collaborator.
  5. Report a finding for every umbrella app service, forwarding service facade, repository/protocol/adapter chain, or service that has no direct capability boundary.
  6. Repair from the narrowest honest mechanism outward:
    • replace collaborators with values, bindings, and actions
    • move local presentation state into the owning view
    • use an existing environment action before adding a custom action
    • add a custom environment value or action only for a dynamic or broadly reused hierarchy capability
    • use preferences only for descendant-to-ancestor publication
    • restore direct SwiftData integration when persistence is being mirrored
    • collapse forwarding layers into the concrete feature service that owns the real capability
    • install that service in environment only when independent descendants need direct invocation or observation
  7. Remove explicit initializers that only duplicate the synthesized memberwise initializer.
  8. Re-audit the changed component boundaries and hand off for build, preview, or tests.

Read the full file on GitHub · 95 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 95 lines · 65 tokens per session scan A b13d92ded9a0

Subscribe to this mod's changes

swiftui-component-audit-workflow is a skill published in the GitHub repository gaelic-ghost/socket (7 stars, last pushed 9d ago), licensed Apache-2.0. It adds 65 tokens to every session and 1,297 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

pipeline

Use when the user wants a feature idea taken end-to-end in one autonomous run — phrases like "run the whole pipeline", "take this feature from idea to finished branch", "brainstorm then build it autonomously", "do everything from idea to merged", "implement all phases without stopping". Triggers when they want…

kardebadas/claude-plugin · 80 tokens

craft

Use when a product idea is still vague and needs to become a clear definition of what to build — "let's craft an app like X", "help me define what I actually want", "clarify this idea before we plan it". Also use before planning or implementation when requirements, UX, domain behaviour, or technical preferences have…

kardebadas/claude-plugin · 83 tokens

scenario-planning

Plans under genuine uncertainty — building scenarios, identifying which assumptions are load-bearing, setting early-warning indicators, and stress-testing a plan against futures rather than forecasting one. Use this when a decision depends on something unknowable, when a plan assumes conditions that may not hold…

cbrock84/headcount · 78 tokens

ai-ml-governance

Governs models and AI systems in production — intended use, evaluation, monitoring, human oversight, documentation, and the decision to deploy or retire. Use this before deploying a model or AI feature, when defining evaluation criteria, when a model's behavior has drifted, when assessing AI risk or regulatory…

cbrock84/headcount · 83 tokens

ai-research-analyst

Produces executive-level research — market sizing, competitor mapping, trend analysis, and strategic intelligence — grounded in cited sources with the confidence in each claim made explicit. Use this to analyze a market or industry, map competitors, evaluate a market-entry or build-versus-buy decision, produce a…

cbrock84/headcount · 91 tokens

implement-factory

Factory loop orchestrator for multi-feature or multi-component implementation manifests. Use for high-complexity work with parallel-eligible workstreams and holdout-scenario evaluation.

rsmdt/the-startup · 37 tokens