From 07ef5097b18d8872d63dff3f0b124a455e8cffe6 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Dec 2025 14:56:08 -0500 Subject: [PATCH] docs: Replace hardcoded user paths with generic placeholders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated build verification examples in CLAUDE.md to use generic path placeholders instead of hardcoded "/Users/thomas/..." paths. This makes the documentation more accessible for all contributors. Changes: - Replaced specific user paths with "/path/to/IcySky/..." placeholder - Improved formatting consistency in code examples 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- CLAUDE.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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" }) ```