Command Registry

4 modules · 18 commands. Each module is a single JSON file. Fork, edit, and submit a PR to add yours.

✦ Don't see what you need? Generate one with AI →

How to install a module

1. Download the JSON file

2. Drop it into ~/.clyde/modules/

3. Open Clyde and run reload modules

D
5 commands

Open your dev tools, editors, and local servers fast.

Open TerminalOpen VS CodeOpen GitHub+2 more
F
4 commands

Quick access to your banking, investing, and financial tools.

Open BankOpen RobinhoodOpen Coinbase+1 more
F
4 commands

Order food and find restaurants without leaving your keyboard.

Open DoorDashOpen Uber EatsOpen Yelp+1 more
U
5 commands

System utilities and quick actions for everyday macOS tasks.

Empty TrashScreenshotToggle Dark Mode+2 more

Want to add your own module?

Create a JSON file following the schema below and open a pull request on GitHub.

Submit on GitHub →
{
  "module": "my-module",
  "displayName": "My Module",
  "description": "What this module does.",
  "color": "blue",
  "icon": "star",
  "commands": [
    {
      "name": "Open Something",
      "keywords": ["something", "open"],
      "executor": "urlScheme",
      "target": "https://example.com",
      "description": "Opens example.com"
    }
  ]
}