Sandbox
@raintree-technology/hig-doctor

HIG audit CLI and MCP tools for agent workflows

HIG Doctor checks source code for Apple HIG and accessibility issues, then points to the exact file, rule, and fix guidance. It uses one shared catalog across the CLI, MCP server, skills, and core package, so the same checks and references show up in different agent workflows.

126 stars9 forksTypeScriptUpdated 12d ago
Who it's for

Builders who want their agent to audit interface code against Apple HIG and accessibility rules.

What it delivers

You can catch reviewable UI issues before release and give your agent bounded, source-backed guidance.

What it does

Source audits with severity

Scans projects and files, then reports concerns with severity, locations, rule IDs, and fix guidance.

Apple HIG and accessibility rule catalog

Uses a shared catalog across SwiftUI, UIKit, AppKit, watchOS, visionOS, and web frameworks.

Baseline and suppression support

Supports gradual adoption with configuration, inline suppressions, baselines, SARIF output, and `--fail-on`.

MCP search and explanation tools

Lets agents search the frozen reference corpus, look up topics, audit files or projects, and explain findings.

Shared core package

Provides an embeddable rule engine in `packages/core` for other tools and agent setups.

HIG skill packs

Includes packaged skills under `skills/*` for foundations, patterns, inputs, platforms, and component guidance.

How to get it

  1. 1HIG Doctor helps developers and coding agents find interface issues before release. It…
    npx hig-doctor .
  2. 2The CLI detects the project frameworks, reports concerns by severity, and points to a…
    2 moderate concerns · swiftui · 1 file
    View.swift:5 · swift/navigation-view-deprecated
    View.swift:7 · swift/hardcoded-color
  3. 3Install the public Codex marketplace first with codex plugin marketplace add…
    framework detection → regex scan → structural refinement → categorized findings → report or SARIF

README

HIG Doctor

HIG Doctor

Active open-source project · MIT tooling with attributed Apple reference content

HIG Doctor helps developers and coding agents find interface issues before release. It checks Apple-platform source against Apple’s Human Interface Guidelines and checks web and cross-platform source against aligned accessibility and interface-quality rules.

Run an audit

npx hig-doctor .

The CLI detects the project frameworks, reports concerns by severity, and points to a specific fix and source reference. This result is generated from the committed test/fixtures/readme-audit project and checked in the test suite:

2 moderate concerns · swiftui · 1 file
View.swift:5 · swift/navigation-view-deprecated
View.swift:7 · swift/hardcoded-color

The audit catalog currently contains 431 rules across 14 frameworks. Counts are generated from the rule catalog and checked in CI; they are coverage inventory, not a claim of complete HIG conformance.

Why use HIG Doctor

  • Catch reviewable source issues. Findings include severity, location, rule ID, fix guidance, and the reference that supports the concern.
  • Gate only new debt. Configuration, inline suppressions, content-based baselines, SARIF, and --fail-on support gradual adoption.
  • Give agents bounded guidance. MCP tools search the frozen reference corpus and explain individual findings without presenting generated advice as canonical HIG.
  • Use one engine across workflows. The CLI, MCP server, and embeddable core package share the same catalog and analysis tiers.

Choose a surface

SurfaceUse it forStart
Audit CLISource scans and CI gatesnpx hig-doctor .
MCP serverSearch, lookup, file audits, and explanationsnpx -y hig-mcp
Agent skillsDesign guidance and source auditscodex plugin add hig-doctor@raintree
Core packageEmbed the rule enginenpm install @raintree-technology/hig-doctor-core

The MCP server works over stdio or streamable HTTP. Its six tools list skills, look up topics, search the corpus, audit projects or files, and explain findings. See the MCP package README for client configuration.

Install the public Codex marketplace first with codex plugin marketplace add raintree-technology/plugins.

How analysis works

framework detection → regex scan → structural refinement → categorized findings → report or SARIF
  • The zero-dependency regex tier is comment- and string-aware.
  • Swift structural analysis follows chained modifiers to remove handled findings.
  • The TypeScript compiler refines selected JSX accessibility checks when available.
  • Every finding records the engine that produced it.

Precision and recall are measured on an annotated fixture corpus in docs/benchmark.md. CI enforces the published floors.

Framework coverage

Apple-platform rows are checked against the HIG directly. Web and cross-platform rows use universal accessibility and interface-quality principles that align with the HIG.

FrameworkRulesBasis
SwiftUI (swift)70Apple HIG
UIKit35Apple HIG
AppKit25Apple HIG
watchOS13Apple HIG
visionOS10Apple HIG
React / Next.js (web)122HIG-aligned universal checks
CSS / SCSS25HIG-aligned universal checks
Vue / Nuxt19HIG-aligned universal checks
Angular17HIG-aligned universal checks
Svelte / SvelteKit14HIG-aligned universal checks
Flutter21HIG-aligned universal checks
Jetpack Compose28HIG-aligned universal checks
Android XML18HIG-aligned universal checks
React Native14HIG-aligned universal checks

The authoritative per-rule inventory is docs/rules.md.

Skills corpus

The frozen 2025-02-02 snapshot contains 14 skills and 156 reference topics. Apple’s live Human Interface Guidelines remain canonical.

SkillDescription
hig-foundationsColor, typography, symbols, accessibility, layout, motion, privacy, and branding
hig-platformsiOS, iPadOS, macOS, tvOS, watchOS, and visionOS
hig-patternsOnboarding, navigation, search, feedback, modality, and settings
hig-inputsTouch, Pencil, keyboard, controller, pointer, Crown, and eye input
hig-technologiesSiri, Apple Pay, HealthKit, ARKit, ML, Sign in with Apple, and SharePlay
hig-project-contextShared project context for tailored guidance
hig-components-contentCharts, collections, images, web views, and lockups
hig-components-controlsPickers, toggles, sliders, buttons, and fields
hig-components-dialogsAlerts, action sheets, popovers, and sheets
hig-components-layoutSidebars, split views, tabs, lists, tables, and windows
hig-components-menusMenus, toolbars, buttons, and menu bars
hig-components-searchSearch fields, page controls, and path controls
hig-components-statusProgress indicators, status bars, and activity rings
hig-components-systemWidgets, live activities, notifications, complications, and App Clips

Nightly drift detection compares the snapshot with Apple’s DocC JSON. Content changes remain human-reviewed; a hash change does not automatically rewrite guidance.

Limits and evidence boundary

Automated findings support review. They do not prove accessibility, HIG conformance, or design quality. Regex fallback can produce different precision than structural analysis, and project-specific context can justify a documented suppression.

Apple owns the HIG content. This repository provides organization, cross-referencing, and detection rules. Each reference retains attribution and a canonical source URL.

Documentation

Raintree open-source system

HIG Doctor owns interface guidance and source audits. It can be used independently. DocPull acquires evidence, PolicyStrata tests policy behavior, Trellis enforces shared code policy, and Raintree Standards defines governed requirements. See the Raintree open-source portfolio.

Project policies

Contributing · Code of Conduct · Security · Changelog · Source repository · MIT License · Third-party notices

Apple HIG reference text in skills/*/references/ is © Apple Inc. and remains subject to Apple’s terms.

Files in the repo

Repository payload34 top-level entries
  • .agents
  • .claude-plugin
  • .github
  • brand
  • demos
  • docs
  • packages
  • plugin
  • scripts
  • skills
  • test
  • website
  • .editorconfig
  • .env.example
  • .gitattributes
  • .gitignore
  • .infisical.json
  • action.yml
  • AGENTS.md
  • bun.lock
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • hig-snapshot.json
  • LICENSE
  • mise.lock
  • mise.toml
  • package.json
  • README.md
  • renovate.json
  • SECURITY.md
  • socket.yml
  • THIRD_PARTY_NOTICES.md
  • VERSIONS.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More tools

JuliusBrussee/
caveman

🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman

105k
1 add
stablyai/
orca

Orca is the ADE for working with a fleet of parallel agents. Run any coding agent with your own subscription. Available on desktop, mobile and remote runtime.

66k
anthropics/
claude-code

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

145k

Fast, efficient, battle-tested at Alibaba's scale. Hybrid architecture code review tool: deterministic pipelines + LLM Agent, precise line-level comments, built-in multi-language ruleset (NPE, thread-safety, XSS, SQL injection), OpenAI & Anthropic compatible.

22k

An open-source AI agent that brings the power of Gemini directly into your terminal.

107k
sickn33/
agentic-awesome-skills

AAS Core is the local, agent-first control plane for complete catalog discovery, agent-owned selection, stack validation, and planning, backed by 2,115+ agentic skills. Includes CLI, local MCP, catalog, plugins, and Workbench.

46k