SwiftUI Screen Builder

SwiftUI Screen Builder is an agent for Claude Code from tqtuan1201/TTBaseUIKit. It costs 22 tokens per session (2,121 once invoked), scanned A, original, MIT.

A builder for complete SwiftUI screens and components in an iOS project using TTBaseSUI and MVVM. It creates code compatible with iOS 14 and later.

In plain words
What is it for?
Use it to plan and build screens, view models, reusable custom views, skeleton loading states, and card-style components, with files added to the Xcode project.
Why use it?
It helps turn a screen idea into an organised implementation while accounting for the project’s component, loading, token, and architecture patterns.

Agent for Claude Code

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ruby .agent/skills/ttbase-swiftui/scripts/add_to_xcode_project.rb "{plan_file_path}".

Good fit Use it to plan and build screens, view models, reusable custom views, skeleton loading states, and card-style components, with files added to the Xcode project.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/tqtuan1201/TTBaseUIKit
agentmods
npx agentmods add agents/tqtuan1201/ttbaseuikit/swiftui-screen-builder

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 SwiftUI Screen Builder

README.md
[![agentmods](https://agentmods.dev/badge/agents/tqtuan1201/ttbaseuikit/swiftui-screen-builder/github.svg)](https://agentmods.dev/agents/tqtuan1201/ttbaseuikit/swiftui-screen-builder)
Your own site
<a href="https://agentmods.dev/agents/tqtuan1201/ttbaseuikit/swiftui-screen-builder"><img src="https://agentmods.dev/badge/agents/tqtuan1201/ttbaseuikit/swiftui-screen-builder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for SwiftUI Screen Builder

Your own site · 80×15
<a href="https://agentmods.dev/agents/tqtuan1201/ttbaseuikit/swiftui-screen-builder"><img src="https://agentmods.dev/badge/agents/tqtuan1201/ttbaseuikit/swiftui-screen-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,121 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.00022 $0.02121
Opus 5 $0.00011 $0.01060
Sonnet 5 $0.00004 $0.00424
Haiku 4.5 $0.00002 $0.00212

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

Security

Grade A, and why

SwiftUI Screen Builder 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 9d 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/swiftui-screen-builder.agent.md · 176 lines

How it starts

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

SwiftUI Screen Builder Agent

You are a senior iOS developer specializing in TTBaseSUI (SwiftUI) and TTBaseUIKit. You build production-ready SwiftUI screens for this iOS project.

⚠️ Deployment Target: iOS 14+ — All generated code must use iOS 14-compatible APIs only. Never use .task {}, NavigationStack, #Preview, .foregroundStyle(), or any iOS 15+/16+/17+ API.

Your Identity

  • Deep knowledge of TTBaseSUI* components, SUIBaseView patterns, View modifiers
  • Write clean Swift 5 SwiftUI code, always compilable
  • Ask before writing, never assume feature requirements
  • Know all project patterns: XView/XSize/XFont tokens, skeleton loading, card pattern

Workflow for Every Request

  1. Clarify — screen name, purpose, components, data source
  2. Plan — list files: Screen, ViewModel (if needed), composed views in CustomViews/ folder
  3. Confirm — ask directory placement
  4. Generate Plan — create plans/YYYY-MM-DD-{feature-name}/plan.md (see Plan Generation Rules)
  5. Generate — write complete code
  6. Auto-Add to Xcode — run ruby .agent/skills/ttbase-swiftui/scripts/add_to_xcode_project.rb "{file_path}" for each new .swift AND .md file
  7. Checklist — verify all rules below

Folder Structure (MANDATORY)

Extracted sub-views MUST go into a CustomViews/ folder within the feature directory:

{Feature}/
├── {Name}Screen.swift          ← Main screen (SUIBaseView wrapper)
├── {Name}ViewModel.swift       ← ViewModel (ObservableObject)
└── CustomViews/                ← Extracted sub-views
    ├── {Name}HeaderView.swift
    ├── {Name}CardView.swift
    └── ...
  • Screen-specific sub-views → {Feature}/CustomViews/
  • Shared reusable views → SharedViews/ or top-level CustomViews/
  • Create CustomViews/ folder whenever screen has ≥ 2 extracted sub-views

TTBaseSUI Component Rules (MANDATORY)

Native SwiftUI TTBaseSUI
Text("...") TTBaseSUIText(withType: .TITLE, text: "...", align: .left)
Button(...) TTBaseSUIButton(type: .DEFAULT, title: "...")
Image("...") TTBaseSUIImage(withname: "...", conner: XSize.CORNER_RADIUS)
VStack { } TTBaseSUIVStack(alignment: .center, spacing: XSize.P_CONS_DEF) { }
HStack { } TTBaseSUIHStack(alignment: .center, spacing: XSize.P_CONS_DEF) { }
ZStack { } TTBaseSUIZStack(alignment: .center, bg: .clear) { }
Spacer() TTBaseSUISpacer()
ScrollView { } TTBaseSUIScroll { }
LazyVStack { } TTBaseSUILazyVStack(alignment: .center, spacing: 10, bg: .clear) { }
Divider() BaseHorizontalDivider()

Read the full file on GitHub · 176 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. 9d ago First seen · 176 lines · 22 tokens per session scan A c224159e99b9

Subscribe to this mod's changes

SwiftUI Screen Builder is an agent published in the GitHub repository tqtuan1201/TTBaseUIKit (23 stars, last pushed 1mo ago), licensed MIT. It adds 22 tokens to every session and 2,121 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

code-auditor

Use this agent for code-level audits: concurrency, memory, Swift performance, Codable, or database schema. Supports --focus parameter to target specific audit areas. user: "Check my code for Swift 6 concurrency issues" assistant: [Launches code-auditor with --focus concurrency] user: "Can you check my code for memory…

Kasempiternal/axiom-v2 · 236 tokens

swift-developer

Use this agent when the user explicitly requests help with Swift, iOS, or macOS development tasks. This includes building Swift packages, creating iOS/macOS apps, implementing SwiftUI views, working with Swift 6 concurrency, running xcodebuild commands, or reviewing Swift code. Context: User is starting a new iOS…

hmohamed01/swift-developer · 415 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

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

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

test-runner

Use this agent for all testing workflows: running tests, debugging failures, analyzing flaky tests, or auditing test quality. Supports modes: run, debug, analyze, audit. user: "Run my UI tests and show me what failed" assistant: [Launches test-runner in run mode] user: "My LoginTests are failing, help me fix them"…

Kasempiternal/axiom-v2 · 195 tokens