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

swiftui-style-driven-componentsswiftui 风格驱动组件

Agent Skill

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

总安装

564

周安装

24

GitHub Stars

3

下载量

198
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ahmadbrkt/swiftui-style-driven-components-skill --skill swiftui-style-driven-components

简介

SwiftUI 风格驱动组件技能用于处理 GitHub 仓库、Issue、Pull Request 等协作信息,适合代码变更跟踪。

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

SKILL.md

SwiftUI Style-Driven Components

Overview

This skill provides expert guidance on building, reviewing, and extending SwiftUI components following the style-driven architecture pattern. This pattern emphasizes extensibility, maintainability, and Apple-style API design, making it ideal for building reusable component libraries.

Agent Behavior Contract

  1. Before creating a new component, verify it needs 2+ meaningfully different styles. If not, skip the style protocol.
  2. Follow Apple's patterns (ButtonStyle, LabelStyle) as the gold standard.
  3. Use nested type-erased views in configuration (like LabelStyleConfiguration.Title).
  4. Never expose configuration initializers as public.
  5. Wrap style.makeBody in AnyView for type erasure.
  6. Use DynamicProperty for style protocols, not Sendable.
  7. Read styles from environment using existential type (any [Component]Style).

Core Architecture Principles

  • Protocol: [Component]Style — defines HOW to render
  • Configuration: [Component]StyleConfiguration — contains WHAT to render
  • Component: Creates configuration internally, delegates rendering to style
  • Environment: Enables subtree styling without modifying components

When to Use Style Protocol

Use style protocol when:

  • 2+ meaningfully different visual styles needed
  • Environment-based style cascading desired
  • Building reusable component library
  • Styles need environment access (@Environment)

Skip style protocol when:

  • Single visual representation
  • Simple, static appearance
  • One-off internal component
  • No style customization needed

Quick Decision Tree

Building a new component?

  1. Needs multiple styles? → If no, skip style protocol
  2. Create structure → See references/component-structure.md
  3. Define protocol → See references/style-protocol.md
  4. Create configuration → Nested type-erased views pattern
  5. Implement default style → Basic rendering
  6. Add environment key → See references/environment-keys.md
  7. Add convenience accessors → See references/common-patterns.md

Adding a new style?

  1. Create struct conforming to [Component]Style
  2. Implement makeBody(configuration:)
  3. Add convenience accessor (.myStyle)
  4. No component changes needed!

Reviewing component architecture?

  1. Check protocol uses DynamicProperty, @ViewBuilder @MainActor
  2. Verify configuration uses nested type-erased views
  3. Confirm configuration init is internal
  4. Check component wraps style.makeBody in AnyView
  5. Validate environment key uses existential (any [Component]Style)
  6. Ensure new styles don't require component changes

Triage Playbook

  • Creating component file structurereferences/component-structure.md
  • Defining style protocolreferences/style-protocol.md
  • Creating configuration with contentreferences/style-protocol.md
  • Setting up environment keysreferences/environment-keys.md
  • Adding convenience initializersreferences/common-patterns.md
  • Parameterized or adaptive stylesreferences/common-patterns.md
  • Documenting public APIsreferences/documentation.md
  • Using design tokensreferences/design-system.md
  • Writing testsreferences/testing.md
  • Organizing previewsreferences/previews.md
  • Accessibility requirementsreferences/accessibility.md
  • Advanced: state machines, dual protocols, result buildersreferences/advanced-patterns.md

Quick Reference

Component Structure

[Component]/
├── EnvironmentKeys/[Component]StyleKey.swift
├── Styles/
│   ├── [Component]Style.swift
│   ├── [Component]StyleConfiguration.swift
│   └── Default[Component]Style.swift
└── [Component].swift

Pattern Summary

  • Style Protocol: DynamicProperty, @ViewBuilder @MainActor func makeBody
  • Configuration: Nested struct Content: View with private let _body: () -> AnyView
  • Configuration Init: internal (not public), @MainActor
  • Component Body: AnyView(style.makeBody(configuration:.init(...)))
  • Environment Key: @Entry public var style: any [Component]Style =.automatic
  • View Modifier: func style(_ style: some [Component]Style) -> some View

Best Practices

DO

  • Use DynamicProperty for style protocols
  • Use nested type-erased views in configuration
  • Make configuration initializers internal
  • Wrap style.makeBody in AnyView
  • Use design tokens, not magic numbers
  • Provide convenience accessors (.compact, .outlined)

DON'T

  • Add explicit Sendable to style protocols
  • Make configuration initializers public
  • Pass configuration to component initializer
  • Put content properties in style protocol
  • Use style protocol for single-variant components
  • Use AnyView directly as configuration property type
  • Use foregroundColor() (deprecated — use foregroundStyle())
  • Use .cornerRadius() (deprecated — use clipShape())

Review Checklist

Architecture

  • Style protocol uses DynamicProperty
  • makeBody has @ViewBuilder @MainActor
  • Configuration uses nested type-erased views
  • Configuration init is internal
  • Component wraps style.makeBody in AnyView
  • New styles don't require component changes

Environment

  • Uses @Entry macro
  • Stores as existential (any [Component]Style)
  • Modifier uses opaque parameter (some [Component]Style)
  • Default value provided (.automatic)

Quality

  • All public symbols have /// doc comments
  • Component doc comment includes usage example
  • Previews cover all styles (see references/previews.md)
  • Snapshot tests exist (see references/testing.md)
  • Accessibility supported (see references/accessibility.md)
  • Design tokens used (see references/design-system.md)

Reference Files

  • references/component-structure.md — File organization, MARK conventions
  • references/documentation.md — Doc comments following Apple conventions
  • references/style-protocol.md — Protocol, configuration, anti-patterns
  • references/environment-keys.md — Environment injection, usage patterns
  • references/common-patterns.md — Convenience inits, parameterized styles, bindings, roles
  • references/advanced-patterns.md — State machines, dual protocols, result builders
  • references/testing.md — Snapshots, config tests, test helpers
  • references/previews.md — Preview structure, stateful helpers, snapshot mapping
  • references/design-system.md — Design tokens, typography, colors
  • references/accessibility.md — Labels, identifiers, Dynamic Type

Philosophy

Style-driven components prioritize:

  1. Extensibility — Add styles without modifying components
  2. Apple Patterns — Follow ButtonStyle, LabelStyle conventions
  3. Simplicity — Skip style protocol for single-variant components
  4. Type Safety — Generic APIs with internal type erasure
  5. Consistency — All components follow same patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.29%
按下载量换算70

Claude

30.09%
按下载量换算60

Cursor

19.2%
按下载量换算38

Gemini CLI

9.17%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills