Skip to main content
SwiftAI Boilerplate Pro ships with a production-tested AGENTS.md at the repository root that gives Claude Code and Claude-powered agents project context from the first message. It points the agent to the full guidelines in docs/CLAUDE.md. Combined with community skills, Claude understands your architecture, follows your patterns, and can build and verify features autonomously.
Ready out of the box. AGENTS.md is at the root of the boilerplate and references docs/CLAUDE.md. Open Claude Code or Xcode Coding Intelligence from the project directory so the agent can load these automatically.

How It Works

AGENTS.md and docs/CLAUDE.md tell Claude about your project: the MVVM architecture, module boundaries, which abstractions to use, build commands, and what patterns to follow. Community skills teach Claude about iOS development in general: SwiftUI best practices, App Store guidelines, simulator automation.
LayerWhat It ProvidesFile
Project-specificArchitecture, abstractions, module boundariesAGENTS.md (root) → docs/CLAUDE.md
Domain-wideiOS best practices, debugging, testing, App StoreCommunity skills
Together, they let Claude generate code that fits your project and follows platform conventions.

Xcode Coding Intelligence

Xcode Coding Intelligence with Claude Agent works well with SwiftAI Boilerplate Pro as long as the agent is opened from the repository root. The important files are:
AGENTS.md must stay in the project root; it points the agent to docs/CLAUDE.md. If an agent says it cannot see the project instructions, check that you opened the repository folder itself, not only the docs/ folder or an individual Xcode file.
1

Open the full project

Open the root folder that contains AGENTS.md and SwiftAIBoilerplatePro.xcodeproj.
2

Start Claude Agent in Xcode

Use Xcode Coding Intelligence from that project context. The boilerplate instructions are already written for SwiftUI, MVVM, Swift Packages, Supabase, RevenueCat, OpenRouter, and strict concurrency.
3

Verify the agent loaded context

Ask: “Before coding, summarize the rules from docs/CLAUDE.md that apply to this project.” If the answer does not mention SwiftAI Boilerplate Pro modules and build commands, restart the agent from the repository root.
The auto-loaded entry point is the root AGENTS.md, which references docs/CLAUDE.md. The other files under docs/ are human-readable guides and deeper references.

You can install community skills to extend Claude’s iOS knowledge. Installation methods differ by skill:
  • Commands that start with /plugin run inside Claude Code or Claude Agent chat.
  • Commands that start with git, cp, or npx run in your terminal.

Apple Platform Skills

Apple platform conventions, Xcode project structure, SwiftUI, App Store review awareness, and platform-idiomatic patterns.Run in terminal:
Source: rshankras/claude-code-apple-skills

iOS Simulator

Lets Claude boot, build, install, and interact with the iOS Simulator directly. Your AI can run and test the app it builds.Run in Claude chat:
Source: conorluddy/ios-simulator-skill

SwiftUI Best Practices

State management (@State, @Binding, @Observable), view architecture, performance, accessibility, animations, and Liquid Glass (iOS 26).Run in terminal:
Source: AvdLee/SwiftUI-Agent-Skill
The boilerplate works without community skills. They are optional additions on top of the included AGENTS.md and docs/CLAUDE.md, and community repositories may change their install commands over time.
App Generator is a separate product (coming soon). The agentic workflow on this page uses your own coding-agent CLI on the boilerplate source. The App Generator is a standalone macOS tool that drives your agent CLI to scaffold a differentiated app from the template; it ships separately and is not bundled with the boilerplate. See License & Updates for editions and availability.

Skill-Module Mapping

Which skills help most when working on each boilerplate module:
ModuleBest SkillsWhy
FeatureChatSwiftUI Best Practices, iOS SimulatorView architecture, state management, simulator testing
AuthApple Platform SkillsApp Store guidelines, security
PaymentsApple Platform SkillsIn-app purchase compliance
AISwiftUI Best PracticesAsync/await, streaming patterns
StorageSwiftUI Best PracticesSwiftData best practices
DesignSystemSwiftUI Best Practices, Apple Platform SkillsAccessibility, theming
Rating prompt featureApple Platform SkillsSKStoreReviewController guidelines
LocalizationApple Platform Skills, SwiftUI Best PracticesL10n, VoiceOver

Further Reading