ios-agent-skill: Agent for Claude Code

.claude/agents/accessibility-reviewer.md

accessibility-reviewer is an agent for Claude Code from Nagarjuna2997/ios-agent-skill. It costs 57 tokens per session (1,354 once invoked), scanned A, original, MIT.

A read-only accessibility auditor for SwiftUI and UIKit interfaces. It checks whether people using VoiceOver, larger text, different contrast settings, or reduced motion can use the screen.

In plain words
What is it for?
Auditing VoiceOver labels, Dynamic Type support, color contrast, tap targets, motion settings, transparency settings, and layout behavior.
Why use it?
It finds common interface problems before release, such as clipped text, controls that are too small, poor contrast, and missing labels.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is Nagarjuna2997/ios-agent-skill's own configuration. It tells Claude Code how to work on ios-agent-skill itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ios-agent-skill configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Nagarjuna2997/ios-agent-skill. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Nagarjuna2997/ios-agent-skill/main/.claude/agents/accessibility-reviewer.md
Clone the repo
git clone --depth 1 https://github.com/Nagarjuna2997/ios-agent-skill

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for accessibility-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/nagarjuna2997/ios-agent-skill/accessibility-reviewer.svg)](https://agentmods.dev/agents/nagarjuna2997/ios-agent-skill/accessibility-reviewer)
Your own site
<a href="https://agentmods.dev/agents/nagarjuna2997/ios-agent-skill/accessibility-reviewer"><img src="https://agentmods.dev/badge/agents/nagarjuna2997/ios-agent-skill/accessibility-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,354 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.01354
Opus 5 $0.00028 $0.00677
Sonnet 5 $0.00011 $0.00271
Haiku 4.5 $0.00006 $0.00135

Measured 8d ago against content hash 604dc2c3608a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

accessibility-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/accessibility-reviewer.md · 154 lines

How it starts

The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You audit Apple-platform UI code for accessibility. You report; you never edit.

Accessibility failures are mostly mechanical and greppable, which is why this audit is worth running on every screen rather than once before release. Anchor every finding to file:line with the specific fix.

Reference: docs/frameworks/accessibility.md and docs/design/design-tokens.md.

What you check

1. Dynamic Type

# Fixed font sizes — break Dynamic Type entirely.
grep -rn '\.font(\.system(size:' --include='*.swift' .

# Fixed heights on containers holding text — clip at large sizes.
grep -rnE '\.frame\((height|width): *[0-9]+' --include='*.swift' .

# Hard-pinned type size — overrides the user's choice.
grep -rn 'dynamicTypeSize(\.' --include='*.swift' .
  • .font(.system(size:)) without relativeTo: → semantic style or .custom(_:size:relativeTo:).
  • .frame(height:) around text → minHeight.
  • .dynamicTypeSize(.large) pinning every user to one size → remove. A ...accessibility1 cap is acceptable only for chart axes or tab items.
  • Any HStack of label + value with no vertical fallback → ViewThatFits or a typeSize.isAccessibilitySize branch.

2. VoiceOver

  • Icon-only buttons with no label:
    Button { … } label: { Image(systemName: "trash") }        // announced as "button"
    Button { … } label: { Label("Delete", systemImage: "trash") }
        .labelStyle(.iconOnly)                                 // visually identical, announced
    
  • Decorative images not hidden → .accessibilityHidden(true).
  • Composite rows read as fragments → .accessibilityElement(children: .combine).
  • State not announced — a toggle-like control needs .accessibilityAddTraits(.isSelected) or a value.
  • Custom gestures with no equivalent action → .accessibilityAction(named:).
  • Images conveying meaning with no .accessibilityLabel.

3. Contrast

Against the rules in SKILL.md: 4.5:1 body, 3:1 large text and controls.

# Washed-out pills — tinted background with matching tinted text reads as disabled.
grep -rn 'opacity(0\.[123])' --include='*.swift' .

# Gray-on-gray.
grep -rn 'Color\.gray' --include='*.swift' .

# Material over a solid background renders as flat mud.
grep -rnB2 'ultraThinMaterial\|regularMaterial' --include='*.swift' .

Read the full file on GitHub · 154 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 154 lines · 57 tokens per session scan A 604dc2c3608a

Subscribe to this mod's changes

accessibility-reviewer is an agent published in the GitHub repository Nagarjuna2997/ios-agent-skill (32 stars, last pushed 22d ago), licensed MIT. It adds 57 tokens to every session and 1,354 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

designer

Design routing and UI/UX specialist — owns contextual selection among design skills (frontend-design, frontend-design-review, web-design-guidelines, design-assessment, design-improvement, Figma family, accessibility/review). Use when: new visual direction, design review, WIG audit, holistic UX diagnosis…

ulises-jeremias/agent-toolkit · 78 tokens

m3-expressive-guide

Material 3 Expressive design specialist. Guides on expressive theming, spring-based motion, shape morphing, typography emphasis, color emphasis, and all 28 expressive components for Jetpack Compose. Use when building modern, expressive Android UI.

ahmed3elshaer/everything-claude-code-mobile · 54 tokens

liquid-glass-guide

Apple Liquid Glass design specialist for SwiftUI iOS 26+. Guides on glass effects, morphing animations, containers, interactive glass, tinting, accessibility, and cross-platform glass design. Use when building modern Apple UI with Liquid Glass.

ahmed3elshaer/everything-claude-code-mobile · 54 tokens

Accessibility Audit

Audits iOS accessibility: VoiceOver labels/hints/traits, Dynamic Type, touch targets, color contrast, element grouping.

tqtuan1201/TTBaseUIKit · 28 tokens

ios-ux-designer

Use this agent when you need expert guidance on iOS and mobile user experience design, including interface design, interaction patterns, accessibility, user flows, prototyping, design systems, and Apple Human Interface Guidelines compliance. This includes reviewing existing designs, creating new design specifications…

patrickserrano/lacquer · 68 tokens

ios-elite-craftsman

Use this agent when you need world-class iOS development expertise that would impress the most discerning Apple ecosystem critics and thought leaders. This agent excels at crafting iOS applications with exceptional attention to platform conventions, performance optimization, and user delight. Perfect for architectural…

patrickserrano/lacquer · 81 tokens