agentsclimarketplace

Global shortcut manager

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/global-shortcut-manager

Register and manage global keyboard shortcuts across desktop platformsFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill global-shortcut-manager

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.5 KB, 223 tokens by cl100k_base, as published. Nobody here has run it

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

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "framework": { "enum": ["electron", "tauri", "native"] },
    "shortcuts": { "type": "array" }
  },
  "required": ["projectPath"]
}

Electron Example

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

What ships with it: 1 file

514 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.