Apple HIG: Project Context
Create and maintain .claude/apple-design-context.md so other HIG skills can skip redundant questions.
Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered.
Gathering Context
Before asking questions, auto-discover context from:
- README.md -- Product description, platform targets
- Package.swift / .xcodeproj -- Supported platforms, minimum OS versions, dependencies
- Info.plist -- App category, required capabilities, supported orientations
- Existing code -- Import statements reveal frameworks (SwiftUI vs UIKit, HealthKit, etc.)
- Assets.xcassets -- Color assets, icon sets, dark mode variants
- Accessibility audit -- Grep for accessibility modifiers/attributes
Present findings and ask the user to confirm or correct. Then gather anything still missing:
1. Product Overview
- What does the app do? (one sentence)
- Category (productivity, social, health, game, utility, etc.)
- Stage (concept, development, shipped, redesign)
2. Target Platforms
- Which Apple platforms? (iOS, iPadOS, macOS, tvOS, watchOS, visionOS)
- Minimum OS versions
- Universal or platform-specific?
3. Technology Stack
- UI framework: SwiftUI, UIKit, AppKit, or mixed?
- Architecture: single-window, multi-window, document-based?
- Apple technologies in use? (HealthKit, CloudKit, ARKit, etc.)
4. Design System
- System defaults or custom design system?
- Brand colors, fonts, icon style?
- Dark mode and Dynamic Type support status
5. Accessibility Requirements
- Target level (baseline, enhanced, comprehensive)
- Specific considerations (VoiceOver, Switch Control, etc.)
- Regulatory requirements (WCAG, Section 508)
6. User Context
- Primary personas (1-3)
- Key use cases and enprojectnments (desk, on-the-go, glanceable, immersive)
- Known pain points or design challenges
7. Existing Design Assets
- Figma/Sketch files?
- Apple Design Resources in use?
- Existing component library?
Context Document Template
Generate .claude/apple-design-context.md using this structure:
# Apple Design Context
## Product
- **Name**: [App name]
- **Description**: [One sentence]
- **Category**: [Category]
- **Stage**: [Concept / Development / Shipped / Redesign]
## Platforms
| Platform | Supported | Min OS | Notes |
|----------|-----------|--------|-------|
| iOS | Yes/No | | |
| iPadOS | Yes/No | | |
| macOS | Yes/No | | |
| tvOS | Yes/No | | |
| watchOS | Yes/No | | |
| visionOS | Yes/No | | |
## Technology
- **UI Framework**: [SwiftUI / UIKit / AppKit / Mixed]
- **Architecture**: [Single-window / Multi-window / Document-based]
- **Apple Technologies**: [List any: HealthKit, CloudKit, ARKit, etc.]
## Design System
- **Base**: [System defaults / Custom design system]
- **Brand Colors**: [List or reference]
- **Typography**: [System fonts / Custom fonts]
- **Dark Mode**: [Supported / Not yet / N/A]
- **Dynamic Type**: [Supported / Not yet / N/A]
## Accessibility
- **Target Level**: [Baseline / Enhanced / Comprehensive]
- **Key Considerations**: [List any specific needs]
## Users
- **Primary Persona**: [Description]
- **Key Use Cases**: [List]
- **Known Challenges**: [List]
Updating Context
When updating an existing context document:
- Read the current
.claude/apple-design-context.md
- Ask what has changed
- Update only the changed sections
- Preserve all unchanged information
Related Skills
- hig-platforms -- Platform-specific guidance
- hig-foundations -- Color, typography, layout decisions
- hig-patterns -- UX pattern recommendations
- hig-components-* -- Component recommendations
- hig-inputs -- Input method coverage
- hig-technologies -- Apple technology relevance
Built by Raintree Technology · More developer tools
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: hig-project-context3description: Create or update a shared Apple design context document that other HIG skills use to tailor guidance.4---56# Apple HIG: Project Context78Create and maintain `.claude/apple-design-context.md` so other HIG skills can skip redundant questions.910Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.1112## Gathering Context1314Before asking questions, auto-discover context from:15161. **README.md** -- Product description, platform targets172. **Package.swift / .xcodeproj** -- Supported platforms, minimum OS versions, dependencies183. **Info.plist** -- App category, required capabilities, supported orientations194. **Existing code** -- Import statements reveal frameworks (SwiftUI vs UIKit, HealthKit, etc.)205. **Assets.xcassets** -- Color assets, icon sets, dark mode variants216. **Accessibility audit** -- Grep for accessibility modifiers/attributes2223Present findings and ask the user to confirm or correct. Then gather anything still missing:2425### 1. Product Overview26- What does the app do? (one sentence)27- Category (productivity, social, health, game, utility, etc.)28- Stage (concept, development, shipped, redesign)2930### 2. Target Platforms31- Which Apple platforms? (iOS, iPadOS, macOS, tvOS, watchOS, visionOS)32- Minimum OS versions33- Universal or platform-specific?3435### 3. Technology Stack36- UI framework: SwiftUI, UIKit, AppKit, or mixed?37- Architecture: single-window, multi-window, document-based?38- Apple technologies in use? (HealthKit, CloudKit, ARKit, etc.)3940### 4. Design System41- System defaults or custom design system?42- Brand colors, fonts, icon style?43- Dark mode and Dynamic Type support status4445### 5. Accessibility Requirements46- Target level (baseline, enhanced, comprehensive)47- Specific considerations (VoiceOver, Switch Control, etc.)48- Regulatory requirements (WCAG, Section 508)4950### 6. User Context51- Primary personas (1-3)52- Key use cases and enprojectnments (desk, on-the-go, glanceable, immersive)53- Known pain points or design challenges5455### 7. Existing Design Assets56- Figma/Sketch files?57- Apple Design Resources in use?58- Existing component library?5960## Context Document Template6162Generate `.claude/apple-design-context.md` using this structure:6364```markdown65# Apple Design Context6667## Product68- **Name**: [App name]69- **Description**: [One sentence]70- **Category**: [Category]71- **Stage**: [Concept / Development / Shipped / Redesign]7273## Platforms74| Platform | Supported | Min OS | Notes |75|----------|-----------|--------|-------|76| iOS | Yes/No | | |77| iPadOS | Yes/No | | |78| macOS | Yes/No | | |79| tvOS | Yes/No | | |80| watchOS | Yes/No | | |81| visionOS | Yes/No | | |8283## Technology84- **UI Framework**: [SwiftUI / UIKit / AppKit / Mixed]85- **Architecture**: [Single-window / Multi-window / Document-based]86- **Apple Technologies**: [List any: HealthKit, CloudKit, ARKit, etc.]8788## Design System89- **Base**: [System defaults / Custom design system]90- **Brand Colors**: [List or reference]91- **Typography**: [System fonts / Custom fonts]92- **Dark Mode**: [Supported / Not yet / N/A]93- **Dynamic Type**: [Supported / Not yet / N/A]9495## Accessibility96- **Target Level**: [Baseline / Enhanced / Comprehensive]97- **Key Considerations**: [List any specific needs]9899## Users100- **Primary Persona**: [Description]101- **Key Use Cases**: [List]102- **Known Challenges**: [List]103```104105## Updating Context106107When updating an existing context document:1081091. Read the current `.claude/apple-design-context.md`1102. Ask what has changed1113. Update only the changed sections1124. Preserve all unchanged information113114## Related Skills115116- **hig-platforms** -- Platform-specific guidance117- **hig-foundations** -- Color, typography, layout decisions118- **hig-patterns** -- UX pattern recommendations119- **hig-components-*** -- Component recommendations120- **hig-inputs** -- Input method coverage121- **hig-technologies** -- Apple technology relevance122123---124125*Built by [Raintree Technology](https://raintree.technology) · [More developer tools](https://raintree.technology)*126127## When to Use128This skill is applicable to execute the workflow or actions described in the overview.129130## Limitations131- Use this skill only when the task clearly matches the scope described above.132- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.133- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.