From xcode
Rename Xcode iOS/macOS projects completely, including folders, files, and all internal references. Use when user asks to rename an Xcode project, iOS project, or Swift project.
How this skill is triggered — by the user, by Claude, or both
Slash command
/xcode:xcode-renameThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Renames an Xcode project completely using the bundled xcode-project-renamer Swift script.
Renames an Xcode project completely using the bundled xcode-project-renamer Swift script.
Find the plugin's script path — the renamer script is bundled with this plugin:
# The script is at the plugin's scripts/ directory
# Use: swift <plugin-path>/scripts/xcode-project-renamer.swift "OldName" "NewName"
Run the rename script from the project root (where .xcodeproj is located):
swift ~/.claude/plugins/xcode/scripts/xcode-project-renamer.swift "OldProjectName" "NewProjectName"
Rename the project folder:
mv /path/to/OldProjectName /path/to/NewProjectName
Clean derived data:
rm -rf ~/Library/Developer/Xcode/DerivedData/*OldProjectName*
Update additional files:
CLAUDE.md or documentation referencing the old nameRename "MyApp" to "SuperApp":
cd /path/to/MyApp
swift ~/.claude/plugins/xcode/scripts/xcode-project-renamer.swift "MyApp" "SuperApp"
mv /path/to/MyApp /path/to/SuperApp
rm -rf ~/Library/Developer/Xcode/DerivedData/*MyApp*
npx claudepluginhub astralform-ai/astralform-plugins --plugin xcodeCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.