ワンクリックで
swift-package-manager
Swift Package Manager (SPM) dependency and project management.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Swift Package Manager (SPM) dependency and project management.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Backend testing patterns — API request construction, response verification, database state checks, error handling testing, and adaptive tool detection.
Frontend testing patterns using Playwright — navigation, interaction, assertions, screenshots on failure, and common UI testing scenarios.
Test report format with QA-XXX issue IDs compatible with code-review plugin. Defines report structure, severity levels, issue format with canonical fields, and detailed results.
Test plan structure, naming conventions, edge case generation rules, and file saving conventions for QA test plans.
Enforces AppVerk Swift coding standards across all code.
Structured concurrency and thread safety patterns in modern Swift.
| name | swift-package-manager |
| description | Swift Package Manager (SPM) dependency and project management. |
| activation | Load when managing Swift package dependencies or project configuration |
Swift Package Manager (SPM) dependency and project management.
// swift-tools-version at the top.platforms array for minimum OS versions.products for exposed libraries and executables.dependencies for external packages.targets for source code, tests, and target-specific dependencies.dependencies: [
.package(url: "https://github.com/owner/repo.git", from: "1.0.0")
]
swift package update to refresh to latest compatible versions.Package.resolved is the source of truth for locked versions. Commit it..package(path: "../LocalPackage").dependencies: [
.product(name: "LibraryName", package: "PackageName")
]
Package.resolved pins exact versions.Package.swift.