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.
npx agentmods add agents/tqtuan1201/ttbaseuikit/code-formattergit clone --depth 1 https://github.com/tqtuan1201/TTBaseUIKitWhat 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.
| Model | Per session | Once 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 |
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.
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() { ... }
}
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.
- 3d ago First seen · 179 lines · 23 tokens per session scan A 0107d0544f31
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.
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…
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…
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.
kmp-architect
KMP architecture expert. Designs shared module structures, expect/actual patterns, navigation, and DI for Kotlin Multiplatform projects.
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…
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?".