Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

swift-performance-optimization-skillSwift 性能 optimization 技能

Agent Skill

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

总安装

8,729

周安装

383

GitHub Stars

公开资料未说明

下载量

4,431
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add pstuart/pstuart --skill "swift-performance-optimization-skill"

简介

用于查找、检索和筛选相关信息,支持基于关键词快速定位候选结果。

  • 适用于 Codex、Claude、Cursor 和 Gemini CLI 中的研究检索场景。
  • 可结合来源仓库 README 核验具体用法和功能边界。
  • 安装前需确认权限范围和维护状态,避免触发不必要的联网操作。
  • 建议评估是否会执行命令或读写文件后再部署使用。

SKILL.md

name
Swift Performance Optimization Skill
description
Techniques for optimizing Swift code performance, memory usage, rendering efficiency, and using Instruments for profiling.
version
1.0
activation
Activate for queries on Swift performance optimization, memory management, rendering improvements, Instruments usage, or profiling Swift/iOS apps.

Swift Performance Optimization Skill

This skill provides expertise in optimizing Swift code for better performance, memory efficiency, and smooth rendering. It covers profiling with Instruments, memory management best practices, and performance patterns specific to iOS development.

Best Practices

  1. Profile First: Always use Instruments to identify bottlenecks before optimizing.
  1. Memory Management: Understand ARC, avoid retain cycles, and manage memory efficiently.
  1. Lazy Loading: Defer expensive operations and use lazy properties when appropriate.
  1. Efficient Collections: Choose the right data structures and operations for performance.
  1. UI Performance: Optimize rendering with techniques like cell reuse and background processing.
  1. Concurrency: Use GCD or Swift Concurrency for background tasks without blocking the main thread.

Performance Guidelines

  • Minimize work on the main thread, especially UI updates.
  • Use Instruments Time Profiler to find CPU hotspots.
  • Monitor memory usage with Allocations and Leaks instruments.
  • Optimize images and assets for size and loading.
  • Cache expensive computations when possible.
  • Avoid unnecessary view updates in SwiftUI with proper state management.

Examples

Example 1: Optimizing SwiftUI List Performance

User Prompt: "How can I optimize a SwiftUI List with many items that's scrolling slowly?"

Expected Output:

import SwiftUI

struct OptimizedListView: View {
    let items = Array(1...10000) // Large dataset
    
    var body: some View {
        List(items, id: \.self) { item in
            OptimizedRowView(item: item)
        }
        .listStyle(.plain)
    }
}

struct OptimizedRowView: View {
    let item: Int
    
    var body: some View {
        HStack {
            Text("Item \(item)")
            Spacer()
            Image(systemName: "star")
                .foregroundColor(.yellow)
        }
        .padding(.vertical, 8)
        // Avoid complex computations in body
        // Use @StateObject for view models if needed
    }
}

// For even better performance with large datasets:
struct LazyOptimizedListView: View {
    let items = Array(1...10000)
    
    var body: some View {
        ScrollView {
            LazyVStack {
                ForEach(items, id: \.self) { item in
                    OptimizedRowView(item: item)
                }
            }
        }
    }
}

Example 2: Memory Management with Weak References

User Prompt: "Fix a potential memory leak in a closure capturing self."

Expected Output:

class NetworkManager {
    var completionHandler: (() -> Void)?
    
    func fetchData() {
        // BAD: Strong reference cycle
        // self.completionHandler = {
        //     self.processData()
        // }
        
        // GOOD: Weak self to avoid retain cycle
        self.completionHandler = { [weak self] in
            self?.processData()
        }
        
        // Simulate network call
        DispatchQueue.global().asyncAfter(deadline: .now() + 1) {
            self.completionHandler?()
        }
    }
    
    func processData() {
        print("Data processed")
    }
}

// Alternative with unowned for non-optional self
class ViewController {
    var timer: Timer?
    
    func startTimer() {
        timer = Timer.scheduledTimer(withTimeInterval: 1.0, repeats: true) { [unowned self] timer in
            self.updateUI()
        }
    }
    
    func updateUI() {
        // Update UI
    }
}

Example 3: Instruments Time Profiler Usage

User Prompt: "How do I use Instruments to profile CPU performance in my Swift app?"

Expected Output: To profile CPU performance:

  1. Open Xcode and select Product > Profile (⌘I)
  2. Choose "Time Profiler" from the Instruments template
  3. Click the record button to start profiling
  4. Perform the actions you want to profile in your app
  5. Stop recording and examine the call tree
  6. Look for methods with high "Self" time (time spent in that method itself)
  7. Expand the heaviest stack trace to identify bottlenecks

Key Time Profiler tips:

  • Focus on "Self" column for time spent in each method
  • Use "Invert Call Tree" to see bottom-up view
  • Separate by thread to identify main thread blocking
  • Look for recursive calls or unexpected frequent calls

Example findings:

  • If viewDidLoad() takes 500ms, check for expensive operations
  • Heavy tableView(_:cellForRowAt:) calls indicate list optimization needed
  • Frequent layoutSubviews() suggests layout inefficiencies

Example 4: Efficient Image Loading

User Prompt: "Optimize image loading and display in a collection view."

Expected Output:

import UIKit

class ImageCollectionViewCell: UICollectionViewCell {
    let imageView = UIImageView()
    private var imageLoadTask: URLSessionDataTask?
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        setupViews()
    }
    
    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    private func setupViews() {
        imageView.contentMode = .scaleAspectFill
        imageView.clipsToBounds = true
        contentView.addSubview(imageView)
        imageView.frame = contentView.bounds
    }
    
    func configure(with imageURL: URL) {
        // Cancel previous task
        imageLoadTask?.cancel()
        
        // Placeholder
        imageView.image = UIImage(named: "placeholder")
        
        // Load image asynchronously
        imageLoadTask = URLSession.shared.dataTask(with: imageURL) { [weak self] data, _, _ in
            guard let data = data, let image = UIImage(data: data) else { return }
            
            DispatchQueue.main.async {
                self?.imageView.image = image
            }
        }
        imageLoadTask?.resume()
    }
    
    override func prepareForReuse() {
        super.prepareForReuse()
        imageLoadTask?.cancel()
        imageView.image = nil
    }
}

// Usage in ViewController
class ImageGalleryViewController: UIViewController, UICollectionViewDataSource {
    let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
    let imageURLs: [URL] = [] // Your image URLs
    
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ImageCell", for: indexPath) as! ImageCollectionViewCell
        cell.configure(with: imageURLs[indexPath.item])
        return cell
    }
}

Example 5: SwiftUI Rendering Optimization

User Prompt: "Optimize SwiftUI view updates to prevent unnecessary re-renders."

Expected Output:

import SwiftUI

// BAD: Causes re-render on every change
struct BadCounterView: View {
    @State private var count = 0
    @State private var name = "Counter"
    
    var body: some View {
        VStack {
            Text(name) // Re-renders when count changes
            Text("\(count)")
            Button("Increment") { count += 1 }
        }
    }
}

// GOOD: Separate concerns
struct OptimizedCounterView: View {
    @State private var count = 0
    
    var body: some View {
        VStack {
            CounterTitleView() // Only re-renders when needed
            CounterDisplayView(count: count)
            CounterButtonView(count: $count)
        }
    }
}

struct CounterTitleView: View {
    var body: some View {
        Text("Counter")
    }
}

struct CounterDisplayView: View {
    let count: Int
    
    var body: some View {
        Text("\(count)")
    }
}

struct CounterButtonView: View {
    @Binding var count: Int
    
    var body: some View {
        Button("Increment") { count += 1 }
    }
}

// Alternative: Use Equatable for custom comparisons
struct EquatableView: View, Equatable {
    let title: String
    let count: Int
    
    var body: some View {
        VStack {
            Text(title)
            Text("\(count)")
        }
    }
    
    static func == (lhs: EquatableView, rhs: EquatableView) -> Bool {
        lhs.title == rhs.title && lhs.count == rhs.count
    }
}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

26.97%
按下载量换算1,195

Codex

22.1%
按下载量换算979

Claude Code

20.15%
按下载量换算893

Antigravity

14.02%
按下载量换算621

Gemini CLI

8.5%
按下载量换算377

trae

3.63%
按下载量换算161

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills