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
Open your dev tools, editors, and local servers fast.
Quick access to your banking, investing, and financial tools.
Order food and find restaurants without leaving your keyboard.
System utilities and quick actions for everyday macOS tasks.
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"
}
]
}