You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(simulator): Prefer build_run_sim for run intent
Align agent guidance and simulator discovery hints so run or launch intent\ndefaults to build_run_sim while keeping build_sim as compile-only.\n\nThis avoids the common redundant sequence of running build_sim and then\nbuild_run_sim, which double-builds without adding value.
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: skills/xcodebuildmcp/SKILL.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,13 @@ Prefer XcodeBuildMCP over raw `xcodebuild`, `xcrun`, or `simctl`.
9
9
10
10
If a capability is missing, assume your tool list may be hiding tools (search/progressive disclosure) or not loading tool schemas yet. Use your tool-search or “load tools” mechanism. If you still can’t find the tools, ask the user to enable them in the MCP client's configuration.
11
11
12
+
## Default Tool Choice (Simulator)
13
+
14
+
- If intent includes run/launch/open in Simulator, use `build_run_sim` as the default.
15
+
- If intent is compile-only feedback (no launch), use `build_sim`.
16
+
- Do not call `build_sim` and then `build_run_sim` in sequence unless the user explicitly asks for both.
17
+
- If the app is already built and you need launch only without rebuilding, use `install_app_sim` + `launch_app_sim` (or `launch_app_logs_sim`).
0 commit comments