[Bug]: Keyboard toggle tools silently do nothing on Xcode 27 — System Events cannot attach to Device Hub
まだ誰も着手していません。
評価
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 初心者へのやさしさ
- 45/100
- issue の種類
- バグ
- 明瞭さ
- おおむね明確
- 活発さ
- 活発
- 技術スタック
- macos, typescript
調査の方向性
Start by reading buildDeviceHubKeystrokeScript and _keyboard_shortcut.ts, then reproduce the reported osascript behavior with Device Hub visible. Trace the Device Hub branch alongside the Simulator.app window check and buildOpenSimulatorFrontendCommands. Done means the keyboard toggle tools use a supported interaction path or clearly report failure instead of returning success when the action has no effect.
索引モデルが issue の本文から書いたものです。
説明
What happens
toggle_connect_hardware_keyboard and toggle_software_keyboard return success but change nothing on Xcode 27.
Both tools drive the simulator frontend through System Events. On Xcode 27 the frontend is Device Hub, and System Events cannot attach to it. The keystroke never arrives. osascript exits 0, so sendKeyboardShortcut reports success.
Root cause: Device Hub has no accessibility tree
Run these in the same shell, with Device Hub on screen showing a booted simulator:
$ osascript -e 'tell application "System Events" to return (count of attributes of application process "Device Hub")'
0
$ osascript -e 'tell application "System Events" to return (count of attributes of application process "Finder")'
20
Device Hub exposes zero accessibility attributes. Finder, as a control, exposes 20. UI elements enabled is true, so this is not a permissions problem.
Window and menu queries return nothing:
$ osascript -e 'tell application "System Events"
set p to first application process whose bundle identifier is "com.apple.dt.Devices"
return "windows: " & (count of windows of p) & ", menu bars: " & (count of menu bars of p)
end tell'
windows: 0, menu bars: 0
That output is from a moment when Device Hub had a visible device window on screen. For the same process, background only is false and visible is true. lsappinfo reports !cgsConnection, bundle path=[ NULL ], Arch=!!none.
In buildDeviceHubKeystrokeScript, this means set frontmost of deviceHubProcess to true has no effect and the following keystroke goes nowhere.
The Device Hub branch does not detect the failure
The Simulator.app path checks for a window first:
if (focusResult.output.trim() === 'NO_WINDOW') {
return {
success: false,
error: `No visible Simulator window found for "${device.name}". ...`,
};
}
The Device Hub path has no equivalent check. It returns { success: true } whenever osascript exits 0.
The shortcut mapping is also stale
_keyboard_shortcut.ts sends the same shortcuts to both frontends:
const modifiers =
shortcut === 'connect-hardware-keyboard' ? '{command down, shift down}' : '{command down}';
#346 describes these as Simulator.app bindings. Device Hub uses a different mapping under Device > Keyboard:
| Menu item | Shortcut |
|---|---|
| Keyboard Capture | ⌘K |
| Simulate Hardware Keyboard | none |
| Toggle Software Keyboard | ⌥⌘K |
⇧⌘K matches no item. ⌘K opens Keyboard Capture, not the software keyboard.
Fixing the mapping alone does not help, because the accessibility path is unavailable either way.
The menu works through synthetic mouse events
To confirm the menu item itself is functional, I drove it with CoreGraphics-level clicks instead of System Events:
- Opened Device > Keyboard. All three items rendered.
Simulate Hardware Keyboardwas checked. - Clicked
Simulate Hardware Keyboard. Reopened the menu. The checkmark was gone. - Tapped a text field in the booted simulator and captured
snapshot_ui.
| Before toggle | After toggle |
|---|---|
| 82 elements, no keyboard | 152 elements, including Q, W, shift, space, return |
The menu item is reachable and effective. Only the accessibility route is blocked.
ConnectHardwareKeyboard is not a fallback
#346 lists defaults write com.apple.iphonesimulator ConnectHardwareKeyboard as an alternative. That domain belongs to Simulator.app, which Xcode 27 does not ship:
$ ls /Applications/Xcode.app/Contents/Applications/
Accessibility Inspector.app Create ML.app DeviceHub.app
FileMerge.app Icon Composer.app Instruments.app
The key does not track the setting. With Simulate Hardware Keyboard checked, it read 0. After toggling the menu item, the key was absent from the domain.
com.apple.dt.Devices holds no keyboard key. No xcrun simctl subcommand exposes the setting; simctl ui covers only appearance, content_size, and increase_contrast.
Notes on reproducing
open_sim does not open a device window. Its schema is z.object({}), so no simulatorId reaches buildOpenSimulatorFrontendCommands and it runs open -a DeviceHub. open "devices:///manage/select?id=<UDID>" did not open one either.
What I did not test
I did not call the MCP tools directly, because simulator-management is not enabled in this project. I reproduced buildDeviceHubKeystrokeScript with osascript and observed no effect on either preference domain.
I cannot tell whether the missing accessibility tree is universal to Device Hub on Xcode 27 or specific to this machine.
Environment
- XcodeBuildMCP 2.7.0
- Xcode 27.0 (27A266a)
- macOS 27.0
- Frontend: Device Hub (
com.apple.dt.Devices)
- 主要言語
- TypeScript
- スター
- 6.4k
- フォーク
- 320
- PR マージ指標
- 30日以内にマージされた PR はありません
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
getsentry/XcodeBuildMCP のほかの issue
-
難易度 2/5 1〜3時間 初心者へのやさしさ 68/100
getsentry/XcodeBuildMCP#520 ·
-
Warden weekly sweep オープン
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100
getsentry/XcodeBuildMCP#495 ·
-
難易度 4/5 3〜5日 初心者へのやさしさ 35/100
getsentry/XcodeBuildMCP#537 ·
-
難易度 5/5 1週間以上 初心者へのやさしさ 28/100
getsentry/XcodeBuildMCP#534 ·
-
難易度 3/5 1〜2日 初心者へのやさしさ 76/100
getsentry/XcodeBuildMCP#533 ·
getsentry/XcodeBuildMCP の issue をすべて見る
似ている issue
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
vercel-labs/just-bash#464 ·
-
looksLikeSlug() is ASCII-only, so non-Latin entity slugs (e.g. Korean) skip exact match and collapse オープン
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 65/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 65/100
-
難易度 1/5 1時間未満 初心者へのやさしさ 90/100
TanStack/tanstack.com#1293 ·