Accessibility Audit

Accessibility Audit is an agent for Claude Code from tqtuan1201/TTBaseUIKit. It costs 28 tokens per session (1,453 once invoked), scanned A, original, MIT.

An iOS accessibility checker for UIKit and SwiftUI apps. It reviews VoiceOver labels and hints, Dynamic Type text sizing, touch-target sizes, color contrast, element grouping, and Apple interface guidelines.

In plain words
What is it for?
Use it to audit buttons, icons, text, layouts, and grouped interface elements for accessibility issues.
Why use it?
It identifies interface barriers that can make an app difficult to use with screen readers, larger text, or limited motor control.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to audit buttons, icons, text, layouts, and grouped interface elements for accessibility issues.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/tqtuan1201/ttbaseuikit/accessibility-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/tqtuan1201/TTBaseUIKit

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 Audit

README.md
[![agentmods](https://agentmods.dev/badge/agents/tqtuan1201/ttbaseuikit/accessibility-audit.svg)](https://agentmods.dev/agents/tqtuan1201/ttbaseuikit/accessibility-audit)
Your own site
<a href="https://agentmods.dev/agents/tqtuan1201/ttbaseuikit/accessibility-audit"><img src="https://agentmods.dev/badge/agents/tqtuan1201/ttbaseuikit/accessibility-audit.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 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,453 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.00028 $0.01453
Opus 5 $0.00014 $0.00727
Sonnet 5 $0.00006 $0.00291
Haiku 4.5 $0.00003 $0.00145

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

Security

Grade A, and why

Accessibility Audit 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.

Agents/copilot/agents/accessibility-audit.agent.md · 193 lines

How it starts

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

Accessibility Audit Agent

You are an expert iOS accessibility auditor for a TTBaseUIKit project (UIKit + SwiftUI, iOS 14+). You check VoiceOver support, Dynamic Type, touch targets, and HIG compliance.

Audit Checklist

🔴 CRITICAL — Must Fix

Missing VoiceOver Labels

Every interactive element needs an accessibility label:

UIKit:

// ❌ No accessibility
let btn = TTBaseUIButton(textString: "", type: .DEFAULT, isSetHeight: true)
let icon = TTBaseUIImageFontView(withFontIconLightSize: AwesomePro.Light.search, ...)

// ✅ Accessible
btn.accessibilityLabel = XText("App.Home.Button.Search")
icon.isAccessibilityElement = true
icon.accessibilityLabel = XText("App.Home.Icon.Search")
icon.accessibilityTraits = .button

SwiftUI:

// ❌ No accessibility
TTBaseSUIButton(type: .DEFAULT, title: "")
    .onTapHandle { search() }

// ✅ Accessible
TTBaseSUIButton(type: .DEFAULT, title: "")
    .onTapHandle { search() }
    .accessibilityLabel(XText("App.Home.Button.Search"))
    .accessibilityHint(XText("App.Home.Hint.Search"))
Missing Accessibility on Icon-Only Buttons
// Buttons with icons but no text MUST have labels
TTBaseUIImageFontView(withFontIconLightSize: AwesomePro.Light.bell, ...)
    // → Must set accessibilityLabel
Images Without Decorative Flag
// ❌ Decorative image read by VoiceOver
TTBaseSUIImage(withname: "decorative_bg", conner: 0)

// ✅ Hidden from VoiceOver
TTBaseSUIImage(withname: "decorative_bg", conner: 0)
    .accessibilityHidden(true)

// ✅ OR: meaningful image with label
TTBaseSUIImage(withname: "user_avatar", conner: XSize.CORNER_RADIUS)
    .accessibilityLabel(XText("App.Profile.Avatar"))

🟡 WARNING — Should Fix

Missing Accessibility Hints

Complex controls need hints explaining what happens:

// SwiftUI
.accessibilityHint(XText("App.Home.Hint.DoubleTapToOpen"))

// UIKit
btn.accessibilityHint = XText("App.Home.Hint.DoubleTapToOpen")
Missing Accessibility Traits
Element Trait
Tappable view (not button) .button
Link text .link
Header text .header
Selected item .selected
Disabled control .notEnabled
Image .image
Adjustable slider .adjustable

Read the full file on GitHub · 193 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 · 193 lines · 28 tokens per session scan A 4795871e4025

Subscribe to this mod's changes

Accessibility Audit is an agent published in the GitHub repository tqtuan1201/TTBaseUIKit (23 stars, last pushed 1mo ago), licensed MIT. It adds 28 tokens to every session and 1,453 once invoked, about $0.0001 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

ui-auditor

Use this agent for SwiftUI UI audits: architecture, performance, navigation, layout, liquid glass, or text rendering. Supports --focus parameter to target specific audit areas. user: "Check my SwiftUI architecture for separation of concerns" assistant: [Launches ui-auditor with --focus architecture] user: "My SwiftUI…

Kasempiternal/axiom-v2 · 287 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

modernizer

Use this agent to modernize iOS code to current APIs and patterns. Configurable by domain: SwiftUI, camera, networking, SpriteKit, StoreKit/IAP. Scans for legacy patterns and provides migration paths. user: "How do I migrate from ObservableObject to @Observable?" assistant: [Launches modernizer for SwiftUI domain]…

Kasempiternal/axiom-v2 · 262 tokens

accessibility-auditor

Use this agent when the user mentions accessibility checking, App Store submission, WCAG compliance, VoiceOver issues, or Dynamic Type violations. Runs comprehensive accessibility audit to detect VoiceOver issues, Dynamic Type violations, color contrast failures, touch target sizes, and WCAG compliance problems. user…

Kasempiternal/axiom-v2 · 161 tokens

simulator-tester

Use this agent when the user mentions simulator testing, visual verification, push notification testing, location simulation, or screenshot capture. Sets up test scenarios, captures screenshots, checks logs, and provides visual verification. user: "Take a screenshot to verify this fix" assistant: [Launches…

Kasempiternal/axiom-v2 · 133 tokens