coding-swift
Swift 6: async/await/actors/Sendable, generics, property wrappers, result builders, SPM, testing
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o coding-swift.zip https://jpskill.com/download/22092.zip && unzip -o coding-swift.zip && rm coding-swift.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22092.zip -OutFile "$d\coding-swift.zip"; Expand-Archive "$d\coding-swift.zip" -DestinationPath $d -Force; ri "$d\coding-swift.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
coding-swift.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
coding-swiftフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Purpose
This skill equips the AI to assist with Swift 6 programming, focusing on modern features for iOS and macOS development, including concurrency, generics, and package management.
When to Use
Use this skill for tasks involving Swift 6 code, such as building async/await-based apps, implementing actors for thread safety, or managing Swift Package Manager (SPM) dependencies in iOS/macOS projects. Apply it when existing code needs updates for Sendable conformance or generics enhancements.
Key Capabilities
- Async/await: For non-blocking code execution, e.g., handling network requests.
- Actors: To manage shared state safely, ensuring Sendable compliance.
- Generics: Enable reusable code with type constraints, like defining a generic struct.
- Property wrappers: Simplify property management, e.g., for validation.
- Result builders: Construct complex types like views in SwiftUI.
- SPM: Handle dependencies via Package.swift files.
- Testing: Write unit tests using XCTest for async code.
Usage Patterns
To accomplish tasks, structure code with Swift 6 idioms: Use async functions for I/O operations, wrap shared state in actors, and leverage generics for collections. For SPM, edit Package.swift and run builds. Always check for Sendable conformance to avoid data races. When integrating with Xcode, compile projects using the Swift 6 toolchain by setting the compiler version in project settings.
Common Commands/API
- Build a Swift package: Run
swift build --configuration releasefrom the project directory. - Run tests: Execute
swift test --enable-test-discoveryin an SPM project. - Async API usage: Define an async function like
func fetchData() async throws -> Data { ... }and call it withTask { let data = try await fetchData() }. - Actor example: Create an actor with
actor MyActor { var state: Int = 0; func update() { state += 1 } }. - Generics API: Use a generic function like
func swap<T>(_ a: inout T, _ b: inout T) { let temp = a; a = b; b = temp }. - Property wrapper: Define one as
@propertyWrapper struct Clamped<Value: Comparable> { var wrappedValue: Value { ... } }. - SPM config: Edit Package.swift with format like
let package = Package(name: "MyApp", dependencies: [.package(url: "https://github.com/apple/swift-algorithms", from: "1.0.0")]).
Integration Notes
Integrate this skill by ensuring the Swift 6 toolchain is installed (e.g., via Xcode 15+). For external services, set auth via environment variables like $SWIFT_API_KEY for API calls in code, e.g., let apiKey = ProcessInfo.processInfo.environment["SWIFT_API_KEY"]. When combining with other skills, import Swift packages in Xcode by adding them in the "Swift Packages" tab. For concurrency, ensure actors are used in async contexts to avoid runtime errors.
Error Handling
Handle errors in Swift 6 by using do-catch blocks with async functions, e.g.:
do {
let result = try await someAsyncFunction()
} catch let error as NSError {
print("Error code: \(error.code)")
}
Check for Sendable errors by adding @Sendable to functions and fixing non-conforming closures. For SPM, parse build errors from swift build output, e.g., look for "error: dependency not found" and resolve by updating Package.swift. Always use guard statements for optionals to prevent crashes.
Concrete Usage Examples
- Async network request: To fetch data from an API, use:
func fetchUser() async throws -> User { let url = URL(string: "https://api.example.com/user")!; let (data, _) = try await URLSession.shared.data(from: url); return try JSONDecoder().decode(User.self, from: data) }. Call it in a task:Task { do { let user = try await fetchUser(); print(user.name) } catch { print(error) } }. - Actor for shared state: To manage a counter safely, define:
actor Counter { private var value = 0; func increment() { value += 1 } }. Use it like:let counter = Counter(); Task { await counter.increment(); print(await counter.value) }to ensure thread safety.
Graph Relationships
- Related to: coding-general (shares cluster), ios-development (via tags "ios"), macos-app (via tags "macos"), concurrency-handling (via embedding hint "concurrency actor async").
- Clusters: Connected to "coding" cluster for broader programming skills.
- Tags: Links with skills tagged "swift" for language-specific tasks and "spm" for package management.