Summary
Apple の Human Interface Guidelines に準拠したデザインを作成します。iOS、iPadOS、macOS、watchOS、tvOS のデザインシステム、コンポーネント、レイアウト、タイポグラフィ、カラー、アイコン設計を行う際に使用します。UI/UX デザイン、アプリ設計、プロトタイプ作成時に最適です。
smithery.ai
Apple の Human Interface Guidelines に準拠したデザインを作成します。iOS、iPadOS、macOS、watchOS、tvOS のデザインシステム、コンポーネント、レイアウト、タイポグラフィ、カラー、アイコン設計を行う際に使用します。UI/UX デザイン、アプリ設計、プロトタイプ作成時に最適です。
Apple の Human Interface Guidelines に準拠したデザインを作成します。iOS、iPadOS、macOS、watchOS、tvOS のデザインシステム、コンポーネント、レイアウト、タイポグラフィ、カラー、アイコン設計を行う際に使用します。UI/UX デザイン、アプリ設計、プロトタイプ作成時に最適です。
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsOther skills from smithery.ai · top by installs.
npx skills add https://smithery.ai
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Files included with this skill beyond the listing page.
SKILL.md
13,685 B
SUMMARY.md
390 B
Apple の Human Interface Guidelines (HIG) に準拠した、洗練されたユーザーインターフェースデザインを作成するためのスキルです。
以下のような場合に使用してください:
- Large Title: 34pt (Bold) - Title 1: 28pt (Regular) - Title 2: 22pt (Regular) - Title 3: 20pt (Regular) - Headline: 17pt (Semibold) - Body: 17pt (Regular) - Callout: 16pt (Regular) - Subheadline: 15pt (Regular) - Footnote: 13pt (Regular) - Caption 1: 12pt (Regular) - Caption 2: 11pt (Regular)
.systemBlue、.systemGreen などを優先- Label: プライマリテキスト - Secondary Label: セカンダリテキスト - Tertiary Label: 補助テキスト - System Background: 背景 - Secondary System Background: グループ背景
Navigation Bar
Tab Bar
Buttons
Lists
Cards
- Monochrome: 単色 - Hierarchical: 階層的な透明度 - Palette: 複数色 - Multicolor: フルカラー
- シンプルで認識しやすい - 一貫性のあるビジュアルスタイル - 細部まで配慮 - テキストは避ける
- ease-in-out (標準) - spring (自然な動き) - linear (進捗表示)
1. 価値を明確に示す
2. 必要最小限の情報を求める
3. スキップ可能にする
4. インタラクティブなチュートリアル
1. ラベルは常に表示
2. プレースホルダーは例示に使用
3. インラインバリデーション
4. エラーは具体的に説明
1. 検索バーは目立つ位置に
2. サジェストと最近の検索を表示
3. リアルタイムフィルタリング
4. 結果のないケースを処理
このスキルが起動された場合、以下の手順に従ってください:
- 適切なスペーシングとマージン - システムフォントとテキストスタイルの使用 - システムカラーの活用 - 最小タップ領域の確保 - ダークモード対応 - アクセシビリティ考慮
- SwiftUI または UIKit で実装 - SF Symbols を優先的に使用 - ネイティブコンポーネントを活用 - カスタムスタイルは HIG に準拠
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationStack {
List {
ForEach(items) { item in
HStack(spacing: 12) {
Image(systemName: item.icon)
.font(.title2)
.foregroundStyle(.blue)
.frame(width: 28, height: 28)
VStack(alignment: .leading, spacing: 4) {
Text(item.title)
.font(.headline)
Text(item.subtitle)
.font(.subheadline)
.foregroundStyle(.secondary)
}
}
.padding(.vertical, 8)
}
}
.navigationTitle("アイテム")
.navigationBarTitleDisplayMode(.large)
}
}
}
struct PrimaryButton: View {
let title: String
let action: () -> Void
var body: some View {
Button(action: action) {
Text(title)
.font(.headline)
.foregroundStyle(.white)
.frame(maxWidth: .infinity)
.frame(height: 50)
.background(.blue)
.clipShape(RoundedRectangle(cornerRadius: 12))
}
.padding(.horizontal, 16)
}
}
extension Color {
static let appBackground = Color(.systemBackground)
static let appSecondaryBackground = Color(.secondarySystemBackground)
static let appLabel = Color(.label)
static let appSecondaryLabel = Color(.secondaryLabel)
static let appAccent = Color(.systemBlue)
}
struct CustomControl: View {
@State private var isSelected = false
var body: some View {
Button {
isSelected.toggle()
} label: {
Image(systemName: isSelected ? "checkmark.circle.fill" : "circle")
.font(.title2)
.foregroundStyle(isSelected ? .blue : .secondary)
}
.frame(width: 44, height: 44) // 最小タップ領域確保
.accessibilityLabel("選択")
.accessibilityValue(isSelected ? "選択済み" : "未選択")
.accessibilityAddTraits(isSelected ? [.isSelected] : [])
}
}
問題: ダークモードでカラーが適切に表示されない 解決策: ハードコードされたカラー値を使用せず、システムカラーまたはアセットカタログで Light/Dark バリアントを定義
問題: Dynamic Type でレイアウトが崩れる 解決策: 固定サイズではなく、.fixedSize()、.frame(minHeight:)、.lineLimit() を適切に使用
問題: タップ領域が小さすぎる 解決策: 視覚的なサイズが小さくても、.frame(width: 44, height: 44) でタップ領域を確保
問題: VoiceOver で要素が正しく読み上げられない 解決策: .accessibilityLabel()、.accessibilityValue()、.accessibilityHint() を適切に設定
このスキルは最新の HIG (iOS 17、macOS 14 以降) に基づいています。定期的に公式ドキュメントを確認し、最新のベストプラクティスに従ってください。