swift-tdd-guide-example

swift-tdd-guide-example is an agent for coding agents from OkminLee/everything-claude-code-ios. It costs 0 tokens per session (1,360 once invoked), scanned A, original, MIT.

An example agent for developing Swift features with TDD, or test-driven development. TDD means writing tests for the expected behavior before implementing the feature, such as product search and its error cases.

In plain words
What is it for?
Use it as a reference for writing Swift tests and building features such as search, empty-input handling, and returning locally cached data after a network error.
Why use it?
It shows how to define expected results first and use tests to guide implementation, including fallback behavior when a network request fails.

Agent

Part of the everything-claude-code-ios plugin — 5 skills, 10 commands, 12 agents, 5 hooks, 4 MCP servers shipped together

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/okminlee/everything-claude-code-ios/swift-tdd-guide-example
Clone the repo
git clone --depth 1 https://github.com/OkminLee/everything-claude-code-ios

Or install everything-claude-code-ios, the plugin that ships this one along with the rest of its 5 skills, 10 commands, 12 agents, 5 hooks, 4 MCP servers.

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 swift-tdd-guide-example

README.md
[![agentmods](https://agentmods.dev/badge/agents/okminlee/everything-claude-code-ios/swift-tdd-guide-example.svg)](https://agentmods.dev/agents/okminlee/everything-claude-code-ios/swift-tdd-guide-example)
Your own site
<a href="https://agentmods.dev/agents/okminlee/everything-claude-code-ios/swift-tdd-guide-example"><img src="https://agentmods.dev/badge/agents/okminlee/everything-claude-code-ios/swift-tdd-guide-example.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 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,360 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.00000 $0.01360
Opus 5 $0.00000 $0.00680
Sonnet 5 $0.00000 $0.00272
Haiku 4.5 $0.00000 $0.00136

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

Security

Grade A, and why

swift-tdd-guide-example 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 4d 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.

examples/agents/swift-tdd-guide-example.md · 232 lines

How it starts

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

swift-tdd-guide 사용 예제

TDD 방식으로 새 기능을 개발하는 세션 예시입니다.


시나리오

상품 검색 기능을 TDD로 개발하는 상황입니다.

세션 예시

사용자 요청

@swift-tdd-guide
상품 검색 기능을 TDD로 개발하고 싶어.
- 검색어로 상품 목록 조회
- 빈 검색어는 전체 목록 반환
- 네트워크 에러 시 로컬 캐시 반환

에이전트 응답 예시

## TDD 워크플로우 시작

### Step 1: 테스트 케이스 정의

```swift
// Tests/ProductSearchServiceTests.swift
import Testing
@testable import MyApp

@Suite("ProductSearchService Tests")
struct ProductSearchServiceTests {

    var sut: ProductSearchService!
    var mockRepository: MockProductRepository!

    init() {
        mockRepository = MockProductRepository()
        sut = ProductSearchService(repository: mockRepository)
    }

    // MARK: - 검색 성공 케이스

    @Test("검색어로 상품 조회 시 일치하는 상품 반환")
    func searchWithQuery_returnsMatchingProducts() async throws {
        // Given
        let expectedProducts = [Product.mock(name: "iPhone")]
        mockRepository.searchResult = .success(expectedProducts)

        // When
        let result = try await sut.search(query: "iPhone")

        // Then
        #expect(result.count == 1)
        #expect(result.first?.name == "iPhone")
    }

    @Test("빈 검색어로 조회 시 전체 상품 반환")
    func searchWithEmptyQuery_returnsAllProducts() async throws {
        // Given
        let allProducts = [Product.mock(), Product.mock()]
        mockRepository.allProductsResult = .success(allProducts)

        // When
        let result = try await sut.search(query: "")

        // Then
        #expect(result.count == 2)
    }

    // MARK: - 에러 케이스

    @Test("네트워크 에러 시 캐시된 결과 반환")
    func searchWithNetworkError_returnsCachedResults() async throws {
        // Given
        mockRepository.searchResult = .failure(NetworkError.noConnection)
        mockRepository.cachedProducts = [Product.mock(name: "Cached")]

        // When
        let result = try await sut.search(query: "test")

        // Then
        #expect(result.first?.name == "Cached")
    }

    @Test("네트워크 에러이고 캐시도 없으면 에러 throw")
    func searchWithNetworkErrorAndNoCache_throwsError() async {
        // Given
        mockRepository.searchResult = .failure(NetworkError.noConnection)
        mockRepository.cachedProducts = []

Read the full file on GitHub · 232 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. 4d ago First seen · 232 lines · 0 tokens per session scan A bc6936b1c751

Subscribe to this mod's changes

swift-tdd-guide-example is an agent published in the GitHub repository OkminLee/everything-claude-code-ios (58 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,360 tokens. 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

android-dev

Android/Kotlin development expert. Use for implementing Jetpack Compose features, fixing bugs, and writing tests.

hanamizuki/solopreneur · 24 tokens

spm-conflict-resolver

Use this agent when the user mentions SPM resolution failures, "no such module" errors, duplicate symbol linker errors, version conflicts between packages, or Swift 6 package compatibility issues. Analyzes Package.swift and Package.resolved to diagnose and resolve Swift Package Manager dependency conflicts. user: "SPM…

CharlesWiltgen/Axiom · 234 tokens

swiftui-modernization

Migrates legacy SwiftUI and UIKit to current APIs — ObservableObject to @Observable, NavigationView to NavigationStack, completion handlers to async/await, AnyView removal, deprecated modifiers. Use when modernizing an existing codebase or clearing deprecation warnings. Behavior-preserving; requires a green test…

Nagarjuna2997/ios-agent-skill · 71 tokens

ios-explore

Read-only codebase search for Swift/iOS projects. Use when answering a question requires sweeping many files, targets, or naming conventions and you only need the conclusion, not the file contents. Returns file:line citations. Safe to run several of these in parallel.

Nagarjuna2997/ios-agent-skill · 57 tokens

copilot

cd your-android-project git clone https://github.com/haidrrrry/compose-kotlin-agent-skills.git .github/skills/compose-kotlin-agent-skills.

haidrrrry/compose-kotlin-agent-skills · 0 tokens

aider

Aider reads CONVENTIONS.md, .aider.conf.yml, and files you add to context.

haidrrrry/compose-kotlin-agent-skills · 0 tokens