Install
$ agentstack add skill-edfenton-claude-skills-ios-deps ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Purpose
Manage SPM dependencies safely: check for updates, audit for issues, and add packages with verification.
Arguments
--check— Check for outdated packages (default if no args)--audit— Check for known security issues--update— Update to latest compatible versions with test verification--add— Add a new package (URL or shorthand)
Workflow
Check (--check)
- Parse
Package.swiftorPackage.resolved - Query package registries for latest versions
- Report packages with updates available
- Categorize: minor, major
Audit (--audit)
- Check dependencies against known vulnerability databases
- Report any security advisories
- Suggest updates or alternatives
Update (--update)
- Show packages to update
- Ask for approval
- Update:
swift package update - Build to verify:
xcodebuild build - Run tests:
xcodebuild test - If tests pass, report success
- If tests fail, rollback and report
Add (--add)
- Validate package URL or resolve shorthand
- Add to
Package.swiftor via Xcode - Resolve dependencies
- Build to verify
- Report usage instructions
Package shorthands
Common packages can be added by name:
alamofire→https://github.com/Alamofire/Alamofire.gitkingfisher→https://github.com/onevcat/Kingfisher.gitswiftyjson→https://github.com/SwiftyJSON/SwiftyJSON.gitsnapkit→https://github.com/SnapKit/SnapKit.git
For universal safety rules and update priority order, see /shared-deps-safety. iOS addition: prefer exact versions for production.
Output
Check output
Package dependencies:
Up to date:
- swift-argument-parser 1.2.3
Updates available:
- Alamofire: 5.8.0 → 5.9.1 (minor)
- Kingfisher: 7.10.0 → 8.0.0 (major ⚠️)
Audit output
Security audit:
No known vulnerabilities found.
Recommendations:
- Kingfisher: Consider updating to 8.x for iOS 17 improvements
Reference
For SPM commands and common packages, see reference/ios-deps-reference.md
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: edfenton
- Source: edfenton/claude-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.