A collection of Claude Code skills for iOS, Swift, SwiftUI development, and release workflows.
claude plugin install patrickserrano/skillsOr add as a marketplace and install:
claude plugin marketplace add https://github.com/patrickserrano/skills
claude plugin install ios-swift-skills| Skill | Description |
|---|---|
ios-debugger-agent |
Build, run, and debug iOS apps on simulator |
swift-concurrency-expert |
Swift 6.2+ concurrency review and remediation |
swiftui-liquid-glass |
iOS 26+ Liquid Glass API implementation |
swiftui-ui-patterns |
SwiftUI view patterns and best practices |
swiftui-view-refactor |
Refactor views for consistent structure |
swiftui-performance-audit |
Diagnose and fix SwiftUI performance issues |
release-app-store-changelog |
Generate App Store release notes from git |
release-macos-spm-packaging |
Package SwiftPM macOS apps without Xcode |
github-issue-fix-flow |
End-to-end GitHub issue fix workflow |
native-app-profiling |
CLI-based Time Profiler with xctrace |
Once installed, skills are automatically available. Invoke them with /skill-name:
/swiftui-ui-patterns
/release-app-store-changelog
/ios-debugger-agent
Claude will also automatically suggest relevant skills based on your requests.
.claude-plugin/
└── plugin.json # Plugin manifest
skills/
├── ios-debugger-agent/
│ └── SKILL.md
├── swift-concurrency-expert/
│ └── SKILL.md
├── swiftui-liquid-glass/
│ └── SKILL.md
├── swiftui-ui-patterns/
│ └── SKILL.md
├── swiftui-view-refactor/
│ └── SKILL.md
├── swiftui-performance-audit/
│ └── SKILL.md
├── release-app-store-changelog/
│ └── SKILL.md
├── release-macos-spm-packaging/
│ └── SKILL.md
├── github-issue-fix-flow/
│ └── SKILL.md
└── native-app-profiling/
└── SKILL.md
- Create a new directory under
skills/with your skill name - Add a
SKILL.mdfile with frontmatter:
---
name: my-skill-name
description: Brief description of when to use this skill
---
# Skill content hereSkills adapted from:
- Dimillian/Skills by @Dimillian (Thomas Ricouard)
- steipete/agent-scripts by @steipete (Peter Steinberger)
MIT