From ios-dev
iOS ビルドキャッシュクリア・シミュレータ管理を XcodeBuildMCP 経由で実行。「clean」「DerivedData」「cache」「キャッシュ」「クリーン」「simulator boot」「simulator reset」「シミュレータ起動」「シミュレータリセット」などのキーワードで自動適用。
npx claudepluginhub no-problem-dev/claude-code-plugins --plugin ios-devThis skill uses the workspace's default tool permissions.
ビルドキャッシュのクリアとシミュレータの管理。
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
ビルドキャッシュのクリアとシミュレータの管理。 軽量操作のためメインコンテキストで直接 MCP ツールを呼び出す。
ToolSearch("select:mcp__XcodeBuildMCP__clean")
clean(scheme: "<scheme>")
XcodeBuildMCP では DerivedData 直接削除は未サポート。Bash で実行:
# プロジェクト固有
ls ~/Library/Developer/Xcode/DerivedData/ | grep "<ProjectName>"
rm -rf ~/Library/Developer/Xcode/DerivedData/<ProjectName>-*
# 全削除(確認後のみ)
rm -rf ~/Library/Developer/Xcode/DerivedData
ToolSearch("select:mcp__XcodeBuildMCP__list_sims")
list_sims()
ToolSearch("select:mcp__XcodeBuildMCP__boot_sim,mcp__XcodeBuildMCP__open_sim")
boot_sim(simulator_name: "iPhone 16 Pro")
open_sim()
ToolSearch("select:mcp__XcodeBuildMCP__erase_sims")
erase_sims(simulator_name: "iPhone 16 Pro")
rm -rf 系のコマンドは実行前にユーザーに確認すること