swift-package-manager-config
Configure Swift Package Manager with platform-specific dependencies and build settings
Profile →npx skills add a5c-ai/babysitter --skill swift-package-manager-config --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# swift-package-manager-config Configure Swift Package Manager with platform-specific dependencies, targets, and build settings for macOS applications. ## Capabilities - Generate Package.swift configuration - Configure platform-specific dependencies - Set up multiple targets and products - Configure build settings and flags - Set up binary targets and XCFrameworks - Configure plugins and macros - Generate local package dependencies ## Input Schema ```json { "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"] } ``` ## Generated Package.swift ```swift // 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/ap
- Capabilities
- Input Schema
- Generated Package.swift
- Related Skills
What does the swift-package-manager-config skill do?
Configure Swift Package Manager with platform-specific dependencies and build settings
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill swift-package-manager-config --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.