Agent skill
swift-build
SwiftプロジェクトのビルドとテストをXcodeコマンドラインで実行(iOS/macOS対応)。Use when: ビルド、テスト、xcodebuild、swift test を依頼された時。
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/swift-build
SKILL.md
Swift ビルド&テスト(iOS / macOS 対応)
プラットフォーム別コマンド
iOS Simulator
xcodebuild build -scheme YourApp -destination 'platform=iOS Simulator,name=iPhone 16e'
xcodebuild test -scheme YourApp -destination 'platform=iOS Simulator,name=iPhone 16e'
macOS
xcodebuild build -scheme YourApp -destination 'platform=macOS'
xcodebuild test -scheme YourApp -destination 'platform=macOS'
Mac Catalyst
xcodebuild build -scheme YourApp -destination 'platform=macOS,variant=Mac Catalyst'
実行手順
- スキーム確認:
xcodebuild -list - フォーマットチェック:
swift-format lint -r Sources/ - ビルド: 上記プラットフォーム別コマンド
- ユニットテスト: 上記プラットフォーム別コマンド
- 静的解析:
swiftlint lint
Universal Binary(macOS)
# arm64 + x86_64 のユニバーサルビルド
xcodebuild build -scheme YourApp -destination 'platform=macOS' \
ARCHS="arm64 x86_64" ONLY_ACTIVE_ARCH=NO
クリーンビルド
xcodebuild clean build -scheme YourApp -destination 'platform=macOS'
アーカイブ(リリース用)
iOS
xcodebuild archive -scheme YourApp -archivePath ./build/YourApp.xcarchive \
-destination 'generic/platform=iOS'
macOS
xcodebuild archive -scheme YourApp -archivePath ./build/YourApp.xcarchive \
-destination 'platform=macOS'
トラブルシューティング
シミュレーター一覧
xcrun simctl list devices available
利用可能なデスティネーション
xcodebuild -showdestinations -scheme YourApp
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?