$npx -y skills add Dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill ghosttyControl Ghostty terminal emulator via CLI. Manage windows, tabs, splits, and configuration.
| 1 | # Ghostty Skill |
| 2 | |
| 3 | Use the `ghostty` CLI to control and configure the Ghostty terminal emulator. |
| 4 | |
| 5 | ## CLI Location |
| 6 | |
| 7 | ```bash |
| 8 | /Applications/Ghostty.app/Contents/MacOS/ghostty |
| 9 | ``` |
| 10 | |
| 11 | Or if symlinked: `ghostty` |
| 12 | |
| 13 | ## Actions (IPC Commands) |
| 14 | |
| 15 | Ghostty supports actions via `+action` flag. These control the running instance. |
| 16 | |
| 17 | List available actions: |
| 18 | ```bash |
| 19 | ghostty +list-actions |
| 20 | ``` |
| 21 | |
| 22 | Create new window: |
| 23 | ```bash |
| 24 | ghostty +new-window |
| 25 | ``` |
| 26 | |
| 27 | Create new tab: |
| 28 | ```bash |
| 29 | ghostty +new-tab |
| 30 | ``` |
| 31 | |
| 32 | Create splits: |
| 33 | ```bash |
| 34 | ghostty +new-split:right |
| 35 | ghostty +new-split:down |
| 36 | ``` |
| 37 | |
| 38 | Navigate splits: |
| 39 | ```bash |
| 40 | ghostty +goto-split:previous |
| 41 | ghostty +goto-split:next |
| 42 | ghostty +goto-split:up |
| 43 | ghostty +goto-split:down |
| 44 | ghostty +goto-split:left |
| 45 | ghostty +goto-split:right |
| 46 | ``` |
| 47 | |
| 48 | Close current surface: |
| 49 | ```bash |
| 50 | ghostty +close-surface |
| 51 | ``` |
| 52 | |
| 53 | Toggle fullscreen: |
| 54 | ```bash |
| 55 | ghostty +toggle-fullscreen |
| 56 | ``` |
| 57 | |
| 58 | Reload configuration: |
| 59 | ```bash |
| 60 | ghostty +reload-config |
| 61 | ``` |
| 62 | |
| 63 | ## Font Management |
| 64 | |
| 65 | Increase/decrease font size: |
| 66 | ```bash |
| 67 | ghostty +increase-font-size:1 |
| 68 | ghostty +decrease-font-size:1 |
| 69 | ``` |
| 70 | |
| 71 | Reset font size: |
| 72 | ```bash |
| 73 | ghostty +reset-font-size |
| 74 | ``` |
| 75 | |
| 76 | ## Configuration |
| 77 | |
| 78 | Config file location: |
| 79 | ``` |
| 80 | ~/.config/ghostty/config |
| 81 | ``` |
| 82 | |
| 83 | Show current config: |
| 84 | ```bash |
| 85 | ghostty +show-config |
| 86 | ``` |
| 87 | |
| 88 | List available themes: |
| 89 | ```bash |
| 90 | ghostty +list-themes |
| 91 | ``` |
| 92 | |
| 93 | List available fonts: |
| 94 | ```bash |
| 95 | ghostty +list-fonts |
| 96 | ``` |
| 97 | |
| 98 | List keybinds: |
| 99 | ```bash |
| 100 | ghostty +list-keybinds |
| 101 | ``` |
| 102 | |
| 103 | ## Launch Options |
| 104 | |
| 105 | Start with specific config: |
| 106 | ```bash |
| 107 | ghostty --config-file=/path/to/config |
| 108 | ``` |
| 109 | |
| 110 | Start with command: |
| 111 | ```bash |
| 112 | ghostty -e "htop" |
| 113 | ``` |
| 114 | |
| 115 | Start in directory: |
| 116 | ```bash |
| 117 | ghostty --working-directory=/path/to/dir |
| 118 | ``` |
| 119 | |
| 120 | ## Debugging |
| 121 | |
| 122 | Check version: |
| 123 | ```bash |
| 124 | ghostty --version |
| 125 | ``` |
| 126 | |
| 127 | Validate config: |
| 128 | ```bash |
| 129 | ghostty +validate-config |
| 130 | ``` |