Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,15 @@ This approach results in cleaner, more maintainable code that works with SwiftUI

1. First, discover available schemes:
```
mcp__XcodeBuildMCP__list_schems_proj({ projectPath: "/Users/thomas/Documents/Dev/Open Source/IcySky/IcySky.xcodeproj" })
mcp__XcodeBuildMCP__list_schems_proj({ projectPath: "/path/to/IcySky/IcySky.xcodeproj" })
```

2. Build the IcySky scheme for iOS Simulator:
```
mcp__XcodeBuildMCP__build_ios_sim_name_proj({
projectPath: "/Users/thomas/Documents/Dev/Open Source/IcySky/IcySky.xcodeproj",
scheme: "IcySky",
simulatorName: "iPhone 16"
mcp__XcodeBuildMCP__build_ios_sim_name_proj({
projectPath: "/path/to/IcySky/IcySky.xcodeproj",
scheme: "IcySky",
simulatorName: "iPhone 16"
})
```

Expand Down