uikit-expert

uikit-expert is a skill for Claude Code, Codex from zinxj/uikit-expert-skill. It costs 95 tokens per session (4,407 once invoked), scanned A, original, MIT.

A guide for writing, reviewing, or improving UIKit code, the native framework used to build iPhone and iPad interfaces. It covers view-controller lifecycle, Auto Layout, lists, navigation, animation, memory management, and newer iOS APIs.

In plain words
What is it for?
It is for building or reviewing UIKit screens, view controllers, collection and table views, navigation flows, animations, and layouts on modern iOS versions.
Why use it?
It helps prevent common interface bugs, layout problems, slow scrolling, unsafe navigation, and use of outdated APIs. It also provides practical checks for keeping UIKit code maintainable and efficient.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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.

agentmods
npx agentmods add skills/zinxj/uikit-expert-skill/uikit-expert
Any agent
npx skills add zinxj/uikit-expert-skill --skill uikit-expert
Clone the repo
git clone --depth 1 https://github.com/zinxj/uikit-expert-skill

Made for: Claude Code, Codex.

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 uikit-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/zinxj/uikit-expert-skill/uikit-expert.svg)](https://agentmods.dev/skills/zinxj/uikit-expert-skill/uikit-expert)
Your own site
<a href="https://agentmods.dev/skills/zinxj/uikit-expert-skill/uikit-expert"><img src="https://agentmods.dev/badge/skills/zinxj/uikit-expert-skill/uikit-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,407 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00095 $0.04407
Opus 5 $0.00048 $0.02204
Sonnet 5 $0.00019 $0.00881
Haiku 4.5 $0.00010 $0.00441

Measured 6d ago against content hash c71de7d11922, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

uikit-expert 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 6d 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.

uikit-expert/SKILL.md · 281 lines

How it starts

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

UIKit Expert Skill

Overview

Use this skill to build, review, or improve UIKit features with correct lifecycle management, performant Auto Layout, modern collection view APIs, and safe navigation patterns. Prioritize native APIs, Apple's documented best practices, and performance-conscious patterns. This skill focuses on facts and best practices without enforcing specific architectural patterns (no MVVM/VIPER/Coordinator mandates).

Workflow Decision Tree

1) Review existing UIKit code

  • Check view controller lifecycle usage — viewIsAppearing for geometry, viewDidLoad for setup only (see references/view-controller-lifecycle.md)
  • Verify Auto Layout correctness — batch activation, no constraint churn, translatesAutoresizingMaskIntoConstraints (see references/auto-layout.md)
  • Check collection/table view APIs — diffable data sources, stable identity, CellRegistration (see references/modern-collection-views.md)
  • Verify cell configuration uses UIContentConfiguration, not deprecated textLabel (see references/cell-configuration.md)
  • Check list scroll performance — prefetching, cell reuse cleanup, reconfigureItems (see references/list-performance.md)
  • Verify navigation patterns — bar appearance all 4 slots, no concurrent transition crashes (see references/navigation-patterns.md)
  • Check animation correctness — API selection, PropertyAnimator state machine, constraint animation (see references/animation-patterns.md)
  • Audit memory management — [weak self], delegate ownership, Timer/CADisplayLink traps (see references/memory-management.md)
  • Check concurrency safety — Task lifecycle, cancellation in viewDidDisappear (see references/concurrency-main-thread.md)
  • If SwiftUI interop present — verify UIHostingController containment, sizingOptions (see references/uikit-swiftui-interop.md)
  • Check image loading — downsampling, cell reuse race condition (cancel/clear/verify) (see references/image-loading.md)
  • Verify keyboard handling — UIKeyboardLayoutGuide over manual notifications (see references/keyboard-scroll.md)
  • Check trait handling and accessibility — registerForTraitChanges, Dynamic Type, VoiceOver (see references/adaptive-appearance.md)
  • Validate modern API adoption and iOS 26+ availability handling (see references/modern-uikit-apis.md)

Read the full file on GitHub · 281 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. 6d ago First seen · 281 lines · 95 tokens per session scan A c71de7d11922

Subscribe to this mod's changes

uikit-expert is a skill published in the GitHub repository zinxj/uikit-expert-skill (5 stars, last pushed 3d ago), licensed MIT. It adds 95 tokens to every session and 4,407 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

compose-modernize-build

Modernize an Android project's Gradle build: bump to Kotlin 2.x with kotlin-compose plugin (replace kotlinCompilerExtensionVersion), migrate kapt to KSP, introduce Version Catalogs (libs.versions.toml), use the Compose BOM, switch to Material 3.

RoninForge/roninforge-kotlin-compose · 59 tokens

android-feature

Workflow for implementing a new Android feature, screen, fragment, activity, dialog, adapter, or enhancement in this XML/MVVM template. Use whenever the user asks to add, build, implement, or extend functionality — before writing any code. Covers planning, the MVVM/MVI skeleton, the Android configuration checklist…

orbitalsonic/AndroidPilot · 72 tokens

swiftui-view-architect

Refactor oversized SwiftUI view files into stable, dedicated subviews with MV-first data flow, explicit dependencies, extracted actions, and correct Observation usage.

Xopoko/build-swift-apps · 36 tokens

flutter-codestyle

Custom Instructions: Senior Flutter & Dart Engineer.

GulajavaMinistudio/awesome-copilot-id · 13 tokens

ios-agent-skill

Expert iOS/Swift developer behavior for AI coding agents. Use when writing, reviewing, or refactoring Swift, SwiftUI, UIKit, or SwiftData code; when designing iOS app architecture (MVVM, Clean Architecture, coordinators, routing); when building UI that must meet Apple's Human Interface Guidelines, contrast, dark-mode…

Nagarjuna2997/ios-agent-skill · 167 tokens

bootstrap-ios

Bootstrap agents for iOS, iPadOS, macOS, Swift, SwiftUI, SwiftData/Core Data, Swift Testing, Xcode build/test/debug, Simulator, App Intents, or XcodeBuildMCP work. Use before building, fixing, refactoring, QAing, or setting up Apple-platform repos, and when asked to load/install Ray's iOS skills or bootstrap iOS.

RayFernando1337/rayfernando-skills · 84 tokens