Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
A collection of Claude Code skills for iOS, Swift, SwiftUI development, and release workflows
npx claudepluginhub patrickserrano/skillsEnd-to-end GitHub issue fix workflow using gh CLI, local code changes, builds/tests, and git push. Use when asked to take an issue number, implement a fix, run builds/tests, commit with a closing message, and push.
Build, run, and debug iOS apps on a simulator. Use when asked to run an iOS app, interact with the simulator UI, capture logs, or diagnose runtime behavior.
Profile native macOS/iOS apps using Time Profiler via CLI (xctrace). Use when asked to identify performance hotspots, profile CPU usage, or diagnose slow code paths without opening Instruments.
Create user-facing App Store release notes from git history. Use when asked to generate release changelog, App Store "What's New" text, or release notes based on git tags.
Scaffold, build, and package SwiftPM-based macOS apps without Xcode project. Use when you need a from-scratch macOS app layout, SwiftPM targets/resources, custom .app bundle assembly, or signing/notarization steps outside Xcode.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Comprehensive collection of iOS development skills including SwiftUI, modern Swift architecture, accessibility, performance optimization, and more.
Elite iOS and macOS development expertise with automatic skill activation for Swift, SwiftUI, UIKit, Xcode, and Apple frameworks plus code formatting tools
Agents and skills for Swift app development on iOS.
Apple development skills for Claude Code and Codex — iOS 26+ APIs, SwiftUI, UIKit, Liquid Glass, SwiftData, and more.
A collection of agents and commands to aid in the planning, implementation, documentation and testing of Swift/TCA code.
This skill should be used when writing or reviewing Swift code for iOS or macOS projects. Apply modern Swift 6+ best practices, concurrency patterns, API design guidelines, and migration strategies. Covers async/await, actors, MainActor, Sendable, typed throws, and Swift 6 breaking changes.
A collection of Claude Code skills for iOS, Swift, SwiftUI development, and release workflows.
claude plugin install patrickserrano/skills
Or 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
skills/ with your skill nameSKILL.md file with frontmatter:---
name: my-skill-name
description: Brief description of when to use this skill
---
# Skill content here
Skills adapted from:
MIT