A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Generate Apple Shortcuts from natural language using Claude Code. Describe any automation and get a signed .shortcut fil
Describe what you want to automate in plain language.
Get a signed .shortcut file ready to install on your iPhone, iPad, or Mac.
Works with Claude Code | Cursor | OpenAI Codex
/shortcut "Check my battery and warn me if it's below 20%"
shortcuts sign CLI tool)| Tool | Config File | How It Works |
|---|---|---|
| Claude Code | .claude/skills/shortcut-agent/SKILL.md | Auto-detected as a skill. Use /shortcut "..." |
| Cursor | .cursorrules | Auto-loaded on project open. Ask naturally |
| OpenAI Codex | AGENTS.md | Auto-loaded on project open. Ask naturally |
All three tools share the same reference files in .claude/skills/shortcut-agent/references/ for action identifiers, plist format, and CLI usage.
git clone https://github.com/owgit/shortcut-agent-skill.git
cd shortcut-agent-skill
Claude Code:
claude
Claude Code automatically detects the skill from .claude/skills/shortcut-agent/SKILL.md.
Cursor:
Open the project folder in Cursor. It automatically reads .cursorrules for shortcut generation instructions.
OpenAI Codex:
Open the project folder. Codex reads AGENTS.md for shortcut generation instructions.
If you want to use this skill inside another project:
cd /path/to/your/project
# Option A: Copy the skill directory
cp -r /path/to/shortcut-agent-skill/.claude/skills/shortcut-agent .claude/skills/shortcut-agent
# Option B: Git submodule (keeps it updatable)
git submodule add https://github.com/owgit/shortcut-agent-skill.git vendor/shortcut-agent
cp -r vendor/shortcut-agent/.claude/skills/shortcut-agent .claude/skills/shortcut-agent
Also copy the helper scripts:
cp -r /path/to/shortcut-agent-skill/scripts ./scripts
cp -r /path/to/shortcut-agent-skill/examples ./examples
mkdir -p output
Claude Code:
/shortcut "Show a notification that says Hello World"
Cursor / Codex:
Create a shortcut that shows a notification saying Hello World
The AI generates a .shortcut file, signs it, and opens it in the Shortcuts app.
Describe any automation in natural language:
/shortcut "Check my battery and warn me if it's below 20%"
/shortcut "Ask me for a URL, fetch the JSON, and show the title field"
/shortcut "Give me a menu: Check IP, Random number, or Quick note to clipboard"
shortcuts sign --mode anyoneAfter adding the shortcut on your Mac, it syncs automatically via iCloud to your iPhone and iPad (if signed into the same Apple ID with Shortcuts sync enabled).
The examples/ folder contains ready-made shortcuts you can install immediately:
| File | Description | Actions tested |
|---|---|---|
hello_world.plist | Shows "Hello World" | Text, Show Result, variable reference |
ask_and_notify.plist | Asks your name, sends notification | Ask, Set Variable, Notification |
api_call.plist | Fetches a URL, parses JSON, shows result | URL, HTTP GET, Dictionary, Show Result |
cp examples/hello_world.plist output/hello_world.plist
bash scripts/sign_and_open.sh hello_world
The shortcut opens in the Shortcuts app. Click "Add Shortcut" to install it.
| Category | Examples |
|---|---|
| Text | Create, combine, replace, match, split, change case |
| Web/HTTP | GET/POST/PUT/DELETE with headers, JSON bodies, form data |
| User Interaction | Ask for input, show result, alert, notification, speak, menu |
| Variables | Set, get, append, named variables, magic variables |
| Control Flow | If/else, repeat count, repeat each, choose from menu |
| Data | Dictionary, list, number, math, statistics, base64, hash |
| Date/Time | Format, compare, wait/delay |
| Device | Battery, brightness, volume, Bluetooth, Wi-Fi, airplane mode, DND |
| Location | Current location, search maps |
| Calendar | Create events, find events, create reminders |
| Media | Take photo, resize image, play/pause music |
| Files | Save, open, AirDrop, share, zip/unzip, clipboard |
| Communication | Send message, send email, FaceTime, phone call |
shortcut-agent-skill/
├── .claude/skills/shortcut-agent/
│ ├── SKILL.md # Skill definition (Claude Code)
│ └── references/
│ ├── actions.md # 100+ action identifiers & parameters
│ ├── plist-format.md # Plist XML spec, variables, control flow
│ └── url-schemes-and-cli.md # URL schemes, CLI, automation triggers
├── .cursorrules # Cursor AI instructions
├── AGENTS.md # OpenAI Codex instructions
├── CLAUDE.md # Claude Code project context
├── scripts/
│ ├── generate_plist.py # Plist validation helper
│ └── sign_and_open.sh # Sign shortcut + open in Shortcuts app
├── examples/
│ ├── hello_world.plist # Minimal example
│ ├── ask_and_notify.plist # Input + notification
│ └── api_call.plist # HTTP + JSON parsing
├── output/ # Generated files (gitignored)
├── README.md # This file
└── LICENSE # MIT
The shortcuts CLI is only available on macOS 12 (Monterey) or later. Check with:
which shortcuts
The shortcuts sign command requires the input file to have a .shortcut extension. The sign_and_open.sh script handles this automatically. If running manually:
# Wrong:
shortcuts sign --input file.plist --output file.shortcut
# Right:
cp file.plist file.shortcut
shortcuts sign --mode anyone --input file.shortcut --output signed.shortcut
Make sure:
Some actions behave differently on macOS vs iOS (e.g., notifications, haptics). Test on the target device. You can also validate via CLI:
shortcuts run "Shortcut Name"
examples/.claude/skills/shortcut-agent/references/actions.mdIf you find this useful, consider buying me a coffee:
MIT
Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Sho
AI image generation skill for Claude Code -- Creative Director powered by Gemini
A Claude Code skill by Hao (駱君昊) that learns your Facebook voice and auto-posts to FB / IG / Threads / X with a 14-day c
Universal SEO skill for Claude Code. 25 sub-skills + 18 sub-agents covering technical SEO, E-E-A-T, schema, GEO/AEO, bac