Verify Your Setup
2 min read
Verify Your Setup
Don't skip this step. Discovering a broken setup halfway through your build is much worse than discovering it now.
Check Swift and Xcode versions
bash
swift --versionxcodebuild -versionYou should see Swift 6.x and Xcode 16.x. If not, reopen Xcode and let it finish installing components.
Check Claude Code
bash
claude --versionThen test the Apple skills are visible:
bash
claude# Once in a session, type:# /skillsYou should see swiftui-expert-skill in the list.
Build a test project on Simulator
This is the definitive check — if you can build and run on Simulator, your environment is ready.
- Open Xcode
- Choose Create New Project
- Select iOS → App, click Next
- Name it TestApp, interface SwiftUI, language Swift
- Save it to your Desktop
- Select any iPhone Simulator from the device picker (top centre bar)
- Press Cmd+R to build and run
- The Simulator should launch and show a "Hello, world!" view
If this works, delete the TestApp project — you don't need it anymore.
Check disk space
bash
df -h ~You need at least 20GB free before starting a real project.
Checkpoint
- swift --version returns Swift 6.x
- xcodebuild -version returns Xcode 16.x
- Claude Code starts and shows Apple skills
- TestApp ran on Simulator without errors
- 20GB+ free disk space
All green? You're ready to build. Move to Project Kickoff.
Sign up to read the full guide
Free access to all 12 workflow guides. No password needed.