Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Apple HIG Expert

Audits and designs iOS/macOS/watchOS/visionOS interfaces against Apple's Human Interface Guidelines, including the Liquid Glass design language.

Design & UIIntermediate24,1513,405AI score 9/10Last updated: Aug 9, 2026

What it does

  • Audits Apple-platform screens against the HIG and returns a scored report (100 points, -10 per violation).
  • Ships scripts/hig_checker.py (stdlib-only) with contrast, target, and batch subcommands to actually compute WCAG contrast ratios and check 44x44 pt tap targets from a JSON file.
  • Covers Liquid Glass material hierarchy (iOS 26 / macOS Tahoe), semantic colors, Dynamic Type, and VoiceOver labeling.
  • Two modes: design from scratch (platform navigation paradigms first) or audit an existing mockup, with findings delivered bottom-line-first and tagged 🟢 tool-verified / 🟡 needs device test / 🔴 assumed.

Who it's for

  • iOS/macOS engineers building SwiftUI or UIKit apps
  • Product designers who need genuinely native-feeling Apple UI
  • Teams that want a pre-release accessibility and design QA checklist

Examples

  1. "Audit my iOS settings screen against the HIG" → 80/100 scorecard listing a failing caption contrast (3.26) and an undersized 32x32 close button.
  2. "Is #8E8E93 readable on a white card?" → computes the ratio and suggests .secondaryLabel or a darker value.
  3. "Design a new visionOS screen" → layout proposal using ornaments, gaze states, and platform-appropriate navigation.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/alirezarezvani/claude-skills/HEAD/.gemini/skills/apple-hig-expert/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .gemini/skills/apple-hig-expert folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/apple-hig-expert/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills && mkdir -p ~/.claude/skills && cp -r /tmp/claude-skills/.gemini/skills/apple-hig-expert ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/alirezarezvani/claude-skills.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r claude-skills/.gemini/skills/apple-hig-expert ~/.claude/skills/
  5. Verify Python 3 is available with python3 --version (the checker uses only the standard library).
  6. Restart Claude Code and ask something like "audit this iOS mockup against the HIG" to trigger the skill.