| 288 | const ActiveWindowArgs = z.object({}); |
| 289 | |
| 290 | export class ComputerUseActiveWindowTool extends Tool<z.infer<typeof ActiveWindowArgs>> { |
| 291 | name = 'computer_use_active_window'; |
| 292 | description = 'Get info about the currently focused app and window (app name, window title, bounds). Use to verify you\'re in the right context before clicking/typing. Read-only. macOS-only.'; |
| 293 | isReadOnly = true; |
nothing calls this directly
no outgoing calls
no test coverage detected