Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问clear审计通过

senior-iossenior iOS 命令行

Agent Skill

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

总安装

210

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rickydwilson-dcs/claude-skills --skill senior-ios

简介

senior-ios 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 iOS 开发协作流程中使用。

  • 适用于需要查看代码变更、跟踪任务进展或参与团队评审的场景。
  • 通过 npx skills add 命令从指定仓库安装,具体功能需参考原始文档。
  • 使用前应确认是否有权访问私有仓库及是否会触发编译或打包操作。
  • senior-ios 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Senior iOS

Native iOS development expertise covering Swift 5.9+, SwiftUI, UIKit, and the complete Apple ecosystem. This skill provides deep knowledge of modern iOS patterns, architecture, and tooling.

Overview

This skill provides comprehensive iOS development expertise for building native applications with Swift and SwiftUI. It covers modern concurrency patterns, architecture best practices, Xcode workflows, and App Store submission processes. Uses Python tools from the senior-mobile skill for platform detection and validation.

Quick Start

# Validate iOS project configuration
python3 ../../senior-mobile/scripts/platform_detector.py --check ios --depth full

# Validate for App Store submission
python3 ../../senior-mobile/scripts/app_store_validator.py --store apple --strict

Python Tools

This skill uses Python tools from the senior-mobile skill:

  • platform_detector.py - Analyze iOS project configuration, provisioning, entitlements
  • app_store_validator.py - Validate against App Store requirements
# Full iOS analysis
python3 ../../senior-mobile/scripts/platform_detector.py --check ios --output json

# Strict App Store validation
python3 ../../senior-mobile/scripts/app_store_validator.py --store apple --strict

Core Capabilities

  • SwiftUI Mastery - Build modern, declarative UIs with state management, navigation, and animations
  • Swift Concurrency - Implement async/await, actors, and structured concurrency patterns
  • UIKit Integration - Bridge UIKit and SwiftUI, migrate legacy codebases
  • Performance Optimization - Profile and optimize with Instruments, resolve memory issues
  • App Store Excellence - Navigate submission requirements, TestFlight, and App Store Connect

Key Workflows

Workflow 1: SwiftUI App Development

Time: Variable based on complexity

Steps:

  1. Define app architecture (MVVM, TCA, or custom)
  2. Set up project with proper folder structure
  3. Implement data layer with SwiftData or Core Data
  4. Build UI components with SwiftUI
  5. Add navigation using NavigationStack
  6. Implement state management (@State, @Observable, @Environment)
  7. Write unit and UI tests
  8. Profile and optimize performance

Reference: references/swiftui-guide.md

Architecture Pattern (MVVM):

// Model
struct User: Identifiable, Codable {
    let id: UUID
    var name: String
    var email: String
}

// ViewModel
@Observable
class UserViewModel {
    var users: [User] = []
    var isLoading = false
    var error: Error?

    func loadUsers() async {
        isLoading = true
        defer { isLoading = false }

        do {
            users = try await userService.fetchUsers()
        } catch {
            self.error = error
        }
    }
}

// View
struct UserListView: View {
    @State private var viewModel = UserViewModel()

    var body: some View {
        NavigationStack {
            List(viewModel.users) { user in
                NavigationLink(value: user) {
                    UserRowView(user: user)
                }
            }
            .navigationTitle("Users")
            .task {
                await viewModel.loadUsers()
            }
            .overlay {
                if viewModel.isLoading {
                    ProgressView()
                }
            }
        }
    }
}

Workflow 2: UIKit to SwiftUI Migration

Time: 2-8 weeks depending on app size

Steps:

  1. Audit existing UIKit codebase
  2. Identify isolated components for migration
  3. Create SwiftUI wrappers using UIViewRepresentable
  4. Migrate screens incrementally (leaf nodes first)
  5. Update navigation to NavigationStack
  6. Replace delegates with Combine/async-await
  7. Migrate data layer to SwiftData
  8. Remove UIKit dependencies progressively

Reference: references/swift-patterns.md

Bridge Pattern:

// Wrap UIKit view for use in SwiftUI
struct MapViewRepresentable: UIViewRepresentable {
    @Binding var region: MKCoordinateRegion
    var annotations: [MKAnnotation]

    func makeUIView(context: Context) -> MKMapView {
        let mapView = MKMapView()
        mapView.delegate = context.coordinator
        return mapView
    }

    func updateUIView(_ mapView: MKMapView, context: Context) {
        mapView.setRegion(region, animated: true)
        mapView.removeAnnotations(mapView.annotations)
        mapView.addAnnotations(annotations)
    }

    func makeCoordinator() -> Coordinator {
        Coordinator(self)
    }

    class Coordinator: NSObject, MKMapViewDelegate {
        var parent: MapViewRepresentable

        init(_ parent: MapViewRepresentable) {
            self.parent = parent
        }

        func mapView(_ mapView: MKMapView, regionDidChangeAnimated: Bool) {
            parent.region = mapView.region
        }
    }
}

// Embed SwiftUI in UIKit
class SettingsViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()

        let settingsView = SettingsView()
        let hostingController = UIHostingController(rootView: settingsView)

        addChild(hostingController)
        view.addSubview(hostingController.view)
        hostingController.view.frame = view.bounds
        hostingController.didMove(toParent: self)
    }
}

Workflow 3: App Store Submission

Time: 1-2 days for prepared apps

Steps:

  1. Complete App Store Connect setup
  2. Configure signing and capabilities in Xcode
  3. Run app_store_validator.py from senior-mobile tools
  4. Create required screenshots and previews
  5. Write App Store description and metadata
  6. Build and upload via Xcode or Transporter
  7. Submit for review with detailed notes
  8. Monitor review status and respond to feedback

Reference: references/xcode-workflows.md

Pre-Submission Checklist:

  • App icon in all required sizes (1024x1024 for App Store)
  • Launch screen configured
  • Info.plist privacy descriptions for all permissions
  • Privacy manifest (PrivacyInfo.xcprivacy) if using required APIs
  • Version and build numbers updated
  • Release notes written
  • Screenshots for all required device sizes
  • App Preview videos (optional but recommended)
  • Contact information in App Store Connect
  • Export compliance information

Workflow 4: Performance Profiling with Instruments

Time: 2-4 hours per profiling session

Steps:

  1. Build for profiling (Product > Profile)
  2. Select appropriate Instruments template
  3. Run app through critical user flows
  4. Analyze captured data
  5. Identify bottlenecks and issues
  6. Implement optimizations
  7. Re-profile to verify improvements

Reference: references/xcode-workflows.md

Key Instruments:

InstrumentPurposeWhen to Use
Time ProfilerCPU usage analysisSlow operations, high CPU
AllocationsMemory allocation trackingMemory growth, leaks
LeaksMemory leak detectionRetain cycles, missing dealloc
NetworkNetwork request analysisSlow API calls, large payloads
Core AnimationUI rendering performanceDropped frames, slow scrolling
SwiftUISwiftUI view lifecycleExcessive body evaluations

Common Performance Patterns:

// Avoid: Expensive computation in body
var body: some View {
    List(items.sorted().filtered()) { item in  // BAD: Runs every render
        ItemRow(item: item)
    }
}

// Better: Cache computed values
@State private var sortedItems: [Item] = []

var body: some View {
    List(sortedItems) { item in
        ItemRow(item: item)
    }
    .onChange(of: items) { _, newItems in
        sortedItems = newItems.sorted().filtered()
    }
}

// Best: Use @Observable with lazy computation
@Observable
class ItemsViewModel {
    var items: [Item] = []

    var sortedItems: [Item] {
        // Cached automatically by @Observable
        items.sorted().filtered()
    }
}

Swift Patterns

Modern Concurrency

// Structured concurrency with task groups
func loadDashboard() async throws -> Dashboard {
    async let user = userService.fetchCurrentUser()
    async let notifications = notificationService.fetchUnread()
    async let stats = analyticsService.fetchStats()

    return try await Dashboard(
        user: user,
        notifications: notifications,
        stats: stats
    )
}

// Actor for thread-safe state
actor ImageCache {
    private var cache: [URL: UIImage] = [:]

    func image(for url: URL) -> UIImage? {
        cache[url]
    }

    func setImage(_ image: UIImage, for url: URL) {
        cache[url] = image
    }
}

// MainActor for UI updates
@MainActor
class ProfileViewModel: ObservableObject {
    @Published var profile: Profile?

    func loadProfile() async {
        // Automatically runs on main thread
        profile = try? await profileService.fetch()
    }
}

Error Handling

// Typed throws (Swift 6)
enum NetworkError: Error {
    case invalidURL
    case noData
    case decodingFailed(Error)
    case serverError(Int)
}

func fetchUser(id: String) async throws(NetworkError) -> User {
    guard let url = URL(string: "https://api.example.com/users/\(id)") else {
        throw .invalidURL
    }

    let (data, response) = try await URLSession.shared.data(from: url)

    guard let httpResponse = response as? HTTPURLResponse else {
        throw .noData
    }

    guard httpResponse.statusCode == 200 else {
        throw .serverError(httpResponse.statusCode)
    }

    do {
        return try JSONDecoder().decode(User.self, from: data)
    } catch {
        throw .decodingFailed(error)
    }
}

Protocol-Oriented Design

// Define capability through protocols
protocol Loadable {
    associatedtype Content
    var state: LoadingState<Content> { get }
    func load() async
}

enum LoadingState<T> {
    case idle
    case loading
    case loaded(T)
    case error(Error)
}

// Generic view for any loadable content
struct LoadableView<Content: View, T>: View {
    let state: LoadingState<T>
    let content: (T) -> Content
    let onRetry: () async -> Void

    var body: some View {
        switch state {
        case .idle:
            Color.clear.task { await onRetry() }
        case .loading:
            ProgressView()
        case .loaded(let data):
            content(data)
        case .error(let error):
            ErrorView(error: error, onRetry: onRetry)
        }
    }
}

References

Tools Integration

This skill uses Python tools from the senior-mobile skill:

# Validate iOS app for App Store (from senior-mobile)
python3 ../../senior-mobile/scripts/app_store_validator.py --store apple --strict

# Detect iOS project configuration
python3 ../../senior-mobile/scripts/platform_detector.py --check ios --depth full

Best Practices

SwiftUI

  • Use @Observable macro (iOS 17+) over @ObservableObject
  • Prefer NavigationStack over NavigationView
  • Keep views small and focused
  • Extract reusable components early
  • Use @ViewBuilder for conditional content

Performance

  • Minimize body complexity
  • Use LazyVStack/LazyHStack for large lists
  • Implement proper Equatable for custom types
  • Avoid force unwrapping in production code
  • Profile before optimizing

Architecture

  • Separate concerns (View, ViewModel, Model, Service)
  • Use dependency injection
  • Keep business logic testable
  • Document public APIs
  • Follow Swift naming conventions

Success Metrics

  • SwiftUI Development Speed: 50% faster than UIKit equivalent
  • App Store Approval Rate: 95%+ first submission
  • Code Coverage: 80%+ for business logic
  • Performance: 60 FPS for all animations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.3%
按下载量换算22

Codex

21.79%
按下载量换算16

OpenCode

18.91%
按下载量换算14

Cursor

13.46%
按下载量换算10

Gemini CLI

8.34%
按下载量换算6

Antigravity

3.46%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills