shortcutkit
Build, validate and sign Apple Shortcuts (.shortcut) files from Python.
About
Shortcuts has no public file-format specification and no public list of what its actions
accept. shortcutkit fills that gap with data extracted from WorkflowKit, the engine inside the
Shortcuts app: every one of the 339 built-in actions is bundled with its identifier, parameter
keys and the value kind each key accepts, and action() checks your parameters against them
before anything is written. Pure Python, no dependencies. Signing shells out to the macOS
shortcuts command; everything else runs anywhere.
A TypeScript package of the same name shares the same data and adds compile-time checking. Both live at https://github.com/frontboat/shortcutkit.
Features
- Every built-in action, as a constant.
actions.SETSTOREDCONTENTand 338 more, so a typo is anAttributeErrorrather than a silent bad file. - Parameters checked before you write anything.
ACTIONS[identifier]gives the name, parameter keys and output name;PARAM_KINDS[identifier]gives the value kind each key accepts. Unknown keys and wrong kinds raiseValueError. Attachments and token strings are accepted wherever a plain value is, because that is how Shortcuts works. - Value helpers that match the engine's serialization.
ref()to another action's output,variable(),shortcut_input(),clipboard(),current_date(),ask(),text()for strings with embedded references, andpicker()for variable-picker parameters. - Control flow.
if_()/otherwise()/end_if()andrepeat_each()/end_repeat_each()manage the grouping identifiers for you. - App Intents from installed apps. Any identifier outside the built-in set is accepted and its parameters are passed through as given.
- Reference tables.
CONDITIONcodes,ICON_COLORS, andPROVENANCErecording which macOS and Shortcuts build the bundled data came from.
Installation
pip install shortcutkit
Requirements
- Python 3.9 or newer.
- A Mac signed into iCloud for
Shortcut.sign(). It runsshortcuts sign, which refuses to work without an iCloud login even inanyonemode. Building and writing the unsigned file works on any platform.
Usage
from shortcutkit import Shortcut, actions, ref, text
s = Shortcut("Greeting", color="Teal")
got = s.action(actions.GETSTOREDCONTENT, WFStoredContentKey="greeting")
s.action(actions.SHOWRESULT, Text=text("Stored: ", ref(got)))
s.write() # Greeting.shortcut (unsigned)
Shortcut.sign("Greeting.shortcut", "Greeting-signed.shortcut") # macOS
Open the signed file and Shortcuts imports it.
Control flow
if_() returns a grouping identifier that the matching otherwise() and end_if() calls
take back:
gid = s.if_(ref(got), "has_any_value")
s.action(actions.SHOWRESULT, Text=text("Stored value: ", ref(got)))
s.otherwise(gid)
s.action(actions.SHOWRESULT, Text=text("Nothing stored"))
s.end_if(gid)
Actions from other apps
App Intents actions are not in the catalogue, so pass the identifier as a string:
s.action("com.example.app.CreateNote", title=text("Hello"), body=ref(got))
Demo
The package ships a demo that builds a working shortcut with storage, an If/Otherwise block and output, then signs it:
python -m shortcutkit demo out.shortcut
Documentation
- Shortcut file format:
the
.shortcutformat end to end, every field. - Built-in actions reference: all 339 built-in actions with their parameters.
- Parameter encodings: how each parameter class is serialized.
- Extraction notes: how the data was obtained and what remains approximate.
Development
From a checkout of the repository:
git clone https://github.com/frontboat/shortcutkit.git && cd shortcutkit/python
uv venv .venv && uv pip install -e . --python .venv/bin/python # or: python3 -m venv .venv && .venv/bin/pip install -e .
.venv/bin/python -m shortcutkit demo /tmp/Demo.shortcut
actions.py and data/ are generated by the repository's extraction tools from the Shortcuts
engine on a Mac. Do not edit them; change the generator or the data and run bun run extract
at the repository root. The Python and TypeScript packages are versioned together with the
data, and are kept in feature parity.
License
shortcutkit is licensed under the MIT license. See LICENSE for details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file shortcutkit-0.1.0.tar.gz.
File metadata
- Download URL: shortcutkit-0.1.0.tar.gz
- Upload date:
- Size: 104.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
825d3ec94a581a79c59293047eca9e6ee3438325d4fa045768eb9c5cdd5f3748
|
|
| MD5 |
9703ee7be167ba6f650f4c00135f9da6
|
|
| BLAKE2b-256 |
36d67c16fb173023943177397abe009b1d1c7ca52251356029f71f53de521cab
|
File details
Details for the file shortcutkit-0.1.0-py3-none-any.whl.
File metadata
- Download URL: shortcutkit-0.1.0-py3-none-any.whl
- Upload date:
- Size: 104.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62533a3265f9fec237a2290184b84204a5219983f1ecd8b48e82467fd3e8a1fa
|
|
| MD5 |
d87d809e8faadb493862f1a332ae92aa
|
|
| BLAKE2b-256 |
e661475db68a897c76a6cc5e1b2db8c6bbf4e2ea28ae50ae12a3359bcf6d2911
|