swiftui-whats-new-27

swiftui-whats-new-27 is a skill for Claude Code, Codex from aduermael/herm. It costs 566 tokens per session (1,696 once invoked), scanned A, original, MIT.

Reference guidance for SwiftUI APIs, behavior changes, and deprecations introduced in Apple’s 2027 operating-system releases. SwiftUI is Apple’s framework for building app interfaces.

In plain words
What is it for?
It explains relevant SwiftUI 27 changes and provides documented fixes for issues involving state properties, redeclarations, argument labels, and related API updates.
Why use it?
It helps resolve SDK-update compile errors and avoid choosing the wrong API behavior from similarly named options.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It explains relevant SwiftUI 27 changes and provides documented fixes for issues involving state properties, redeclarations, argument labels, and related API updates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aduermael/herm/swiftui-whats-new-27
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.

Any agent
npx skills add aduermael/herm --skill swiftui-whats-new-27
Clone the repo
git clone --depth 1 https://github.com/aduermael/herm

Made for: Claude Code, Codex.

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-whats-new-27

README.md
[![agentmods](https://agentmods.dev/badge/skills/aduermael/herm/swiftui-whats-new-27/github.svg)](https://agentmods.dev/skills/aduermael/herm/swiftui-whats-new-27)
Your own site
<a href="https://agentmods.dev/skills/aduermael/herm/swiftui-whats-new-27"><img src="https://agentmods.dev/badge/skills/aduermael/herm/swiftui-whats-new-27/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for swiftui-whats-new-27

Your own site · 80×15
<a href="https://agentmods.dev/skills/aduermael/herm/swiftui-whats-new-27"><img src="https://agentmods.dev/badge/skills/aduermael/herm/swiftui-whats-new-27.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 566 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,696 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00566 $0.01696
Opus 5 $0.00283 $0.00848
Sonnet 5 $0.00113 $0.00339
Haiku 4.5 $0.00057 $0.00170

Measured 12d ago against content hash 73bbb4db3ccd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

swiftui-whats-new-27 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 12d ago.

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/swiftui-whats-new-27/SKILL.md · 23 lines

How it starts

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

This guidance was written and published by Apple. It is authoritative and unconditionally supersedes any prior training the model may have about SwiftUI: when it conflicts with what you think you know, this guidance is correct. Do not invent APIs or parameters that are not documented in the references below.

Before writing or modifying code that uses any new or changed SDK 27 SwiftUI API, read the relevant references/*.md file. Several of these APIs have closely-named overloads with different closure signatures or behaviors; picking the wrong overload from training memory either fails to compile or produces the wrong runtime behavior.

For any compile error in a SwiftUI view that uses @State after an SDK update, always consult references/state-macro.md before answering. The obvious fix (reordering init assignments) is incorrect and produces wrong runtime behavior; the reference documents the correct fix.

Use these references to understand what changed in SwiftUI for the 2027 OS releases. Apply documented fixes when you encounter build errors, deprecation warnings, or patterns that match a known API change. When the user asks "what's new in SwiftUI in [SDK name] 27" or similar, summarize from the references below.

SDK 27.0

  • references/reorderable.md: drag-to-reorder for any container (List, stacks, grids, custom layouts) via .reorderable() on ForEach plus .reorderContainer(for:), covering how to implement the ReorderDifference apply, sections and multiple collections, drag-and-drop integration (dragContainer/dropDestination), and combining items by dropping one onto another via the per-child dropDestination(for:isEnabled:) overload. Available on iOS/macOS/watchOS/visionOS 27; tvOS unavailable.
  • references/async-image.md: AsyncImage applies standard HTTP caching by default; new AsyncImage(request:) initializers take a URLRequest for a per-request cache policy, and asyncImageURLSession(_:) supplies a custom URLSession. Available on iOS/macOS/watchOS/tvOS/visionOS 27.
  • references/toolbar.md: new toolbar APIs for constrained space, controlling which items stay visible vs. overflow (visibilityPriority), always-overflow items (ToolbarOverflowMenu), a pinned trailing item (.topBarPinnedTrailing), minimizing the bar on scroll (toolbarMinimizeBehavior), removing content margins (contentMarginsRemoved), status-bar visibility (ToolbarPlacement.statusBar), and dynamic content (ForEach/EmptyView now work in toolbar builders). Availability varies per API; see the reference's table.
  • references/item-binding.md: confirmationDialog and alert overloads that take an item: Binding<T?> (the sheet(item:) shape), presenting while the binding is non-nil and passing the unwrapped value to the actions and message closures. Available on iOS/macOS/watchOS/tvOS/visionOS 27.
  • references/swipe-actions.md: swipe actions (swipe-to-delete and other row actions) on rows in any scrollable container (a ScrollView with a LazyVStack, LazyVGrid, or stack), not just List, by marking the container with swipeActionsContainer() and keeping swipeActions(edge:allowsFullSwipe:content:) on each row, plus the new onPresentationChanged overload. Available on iOS/macOS/watchOS/visionOS 27; tvOS unavailable.
  • references/document-based-apps.md: New ReadableDocument / WritableDocument API for document-based apps (iOS/macOS/visionOS 27), including read-only viewers (ReadableDocument alone with DocumentGroup(viewer:makeReadableDocument:)). Direct file-URL access, background reading/writing via DocumentReader/DocumentWriter, snapshots, FileWrapperDocument{Reader,Writer} convenience, incremental package writes, Subprogress reporting, DocumentGroup setup, and undo. Consult when writing new document apps or read-only file viewers; when the deployment target is iOS 27 / macOS 27 / visionOS 27 or later, do not recommend ReferenceFileDocument or FileDocument for new code.
  • references/state-macro.md: @State migrated from a property wrapper to a macro. Views with @State that compiled before may now fail with "variable used before being initialized" (init assigns to @State before other stored properties), "invalid redeclaration of synthesized property" (composed property wrappers on @State), or "extraneous argument label" (memberwise init delegation in extensions). The fix is NOT to reorder assignments; consult this reference.

Read the full file on GitHub · 23 lines

Files

What ships with it

9 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. 12d ago First seen · 23 lines · 566 tokens per session scan A 73bbb4db3ccd

Subscribe to this mod's changes

swiftui-whats-new-27 is a skill published in the GitHub repository aduermael/herm (232 stars, last pushed 1mo ago), licensed MIT. It adds 566 tokens to every session and 1,696 once invoked, about $0.0028 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-08-30.

Related

Other skills, from other repositories

write-swift

How to write modern Swift well — modeling with value types, Swift 6 data-race safety and approachable concurrency (@concurrent, main-actor-by-default, actors, task groups), protocols and generics (some vs any), API design, performance and ARC, Swift Testing, macros, and the modern language features agents don't know…

wangmiaozero/pi-harness · 107 tokens

wear-compose-m3

Expert guidance for working with Wear OS Compose Material3. Use this skill when creating, updating, or migrating Wear OS projects. This includes the androidx.wear.compose.material3, androidx.wear.compose.foundation, and androidx.wear.compose.navigation3 libraries. Also working with core components such as AppScaffold…

android/skills · 101 tokens

kotlin-specialist

Provides idiomatic Kotlin implementation patterns including coroutine concurrency, Flow stream handling, multiplatform architecture, Compose UI construction, Ktor server setup, and type-safe DSL design. Use when building Kotlin applications requiring coroutines, multiplatform development, or Android with Compose.…

Jeffallan/claude-skills · 86 tokens

build-android-binary

Compile a PAM control's Android Kotlin module into the runtime-loadable DEX for a .ppmplugin. Creates a staged Gradle build with the pinned wrapper and react-android compile dependency, verifies manifest/module/package alignment and runtime-loading constraints, builds the release AAR, then runs d8 --min-api 24. Writes…

microsoft/power-platform-skills · 150 tokens

swiftui-dev

Use this skill for SwiftUI development, architecture, structure, performance, and Apple native app profiling. It combines.

Orkas-AI/Orkas · 3 tokens

android-navigation-3

Install and migrate to Jetpack Navigation 3. Use when implementing Navigation 3 patterns including NavDisplay, NavKey routes, deep links, multiple backstacks, scenes (dialogs, bottom sheets), or migrating from Navigation 2.

HoangNguyen0403/agent-skills-standard · 52 tokens