Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

swift-patternsSwift 模式

Agent Skill

swift-patterns 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,983

周安装

81

GitHub Stars

7

下载量

642
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/efremidze/swift-patterns-skill --skill swift-patterns

简介

swift-patterns 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过命令行调用,支持基于线索的信息聚合与筛选。
  • 安装前需确认权限范围、维护状态及是否触发联网或命令执行。
  • 建议结合来源仓库和原始 README 进一步核验具体用法。

SKILL.md

swift-patterns

Review, refactor, or build SwiftUI features with correct state management, modern API usage, optimal view composition, and performance-conscious patterns. Prioritize native APIs, Apple design guidance, and testable code structure. This skill focuses on facts and best practices without enforcing specific architectural patterns.

Workflow Decision Tree

1) Review existing SwiftUI code

→ Read references/workflows-review.md for review methodology

  • Check state management against property wrapper selection (see references/state.md)
  • Verify view composition and extraction patterns (see references/view-composition.md)
  • Audit list performance and identity stability (see references/lists-collections.md)
  • Validate modern API usage (see references/modern-swiftui-apis.md)
  • Check async work patterns with.task (see references/concurrency.md)
  • Verify navigation implementation (see references/navigation.md)
  • Use Review Response Template (below)

2) Refactor existing SwiftUI code

→ Read references/workflows-refactor.md for refactor methodology

  • Extract complex views using playbooks (see references/refactor-playbooks.md)
  • Migrate deprecated APIs to modern equivalents (see references/modern-swiftui-apis.md)
  • Optimize performance hot paths (see references/performance.md)
  • Restructure state ownership (see references/state.md)
  • Apply common patterns (see references/patterns.md)
  • Use Refactor Response Template (below)

3) Implement new SwiftUI features

  • Design data flow first: identify owned vs injected state (see references/state.md)
  • Structure views for optimal composition (see references/view-composition.md)
  • Use modern APIs only (see references/modern-swiftui-apis.md)
  • Handle async work with.task modifier (see references/concurrency.md)
  • Apply performance patterns early (see references/performance.md)
  • Implement navigation flows (see references/navigation.md)

4) Answer best practice questions

  • Load relevant reference file(s) based on topic (see Reference Files below)
  • Provide direct guidance with examples

If intent unclear, ask: "Do you want findings only (review), or should I change the code (refactor)?"

Response Templates

Review Response:

  1. Scope - What was reviewed
  2. Findings - Grouped by severity with actionable statements
  3. Evidence - File paths or code locations
  4. Risks and tradeoffs - What could break or needs attention
  5. Next steps - What to fix first or verify

Refactor Response:

  1. Intent + scope - What is being changed and why
  2. Changes - Bulleted list with file paths
  3. Behavior preservation - What should remain unchanged
  4. Next steps - Tests or verification needed

Quick Reference: Property Wrapper Selection

WrapperUse WhenOwnership
@StateInternal view state (value type or @Observable class)View owns
@BindingChild needs to modify parent's stateParent owns
@BindableInjected @Observable object needing bindingsInjected
letRead-only value from parentInjected
var + .onChange()Read-only value needing reactive updatesInjected

Key rules:

  • Always mark @State as private (makes ownership explicit)
  • Never use @State for passed values (accepts initial value only)
  • Use @State with @Observable classes (not @StateObject)

See references/state.md for detailed guidance and tradeoffs.

Quick Reference: Modern API Replacements

DeprecatedModern AlternativeNotes
foregroundColor()foregroundStyle()Supports dynamic type
cornerRadius().clipShape(.rect(cornerRadius:))More flexible
NavigationViewNavigationStackType-safe navigation
tabItem()Tab APIiOS 18+
onTapGesture()ButtonUnless need location/count
onChange(of:) {value in}onChange(of:) {old, new in} or onChange(of:) {}Two or zero parameters
UIScreen.main.boundsGeometryReader or layout APIsAvoid hard-coded sizes

See references/modern-swiftui-apis.md for complete migration guide.

Review Checklist

Use this when reviewing SwiftUI code:

State Management

  • @State properties marked private
  • Passed values NOT declared as @State or @StateObject
  • @Binding only where child modifies parent state
  • Property wrapper selection follows ownership rules
  • State ownership clear and intentional

Modern APIs

  • No deprecated modifiers (foregroundColor, cornerRadius, etc.)
  • Using NavigationStack instead of NavigationView
  • Using Button instead of onTapGesture when appropriate
  • Using two-parameter or no-parameter onChange()

View Composition

  • Using modifiers over conditionals for state changes (maintains identity)
  • Complex views extracted to separate subviews
  • Views kept small and focused
  • View body simple and pure (no side effects)

Navigation & Sheets

  • Using navigationDestination(for:) for type-safe navigation
  • Using .sheet(item:) for model-based sheets
  • Sheets own their dismiss actions

Lists & Collections

  • ForEach uses stable identity (never .indices for dynamic data)
  • Constant number of views per ForEach element
  • No inline filtering in ForEach (prefilter and cache)
  • No AnyView in list rows

Performance

  • Passing only needed values to views (not large config objects)
  • Eliminating unnecessary dependencies
  • Checking value changes before state assignment in hot paths
  • Using LazyVStack/LazyHStack for large lists
  • No object creation in view body

Async Work

  • Using .task for automatic cancellation
  • Using .task(id:) for value-dependent tasks
  • Not mixing .onAppear with async work

See reference files for detailed explanations of each item.

Constraints

  • Swift/SwiftUI focus only - Exclude server-side Swift and UIKit unless bridging required
  • No Swift concurrency patterns - Use .task for SwiftUI async work
  • No architecture mandates - Don't require MVVM/MVC/VIPER or specific structures
  • No formatting/linting rules - Focus on correctness and patterns
  • No tool-specific guidance - No Xcode, Instruments, or IDE instructions
  • Citations allowed: developer.apple.com/documentation/swiftui/, developer.apple.com/documentation/swift/

All workflows must follow these constraints.

Philosophy

This skill focuses on facts and best practices from Apple's documentation:

  • Modern APIs over deprecated ones
  • Clear state ownership patterns
  • Performance-conscious view composition
  • Testable code structure
  • No architectural mandates (MVVM/VIPER not required)
  • Apple Human Interface Guidelines adherence

Reference Files

All references in references/:

  • workflows-review.md - Review methodology and findings taxonomy
  • workflows-refactor.md - Refactor methodology and invariants
  • refactor-playbooks.md - Step-by-step refactor guides
  • state.md - Property wrappers and ownership patterns
  • navigation.md - Navigation implementation patterns
  • view-composition.md - View structure and extraction
  • lists-collections.md - Identity and ForEach patterns
  • scrolling.md - Scroll handling and pagination
  • concurrency.md - Async work with.task
  • performance.md - Optimization strategies
  • testing-di.md - Testing and dependency injection
  • patterns.md - Common SwiftUI patterns
  • modern-swiftui-apis.md - Legacy API migration
  • code-review-refactoring.md - Code quality checks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.74%
按下载量换算236

Claude

29.22%
按下载量换算188

Cursor

18.77%
按下载量换算121

Gemini CLI

9.3%
按下载量换算60

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills