Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

swift-expertSwift expert 命令行

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

3,152

周安装

134

GitHub Stars

76

下载量

1,104
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill swift-expert

简介

swift-expert 提供 Apple 生态系统原生应用开发专长。

  • 适用于构建 iOS/macOS/visionOS 应用、迁移旧代码至现代 Swift 等场景。
  • 支持 SwiftUI、SwiftData、Actor 并发模式和 Instruments 性能调优。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 注意权限范围和维护状态,确认是否会触发联网、命令执行或文件读写操作。

SKILL.md

Swift Expert

Purpose

Provides Apple ecosystem development expertise specializing in native iOS/macOS/visionOS applications using Swift 6, SwiftUI, and modern concurrency patterns. Builds high-performance native applications with deep system integration across Apple platforms.

When to Use

  • Building native iOS/macOS apps with SwiftUI and SwiftData
  • Migrating legacy Objective-C/UIKit code to modern Swift
  • Implementing advanced concurrency with Actors and structured Tasks
  • Optimizing performance (Instruments, Memory Graph, Launch Time)
  • Integrating system frameworks (HealthKit, HomeKit, WidgetKit)
  • Developing for visionOS (Spatial Computing)
  • Creating Swift server-side applications (Vapor, Hummingbird)

Examples

Example 1: Modern SwiftUI Architecture

Scenario: Rewriting a legacy UIKit app in modern SwiftUI.

Implementation:

  1. Adopted MVVM architecture with Combine
  2. Created reusable ViewComponents for consistency
  3. Implemented proper state management
  4. Added comprehensive accessibility support
  5. Built preview-driven development workflow

Results:

  • 50% less code than UIKit version
  • Improved testability (ViewModels easily tested)
  • Better accessibility (VoiceOver support)
  • Faster development with Xcode Previews

Example 2: Swift Concurrency Migration

Scenario: Converting callback-based code to async/await.

Implementation:

  1. Identified all completion handler patterns
  2. Created async wrappers using @MainActor where needed
  3. Implemented structured concurrency for parallel operations
  4. Added proper error handling with throw/catch
  5. Used actors for protecting shared state

Results:

  • 70% reduction in boilerplate code
  • Eliminated callback hell and race conditions
  • Improved code readability and maintainability
  • Better memory management with structured tasks

Example 3: Performance Optimization

Scenario: Optimizing a slow startup time and janky scrolling.

Implementation:

  1. Used Instruments to profile app launch
  2. Identified heavy initializers and deferred them
  3. Implemented lazy loading for resources
  4. Optimized images with proper caching
  5. Reduced view hierarchy complexity

Results:

  • Launch time reduced from 4s to 1.2s
  • Scrolling now consistently 60fps
  • Memory usage reduced by 40%
  • Improved App Store ratings

Best Practices

SwiftUI Development

  • MVVM Architecture: Clear separation of concerns
  • State Management: Use proper @StateObject/@ObservedObject
  • Performance: Lazy loading, proper Equatable
  • Accessibility: Build in from the start

Swift Concurrency

  • Structured Concurrency: Use Task and TaskGroup
  • Actors: Protect shared state with actors
  • MainActor: Properly handle UI updates
  • Error Handling: Comprehensive throw/catch patterns

Performance

  • Instruments: Profile regularly, don't guess
  • Lazy Loading: Defer expensive operations
  • Memory Management: Watch for strong reference cycles
  • Optimize Images: Proper format, caching, sizing

Platform Integration

  • System Frameworks: Use appropriate Apple frameworks
  • Privacy: Follow App Store privacy requirements
  • Extensions: Support widgets, shortcuts, etc.
  • VisionOS: Consider spatial computing patterns

Do NOT invoke when:

  • Building cross-platform apps with React Native/Flutter → Use mobile-app-developer
  • Writing simple shell scripts (unless specifically Swift scripting) → Use bash or python-pro
  • Designing game assets → Use game-developer (though Metal/SceneKit is in scope)


Core Capabilities

Swift Development

  • Building native iOS/macOS applications with SwiftUI
  • Implementing advanced Swift features (Actors, async/await, generics)
  • Managing state with SwiftData and Combine
  • Optimizing performance with Instruments

Apple Platform Integration

  • Integrating system frameworks (HealthKit, HomeKit, WidgetKit)
  • Developing for visionOS and spatial computing
  • Managing app distribution (App Store, TestFlight)
  • Implementing privacy and security best practices

Concurrency and Performance

  • Implementing Swift 6 concurrency patterns
  • Managing memory and preventing retain cycles
  • Debugging performance issues with profiling tools
  • Optimizing app launch time and battery usage

Testing and Quality

  • Writing unit tests with XCTest
  • Implementing UI testing with XCUITest
  • Managing test coverage and quality metrics
  • Setting up CI/CD for Apple platforms


Workflow 2: Swift 6 Concurrency (Actors)

Goal: Manage a thread-safe cache without locks.

Steps:

  1. Define Actor actor ImageCache {private var cache: [URL: UIImage] = [:] func image(for url: URL) -> UIImage? {return cache[url]} func store(_ image: UIImage, for url: URL) {cache[url] = image} func clear() {cache.removeAll()}}
  2. Usage (Async context) class ImageLoader {private let cache = ImageCache() func load(url: URL) async throws -> UIImage {if let cached = await cache.image(for: url) {return cached} let (data, _) = try await URLSession.shared.data(from: url) guard let image = UIImage(data: data) else {throw URLError(.badServerResponse)} await cache.store(image, for: url) return image}}


4. Patterns & Templates

Pattern 1: Dependency Injection (Environment)

Use case: Injecting services into the SwiftUI hierarchy.

// 1. Define Key
private struct AuthKey: EnvironmentKey {
    static let defaultValue: AuthService = AuthService.mock
}

// 2. Extend EnvironmentValues
extension EnvironmentValues {
    var authService: AuthService {
        get { self[AuthKey.self] }
        set { self[AuthKey.self] = newValue }
    }
}

// 3. Use
struct LoginView: View {
    @Environment(\.authService) var auth

    func login() {
        Task { await auth.login() }
    }
}

Pattern 2: Coordinator (Navigation)

Use case: Decoupling navigation logic from Views.

@Observable
class Coordinator {
    var path = NavigationPath()

    func push(_ destination: Destination) {
        path.append(destination)
    }

    func pop() {
        path.removeLast()
    }

    func popToRoot() {
        path.removeLast(path.count)
    }
}

enum Destination: Hashable {
    case detail(Int)
    case settings
}

Pattern 3: Result Builder (DSL)

Use case: Creating a custom DSL for configuring API requests.

@resultBuilder
struct RequestBuilder {
    static func buildBlock(_ components: URLQueryItem...) -> [URLQueryItem] {
        return components
    }
}

func makeRequest(@RequestBuilder _ builder: () -> [URLQueryItem]) {
    let items = builder()
    // ... construct URL
}

// Usage
makeRequest {
    URLQueryItem(name: "limit", value: "10")
    URLQueryItem(name: "sort", value: "desc")
}


6. Integration Patterns

backend-developer:

  • Handoff: Backend provides gRPC/REST spec → Swift Expert generates Codable structs.
  • Collaboration: Handling pagination (cursors) and error envelopes.
  • Tools: swift-openapi-generator.

ui-designer:

  • Handoff: Designer provides Figma → Swift Expert uses HStack/VStack to replicate.
  • Collaboration: Defining Design System (Color, Typography extensions).
  • Tools: Xcode Previews.

mobile-app-developer:

  • Handoff: React Native team needs a native module (e.g., Apple Pay) → Swift Expert writes the Swift-JS bridge.
  • Collaboration: exposing native UIViews to React Native.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

30.1%
按下载量换算332

OpenCode

21.98%
按下载量换算243

Codex

15.78%
按下载量换算174

Cursor

11.4%
按下载量换算126

Gemini CLI

6.67%
按下载量换算74

windsurf

3.5%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills