Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

swiftui-expertSwiftUI 专家

Agent Skill

swiftui-expert 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

445

周安装

18

GitHub Stars

1

下载量

140
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:swiftui-expert(SwiftUI 专家)
来源仓库:https://github.com/swiftyjourney/swiftui-expert-skill
仓库路径:skills/swiftui-expert
安装命令:
npx skills add https://github.com/swiftyjourney/swiftui-expert-skill --skill swiftui-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/swiftyjourney/swiftui-expert-skill --skill swiftui-expert

简介

SwiftUI 专家技能用于处理 GitHub 仓库、Issue、Pull Request 等协作信息,适合代码变更跟踪。

  • 它能围绕仓库状态和协作事项进行信息整理,帮助开发者了解项目进展和问题处理情况。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 了解具体用法。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • swiftui-expert 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

SwiftUI Expert Skill

Agent Behavior Contract

When this skill is active, follow these rules strictly:

  1. Focus on facts and best practices, not architecture — defer architectural decisions (MVVM, MVC, VIPER, Clean Architecture, Coordinator) to ios-architecture-expert.
  2. Always prefer @Observable over ObservableObject for new code. Mark @Observable classes with @MainActor unless using default actor isolation.
  3. Never use applyIf or generic conditional modifier helpers — they break view identity.
  4. Prefer modifiers over conditional views for state changes (preserves structural identity).
  5. Use modern APIs over deprecated equivalents — see references/modern-apis.md.
  6. Lead with corrected/improved code when reviewing; explain *why* a pattern is better (diffing, thread safety, API correctness).
  7. Use "prefer"/"avoid" for recommendations; "always"/"never" only for API correctness.
  8. Respond in the same language the user writes in — default to English when uncertain.
  9. Adopt Liquid Glass only when explicitly requested — glass is for controls and navigation only (HIG).
  10. Gate iOS 26+ features with #available and provide fallbacks.

Diagnostic Table

SymptomFirst checkSmallest fixDeep dive
Wrong property wrapper chosenOwnership directionMatch wrapper to data flowreferences/state-management.md
View re-renders too oftenDependency graphNarrow state dependenciesreferences/performance-patterns.md
Deprecated API warningAPI replacement tableSwap to modern equivalentreferences/modern-apis.md
View body is 200+ linesView extraction rulesExtract struct subviewsreferences/view-composition.md
ForEach flickers or reordersIdentity stabilityUse stable Identifiable IDreferences/list-patterns.md
Animation is janky or missingImplicit vs explicitMatch animation to state change sitereferences/animation-basics.md
Glass effect on wrong layerHIG complianceGlass on controls only, not contentreferences/liquid-glass.md
Custom control lacks accessibilitySemantic componentsUse Button/Label or accessibilityRepresentationreferences/accessibility-patterns.md

Quick Summary

AreaKey PrincipleReference
State Management@Observable + @MainActor; @State for owned, @Binding for child-modifies-parentreferences/state-management.md
View CompositionSmall single-responsibility views; extract structs, not @ViewBuilder functionsreferences/view-composition.md
Modern APIsforegroundStyle, clipShape, NavigationStack, Tab, Button over onTapGesturereferences/modern-apis.md
PerformanceCheap inits, pure body, narrow dependencies, stable ForEach identityreferences/performance-patterns.md
AnimationswithAnimation for events, .animation(_:value:) for reactive, transforms over layoutreferences/animation-basics.md
AccessibilitySemantic fonts/styles, @ScaledMetric, accessibilityRepresentation for custom controlsreferences/accessibility-patterns.md
Liquid GlassControls/navigation only (HIG); Glass.regular default; GlassEffectContainer for groupsreferences/liquid-glass.md

Quick Reference

Property Wrapper Selection

WrapperUse When
@StateInternal view state (must be private), or owned @Observable class
@BindingChild modifies parent's state
@BindableInjected @Observable needing bindings
letRead-only value from parent
varRead-only value watched via .onChange()
Full guide including legacy wrappers: state-management.md

Modern API Replacements

DeprecatedModern Alternative
foregroundColor()foregroundStyle()
cornerRadius()clipShape(.rect(cornerRadius:))
tabItem()Tab API (iOS 18+)
onTapGesture()Button (unless need location/count)
NavigationViewNavigationStack
onChange(of:) {value in}onChange(of:) {old, new in} or onChange(of:) {}
GeometryReadercontainerRelativeFrame() or visualEffect()
Full table: modern-apis.md

Workflow Decision Tree

1) Review existing SwiftUI code

  • Check property wrapper usage -> references/state-management.md
  • Verify modern API usage -> references/modern-apis.md
  • Verify view composition and extraction -> references/view-composition.md
  • Check performance patterns -> references/performance-patterns.md
  • Inspect accessibility and Liquid Glass -> references/accessibility-patterns.md, references/liquid-glass.md

2) Improve existing SwiftUI code

  • Audit state management (prefer @Observable over ObservableObject) -> references/state-management.md
  • Replace deprecated APIs -> references/modern-apis.md
  • Extract complex views into subviews -> references/view-composition.md
  • Optimize hot paths and list identity -> references/performance-patterns.md, references/list-patterns.md
  • Improve animations and accessibility -> references/animation-basics.md, references/accessibility-patterns.md

3) Implement new SwiftUI feature

  • Design data flow first: owned vs injected state -> references/state-management.md
  • Use modern APIs and @Observable -> references/modern-apis.md
  • Structure views for optimal diffing -> references/view-composition.md
  • Apply correct animation patterns -> references/animation-basics.md, references/animation-advanced.md
  • Add accessibility and glass effects (if requested) -> references/accessibility-patterns.md, references/liquid-glass.md

Guardrails

  • Do not enforce specific architectures (MVVM, MVC, VIPER) — defer to ios-architecture-expert
  • Do not use applyIf or conditional modifier helpers that break view identity
  • Do not declare passed values as @State or @StateObject — they only accept initial values
  • Do not create objects or start Tasks in view initializers or body
  • Do not use .indices for ForEach identity with dynamic content
  • Do not apply glass effects to content layer views — glass is for controls and navigation only (HIG)
  • Do not use AnyView in list rows
  • Do not use GeometryReader when containerRelativeFrame(), onGeometryChange, or visualEffect suffice

Verification Checklist

When implementing or reviewing SwiftUI code:

  1. Property wrappers match ownership direction (@State private, @Binding for modification, @Observable for shared)
  2. No deprecated APIs (foregroundColor, cornerRadius, NavigationView, tabItem)
  3. View body is pure — no side effects, no Task creation, no object allocation
  4. Complex views extracted into struct subviews (not @ViewBuilder functions)
  5. ForEach uses stable Identifiable identity (never .indices)
  6. Animations use value parameter or withAnimation (no deprecated parameterless .animation())
  7. Accessibility: semantic fonts, @ScaledMetric, Button over onTapGesture
  8. Liquid Glass (if present): #available gated, controls-only, GlassEffectContainer for groups
  9. No applyIf, no conditional modifier helpers, no if/else for style changes
  10. Views work in any context (no hardcoded sizes, no UIScreen.main.bounds)

Reference Router

Open the smallest reference that matches the question:

  • State & Data Flow

- state-management.md — property wrappers, data flow, when to use a ViewModel

  • View Structure

- view-composition.md — view extraction, styles, specialized views, reusability - list-patterns.md — ForEach identity, stability, list best practices

  • Modern APIs & Navigation

- modern-apis.md — modern API usage and deprecated replacements - navigation-patterns.md — NavigationStack, deep linking, programmatic navigation - scroll-patterns.md — ScrollView patterns and programmatic scrolling - text-formatting.md — modern text formatting and string operations

  • Performance & Optimization

- performance-patterns.md — optimization techniques and anti-patterns - image-optimization.md — AsyncImage, image downsampling

  • Animation

- animation-basics.md — core concepts, implicit/explicit animations - animation-transitions.md — transitions, custom transitions, Animatable - animation-advanced.md — transactions, phase/keyframe, completion handlers

  • Accessibility & Platform

- accessibility-patterns.md — semantic styling, adaptive spacing, VoiceOver - liquid-glass.md — iOS 26+ Liquid Glass API and HIG guidance

  • Navigation index

- references/_index.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.2%
按下载量换算53

Claude

29.36%
按下载量换算41

Cursor

18.51%
按下载量换算26

Gemini CLI

8.55%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills