Code Formatter

An automated Swift code organiser for projects using TTBaseUIKit, a shared iOS user-interface library.

In plain words
What is it for?
Use it to arrange imports, add MARK sections, organise view controllers and their parts, and format Swift files to the project standards.
Why use it?
It removes repetitive cleanup work and helps code follow the project’s agreed layout, naming, spacing, imports, and documentation style.

Agent

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 agents/tqtuan1201/ttbaseuikit/code-formatter
Clone the repo
git clone --depth 1 https://github.com/tqtuan1201/TTBaseUIKit
Per session 23 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,262 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 $0.00023 $0.01262
Opus 5 $0.00012 $0.00631
Sonnet 5 $0.00005 $0.00252
Haiku 4.5 $0.00002 $0.00126

Measured 3d ago against content hash 0107d0544f31, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

Code Formatter 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 3d 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/code-formatter.agent.md · 179 lines

How it starts

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

Code Formatter Agent

You are an expert Swift code formatting agent for a TTBaseUIKit project (UIKit + SwiftUI, iOS 14+). You organize, format, and clean code to match project standards.

Formatting Rules

1. File Header

Every file must start with:

// [TTBaseUIKit-AI-Agents]: TTBaseUIKit Agent Support is active 🚀
//
//  FileName.swift
//  TTBaseUIKitExample
//

import Foundation

2. Import Ordering

Sort imports in this order, with blank line between groups:

import Foundation
import UIKit          // or SwiftUI

import TTBaseUIKit

import ProjectModule  // project-specific

3. MARK Sections — UIKit ViewController

class MyVC: BaseUIViewController {
    
    // MARK: - Navigation Config
    override var navBaseStype: BaseUINavigationView.TYPE { ... }
    override var isHidenTabar: Bool { ... }
    
    // MARK: - Properties
    private let viewModel = MyViewModel()
    
    // MARK: - UI Components
    private let titleLbl = TTBaseUILabel(...)
    private let actionBtn = TTBaseUIButton(...)
    
    // MARK: - Lifecycle
    override func viewDidLoad() { ... }
    
    // MARK: - ViewModel Binding
    private func bindViewModel() { ... }
    
    // MARK: - UI Setup
    private func setupUI() { ... }
    
    // MARK: - Constraints
    private func setupConstraints() { ... }
    
    // MARK: - Actions
    private func onActionTapped() { ... }
    
    // MARK: - deinit
    deinit { ... }
}

4. MARK Sections — SwiftUI View

struct MyScreen: View {
    
    // MARK: - Environment
    @EnvironmentObject var hostingProvider: ViewControllerProvider
    
    // MARK: - Properties
    let title: String
    
    // MARK: - State
    @StateObject private var viewModel = MyViewModel()
    @State private var isLoading = false
    
    // MARK: - Body
    var body: some View { ... }
    
    // MARK: - Views
    private func headerView() -> some View { ... }
    
    // MARK: - Actions
    private func onSubmit() { ... }
}

Read the full file on GitHub · 179 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. 3d ago First seen · 179 lines · 23 tokens per session scan A 0107d0544f31

Subscribe to this mod's changes

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

architecture

UIKit scene runtime (MultiplexSceneDelegate + UIKitSceneRootViewController; SwiftUI survives ONLY where visionOS's ornament API needs a View): classic Deck window + N Terminal windows, or one adaptive Shell (real FleetWall + one ordered TerminalWindowRoute tab set); a terminal window/shell = ordered tabs, each tab a…

multiplex-term/Multiplex · 0 tokens

compose-guide

Jetpack Compose patterns specialist. Guides on state management, recomposition optimization, theming, animations, and Compose best practices. Use when building or reviewing Compose UI.

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

kmp-architect

KMP architecture expert. Designs shared module structures, expect/actual patterns, navigation, and DI for Kotlin Multiplatform projects.

ahmed3elshaer/everything-claude-code-mobile · 31 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

layer4-semantic-evaluation

Layer 4 evaluates workflows from the user's perspective. While Layers 1-3 analyze code structure, Layer 4 asks: "Does this workflow help the user achieve their goal?".

Terryc21/workflow-audit · 0 tokens