Loading...
Loading...
Found 4 Skills
Control the mouse, keyboard, and read screen content via accessibility. Use this skill when the user asks to click somewhere on screen, type text into an app, move the mouse, press keyboard shortcuts, read what's on screen, get the accessibility tree of the current window, automate desktop interactions, or control the computer.
Send text messages to specified contacts via the WeChat desktop client on macOS. Used when the user provides a contact name and message content, such as "Send a WeChat message to Zhang San: xxx", "Open WeChat to send a message to someone", "Send specified text via WeChat". The WeChat desktop client must be installed before running, and accessibility permissions must be granted to the current terminal or Codex. Only exact matching is performed during execution: first search for the contact, then verify that the current session title exactly matches the target; stop if the match fails to avoid sending messages by mistake.
System-wide keyboard shortcut registration on macOS using NSEvent monitoring (simple, app-level) and Carbon EventHotKey API (reliable, system-wide). Covers NSEvent.addGlobalMonitorForEvents and addLocalMonitorForEvents, CGEvent tap for keystroke simulation, Carbon RegisterEventHotKey for system-wide hotkeys, modifier flag handling (.deviceIndependentFlagsMask), common key code mappings, debouncing, Accessibility permission requirements (AXIsProcessTrusted), and SwiftUI .onKeyPress for in-app shortcuts. Use when implementing global keyboard shortcuts, hotkey-triggered panels, or system-wide key event monitoring.
Use when you need to automatically send messages to WeChat contacts on macOS, and use clipboard pasting to avoid interference from Chinese input methods.