mouse-click
スター12
フォーク0
更新日2026年7月2日 15:37
Perform a mouse left-click at specified screen coordinates
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
ファイルエクスプローラー
2 ファイルSKILL.md
readonlyメニュー
Perform a mouse left-click at specified screen coordinates
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Search the web for up-to-date information using Tavily API
Press a combination of keys simultaneously (e.g., Ctrl+C, Alt+Tab)
Press a single key on the keyboard
Perform a mouse double-click at specified screen coordinates
Perform a mouse right-click at specified screen coordinates
Open a URL in the default web browser
| name | mouse-click |
| description | Perform a mouse left-click at specified screen coordinates |
| context | fork |
| args | [{"name":"x","description":"X coordinate (pixels from left edge)","required":true},{"name":"y","description":"Y coordinate (pixels from top edge)","required":true}] |
| tags | ["mouse","click","automation","ui"] |
| category | system |
| version | 1.0.0 |
| author | cognitrix |
| allowed-tools | ["bash"] |
| dependencies | {"pip":["pyautogui"]} |
| safety | {"risk-level":"medium"} |
Perform a left mouse button click at specific screen coordinates.
Arguments: <x> <y>
Example: 100 200 (click at x=100, y=200)
python ${COGNITRIX_SKILL_DIR}/scripts/click.py "$(arg x)" "$(arg y)"
pip install pyautogui