get_shortcuts
Query keyboard shortcuts for operating systems and applications using natural language. Specify OS and your shortcut question to get relevant key combinations.
Instructions
Query keyboard shortcuts for a specific OS, desktop environment, and/or application. Uses Claude Opus to intelligently search and return relevant shortcuts based on natural language queries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
application | No | Specific application (e.g., firefox, tmux) - optional | |
desktop | No | Desktop environment (e.g., gnome, kde) - optional | |
os | Yes | Operating system (e.g., ubuntu, macos, windows) | |
query | Yes | Natural language query about keyboard shortcuts (e.g., "how do I split a pane vertically?") |
Input Schema (JSON Schema)
{
"properties": {
"application": {
"description": "Specific application (e.g., firefox, tmux) - optional",
"type": "string"
},
"desktop": {
"description": "Desktop environment (e.g., gnome, kde) - optional",
"type": "string"
},
"os": {
"description": "Operating system (e.g., ubuntu, macos, windows)",
"type": "string"
},
"query": {
"description": "Natural language query about keyboard shortcuts (e.g., \"how do I split a pane vertically?\")",
"type": "string"
}
},
"required": [
"os",
"query"
],
"type": "object"
}