swift-package-manager-config — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited swift-package-manager-config (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Configure Swift Package Manager with platform-specific dependencies, targets, and build settings for macOS applications.
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"packageName": { "type": "string" },
"platforms": { "type": "array", "items": { "enum": ["macos", "ios", "tvos", "watchos"] } },
"dependencies": { "type": "array" },
"targets": { "type": "array" }
},
"required": ["projectPath", "packageName"]
}// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "MyPackage",
platforms: [.macOS(.v13), .iOS(.v16)],
products: [
.library(name: "MyPackage", targets: ["MyPackage"]),
.executable(name: "MyApp", targets: ["MyApp"])
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-collections", from: "1.1.0")
],
targets: [
.target(name: "MyPackage", dependencies: [
.product(name: "Collections", package: "swift-collections")
]),
.executableTarget(name: "MyApp", dependencies: [
"MyPackage",
.product(name: "ArgumentParser", package: "swift-argument-parser")
]),
.testTarget(name: "MyPackageTests", dependencies: ["MyPackage"])
]
)swiftui-view-generatorxctest-ui-test-generator~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.