johnrogers/claude-swift-engineering▌
2 approved skills in this repository
ios-hig
Productivity
Apple's Human Interface Guidelines define the visual language, interaction patterns, and accessibility standards that make iOS apps feel native and intuitive. The core principle: clarity and consistency through thoughtful design.
swift-style
Productivity
Swift code style conventions for clean, readable, and idiomatic code. \n \n Enforces naming conventions (UpperCamelCase for types, lowerCamelCase for everything else) and prioritizes clarity over brevity \n Advocates the \"golden path\" pattern: early returns and guards to keep happy-path logic left-aligned, avoiding deep nesting \n Covers code organization with extensions and MARK comments, memory management with weak captures, and access control best practices \n Identifies five common mistake