User Commands

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 →

1Password

Launch 1Password to access your vault.

Open 1Password1Password Search
Learn more →
Agenda

Launch Agenda notes and projects.

Open Agenda
Learn more →
App Store

Deep link into the macOS App Store.

App Store UpdatesApp Store Purchased
Learn more →
Apple Mail

Deep link into Apple Mail.

Open MailCompose New Email
Learn more →
Apple Maps

Deep link into Apple Maps for navigation.

Open MapsGet Directions HomeGet Directions to Work+1
Learn more →
Apple Music

Control Apple Music playback via AppleScript.

Open Apple MusicPlay / Pause MusicApple Music Next Track+2
Learn more →
Arc Browser

Launch Arc browser.

Open Arc
Learn more →
Bear

Deep link into Bear notes app.

New Bear NoteBear SearchBear Today+1
Learn more →
Brave Browser

Deep link into Brave browser.

Open BraveBrave New WindowBrave Private Window+1
Learn more →
Calendar

Deep link into Apple Calendar.

Open CalendarNew Calendar EventToday's Events
Learn more →
Clipboard Tools

Utilities for managing your clipboard.

Clear ClipboardPaste as Plain TextCopy Current Date+1
Learn more →
ColorSync Utility

Launch macOS ColorSync Utility for color profile management.

Open ColorSync Utility
Learn more →

Add your own

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

1

Click Install in Clyde on any command above

2

Or download the JSON and drop it into ~/.clyde/user-commands/

3

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"
    }
  ]
}