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 skills add Abdullah4AI/apple-developer-toolkit --skill text-formattinggit clone --depth 1 https://github.com/Abdullah4AI/apple-developer-toolkitWrote 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.
[](https://agentmods.dev/skills/abdullah4ai/apple-developer-toolkit/text-formatting)<a href="https://agentmods.dev/skills/abdullah4ai/apple-developer-toolkit/text-formatting"><img src="https://agentmods.dev/badge/skills/abdullah4ai/apple-developer-toolkit/text-formatting/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.
<a href="https://agentmods.dev/skills/abdullah4ai/apple-developer-toolkit/text-formatting"><img src="https://agentmods.dev/badge/skills/abdullah4ai/apple-developer-toolkit/text-formatting.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00027 | $0.01606 |
| Opus 5 | $0.00014 | $0.00803 |
| Sonnet 5 | $0.00005 | $0.00321 |
| Haiku 4.5 | $0.00003 | $0.00161 |
Grade A, and why
text-formatting 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 5d 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 — 291 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SwiftUI Text Formatting Reference
Modern Text Formatting
Never use C-style String(format:) with Text. Always use format parameters.
Number Formatting
Basic Number Formatting
let value = 42.12345
// Modern (Correct)
Text(value, format: .number.precision(.fractionLength(2)))
// Output: "42.12"
Text(abs(value), format: .number.precision(.fractionLength(2)))
// Output: "42.12" (absolute value)
// Legacy (Avoid)
Text(String(format: "%.2f", abs(value)))
Integer Formatting
let count = 1234567
// With grouping separator
Text(count, format: .number)
// Output: "1,234,567" (locale-dependent)
// Without grouping
Text(count, format: .number.grouping(.never))
// Output: "1234567"
Decimal Precision
let price = 19.99
// Fixed decimal places
Text(price, format: .number.precision(.fractionLength(2)))
// Output: "19.99"
// Significant digits
Text(price, format: .number.precision(.significantDigits(3)))
// Output: "20.0"
// Integer-only
Text(price, format: .number.precision(.integerLength(1...)))
// Output: "19"
Currency Formatting
let price = 19.99
// Correct - with currency code
Text(price, format: .currency(code: "USD"))
// Output: "$19.99"
// With locale
Text(price, format: .currency(code: "EUR").locale(Locale(identifier: "de_DE")))
// Output: "19,99 €"
// Avoid - manual formatting
Text(String(format: "$%.2f", price))
Percentage Formatting
let percentage = 0.856
// Correct - with precision
Text(percentage, format: .percent.precision(.fractionLength(1)))
// Output: "85.6%"
// Without decimal places
Text(percentage, format: .percent.precision(.fractionLength(0)))
// Output: "86%"
// Avoid - manual calculation
Text(String(format: "%.1f%%", percentage * 100))
Date and Time Formatting
Date Formatting
let date = Date()
// Date only
Text(date, format: .dateTime.day().month().year())
// Output: "Jan 23, 2026"
// Full date
Text(date, format: .dateTime.day().month(.wide).year())
// Output: "January 23, 2026"
// Short date
Text(date, style: .date)
// Output: "1/23/26"
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.
- 5d ago First seen · 291 lines · 27 tokens per session scan A 02c8f662a3b7
text-formatting is a skill published in the GitHub repository Abdullah4AI/apple-developer-toolkit (10 stars, last pushed yesterday), licensed MIT. It adds 27 tokens to every session and 1,606 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-09-03.
Other skills, from other repositories
flutter-setup-localization
Add flutterlocalizations and intl dependencies, enable "generate true" in pubspec.yaml, and create an l10n.yaml configuration file. Use when initializing localization support for a new Flutter project.
asc-localize-metadata
Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect.
asc-metadata-sync
Sync, validate, and apply App Store metadata with the current asc canonical metadata workflow. Use when updating metadata, localizations, keywords, or migrating legacy fastlane metadata.
ios-marketing-capture
Use when the user wants to automate capture of marketing screenshots for a SwiftUI iOS app across multiple locales, devices, or appearances. Covers full-screen shots, isolated element renders (carousel cards, widgets), and reproducible output naming. Triggers on marketing screenshots, locale screenshots, widget…
localization-l10n
Implement localization (l10n) best practices to adapt applications for specific regions, languages, and cultural preferences.
maui-localization-theming
Implement MAUI localization and theming. USE FOR: RESX/AppResources, runtime culture switching, RTL/FlowDirection, platform language metadata, AppThemeBinding, DynamicResource, light/dark/system themes, UserAppTheme. DO NOT USE FOR: general layout, accessibility audits, icon/splash assets.