81 user commands · 201 actions. Each command is a single JSON file. Fork, edit, and submit a PR to add yours. ✦ Don't see what you need? Generate one with AI →
Launch 1Password to access your vault.
Launch Agenda notes and projects.
Deep link into the macOS App Store.
Deep link into Apple Mail.
Deep link into Apple Maps for navigation.
Control Apple Music playback via AppleScript.
Launch Arc browser.
Deep link into Bear notes app.
Deep link into Brave browser.
Deep link into Apple Calendar.
Utilities for managing your clipboard.
Launch macOS ColorSync Utility for color profile management.
One JSON file is all it takes. Follow the schema, open a PR, and your command is live for everyone.
REGISTRY
81
commands
201
actions
HOW TO INSTALL
Click Install in Clyde on any command above
Or download the JSON and drop it into ~/.clyde/user-commands/
Run reload user-commands in Clyde
CONTRIBUTE
Built something useful? Add it to the registry—one JSON file, one pull request.
SCHEMA
my-command.json{
"id": "my-command",
"displayName": "My Command",
"description": "Commands for doing useful things.",
"color": "blue",
"icon": "star",
"author": "your-github-username",
"homepage": "https://yourapp.com",
"registry": "https://github.com/ColorfulDots/clyde-registry",
"version": "1.0.0",
"tags": ["productivity", "utilities"],
"commands": [
{
"name": "Open Something",
"keywords": ["something", "open"],
"executor": "urlScheme",
"target": "https://example.com",
"description": "Opens example.com"
}
]
}