diff --git a/CLAUDE.md b/CLAUDE.md index a1faaf5..7f04cf9 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -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" }) ```