Register and manage global keyboard shortcuts across desktop platforms
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill global-shortcut-manager --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Global Shortcut Manager?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-global-shortcut-manager-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: global-shortcut-manager
description: Register and manage global keyboard shortcuts across desktop platforms
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
tags: [keyboard, shortcuts, hotkeys, cross-platform, desktop]
graph:
domains: [domain:software-engineering]
specializations: [specialization:desktop-development]
skillAreas: [skill-area:desktop-system-integration, skill-area:desktop-ui-frameworks]
roles: [role:desktop-developer, role:fullstack-engineer]
workflows: [workflow:feature-development, workflow:release-management]
---
# global-shortcut-manager
Register and manage global keyboard shortcuts that work even when the application is not focused.
## Capabilities
- Register global shortcuts
- Handle modifier combinations
- Manage shortcut conflicts
- Platform-specific key mapping
- Unregister shortcuts
- Check shortcut availability
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"framework": { "enum": ["electron", "tauri", "native"] },
"shortcuts": { "type": "array" }
},
"required": ["projectPath"]
}
```
## Electron Example
```javascript
const { globalShortcut } = require('electron');
function registerShortcuts() {
globalShortcut.register('CommandOrControl+Shift+X', () => {
console.log('Global shortcut triggered');
});
}
app.on('will-quit', () => {
globalShortcut.unregisterAll();
});
```
## Related Skills
- `clipboard-handler`
- `system-services-integration` process
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!