apple-shortcuts
Installation
SKILL.md
Apple Shortcuts
Automation platform for macOS and iOS. Shortcuts can be created via GUI, Cherri (code), or imported.
Running Shortcuts from CLI
# List all shortcuts
shortcuts list
# Run a shortcut by name
shortcuts run "My Shortcut"
# Run with text input
shortcuts run "My Shortcut" <<< "input text"
# Via URL scheme (works from any app)
open "shortcuts://run-shortcut?name=My%20Shortcut&input=text&text=Hello"