| name | text-input |
| description | Type text into the currently focused application |
| context | fork |
| args | [{"name":"text_to_type","description":"The text to type into the focused application","required":true}] |
| tags | ["keyboard","type","input","automation","ui"] |
| category | system |
| version | 1.0.0 |
| author | cognitrix |
| allowed-tools | ["bash"] |
| dependencies | {"pip":["pyautogui"]} |
| safety | {"risk-level":"medium"} |
Text Input
Type text into the currently focused application.
Input Format
Arguments: <text_to_type>
Example: Hello World or filename.txt
Steps
- Run the type script with the text_to_type:
python ${COGNITRIX_SKILL_DIR}/scripts/type.py "$(arg text_to_type)"
- Report success
Notes
- Text is typed into whatever application is currently focused
- Use
key-press skill to press Enter after typing
- Use
hot-key skill for keyboard shortcuts
- Requires pyautogui:
pip install pyautogui