mouse-right-click
星标12
分支0
更新时间2026年7月2日 15:37
Perform a mouse right-click at specified screen coordinates
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
Perform a mouse right-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 left-click at specified screen coordinates
Perform a mouse double-click at specified screen coordinates
Open a URL in the default web browser
| name | mouse-right-click |
| description | Perform a mouse right-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","right-click","context-menu","automation","ui"] |
| category | system |
| version | 1.0.0 |
| author | cognitrix |
| allowed-tools | ["bash"] |
| dependencies | {"pip":["pyautogui"]} |
| safety | {"risk-level":"medium"} |
Perform a right mouse button click at specific screen coordinates.
Arguments: <x> <y>
Example: 100 200 (right-click at x=100, y=200)
python ${COGNITRIX_SKILL_DIR}/scripts/right_click.py "$(arg x)" "$(arg y)"
pip install pyautogui