Review iOS code for Apple HIG compliance. Use when validating SwiftUI/UIKit code, checking accessibility, or auditing iOS design implementation.
/plugin marketplace add beshkenadze/claude-skills-marketplace/plugin install beshkenadze-skills-marketplace@beshkenadze/claude-skills-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Validate SwiftUI/UIKit code against Apple Human Interface Guidelines.
Color.primary, Color(.systemBackground)).headline, .body, .caption)accessibilityElement(children: .combine) for grouped contentaccessibilityHidden(true) for decorative elements## HIG Compliance Review
**File:** `Views/SettingsView.swift`
### Issues Found
#### Critical
- Line 45: Touch target too small (32×32pt)
Fix: Add `.frame(minWidth: 44, minHeight: 44)`
#### Warnings
- Line 23: Hardcoded color `Color(hex: "#FF5733")`
Fix: Use `Color.accentColor` or semantic color
#### Suggestions
- Line 67: Consider adding accessibilityLabel to icon button
### Summary
- Critical: 1
- Warnings: 1
- Suggestions: 1
- Overall: Needs fixes before shipping
// ❌ Problem
Text("Hello").foregroundColor(Color(hex: "#333333"))
// ✅ Fix
Text("Hello").foregroundStyle(.primary)
// ❌ Problem
Button { } label: {
Image(systemName: "plus")
}
// ✅ Fix
Button { } label: {
Image(systemName: "plus")
.frame(minWidth: 44, minHeight: 44)
}
// ❌ Problem
Button { delete() } label: {
Image(systemName: "trash")
}
// ✅ Fix
Button { delete() } label: {
Image(systemName: "trash")
}
.accessibilityLabel("Delete item")
User: Review this SwiftUI view for HIG compliance
[pastes code]
Claude: [Runs checklist against code]
- Identifies issues by category
- Provides specific line numbers
- Suggests fixes with code examples
ios-swiftui-generator — Generate compliant codeios-hig-reference — Full HIG referenceCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.