Open Matter
Double-click the .certum file to open the Matter Workspace
Certum Draft integrates with Finder so you can open matters and generate documents without opening the app first.
Every matter folder contains a .certum file (e.g., 013548.certum). Double-click it to open the matter in Certum Draft.
013548 - SMITH John - Estate of Harold Smith/├── 013548.certum ← Double-click to open in Certum Draft├── 013548-matter.json├── Correspondence/└── Documents/Certum Draft registers a custom URL scheme for deep linking:
certum://open?matter=013548Use this URL to:
No setup required. Right-click any matter folder:
Right-click → Services → New Certum Document
This works immediately after installing Certum Draft.
For more prominent menu placement and keyboard shortcuts, create a macOS Shortcut:
Now: Right-click → Quick Actions → Generate Documents
Open Matter
Double-click the .certum file to open the Matter Workspace
Generate Documents
Right-click a matter folder to open the template selection wizard
New Matter Here
Right-click any folder to create a new matter in that location
No setup required — just double-click:
{matterNumber}.certum fileNo setup required — works immediately after installing Certum Draft.
For a better experience on macOS 12 (Monterey) or later, create custom Shortcuts.
Advantages:
#!/bin/bashFOLDER_PATH="$1"
if [ -d "/Applications/Certum Draft.app" ]; then APP_PATH="/Applications/Certum Draft.app"elif [ -d "$HOME/Applications/Certum Draft.app" ]; then APP_PATH="$HOME/Applications/Certum Draft.app"else osascript -e 'display dialog "Certum Draft not found" buttons {"OK"}' exit 1fi
# Check for matter fileMATTER_FILE=$(ls "$FOLDER_PATH"/*-matter.json 2>/dev/null | head -1)if [ -z "$MATTER_FILE" ] && [ ! -f "$FOLDER_PATH/matter.json" ]; then osascript -e 'display dialog "Not a matter folder" buttons {"OK"}' exit 1fi
open -a "$APP_PATH" --args new-document "$FOLDER_PATH"Follow the same steps, but:
#!/bin/bashFOLDER_PATH="$1"
# Find the .certum fileCERTUM_FILE=$(ls "$FOLDER_PATH"/*.certum 2>/dev/null | head -1)if [ -n "$CERTUM_FILE" ]; then open "$CERTUM_FILE" exit 0fi
# Fallback: extract matter number from folder nameFOLDER_NAME=$(basename "$FOLDER_PATH")MATTER_NUM=$(echo "$FOLDER_NAME" | grep -oE '^[0-9]+')if [ -n "$MATTER_NUM" ]; then open "certum://open?matter=$MATTER_NUM" exit 0fi
osascript -e 'display dialog "Could not identify matter" buttons {"OK"}'exit 1Follow the same steps, but:
#!/bin/bashFOLDER_PATH="$1"
if [ -d "/Applications/Certum Draft.app" ]; then APP_PATH="/Applications/Certum Draft.app"elif [ -d "$HOME/Applications/Certum Draft.app" ]; then APP_PATH="$HOME/Applications/Certum Draft.app"else osascript -e 'display dialog "Certum Draft not found" buttons {"OK"}' exit 1fi
open -a "$APP_PATH" --args new-matter "$FOLDER_PATH"If shortcuts don’t appear in Finder:
Assign system-wide keyboard shortcuts for instant access:
Suggested shortcuts:
| Action | Shortcut |
|---|---|
| Generate Documents | ⌘⌥G |
| New Matter Here | ⌘⌥N |
Now select a folder in Finder and press the shortcut.
013548.certumAll without opening Certum Draft first.
Understanding where to find the options:
Right-click menu:├── Open├── Open With →├── Move to Bin├── Get Info├── ...├── Quick Actions → ← Shortcuts appear here│ ├── Open Matter in Certum Draft│ ├── Generate Documents│ └── New Matter Here└── Services → ← Built-in service appears here └── New Certum DocumentFor scripting and automation:
# Open a matter by numberopen "certum://open?matter=013548"
# Open a .certum file directlyopen "/path/to/matter/013548.certum"
# Generate documents for a matteropen -a "Certum Draft.app" --args new-document "/path/to/matter"
# Create a new matter in a folderopen -a "Certum Draft.app" --args new-matter "/path/to/parent".certum file/ApplicationsThe folder might not be a valid matter folder. Check that:
013547-matter.json)| Feature | .certum Files | Services | Shortcuts |
|---|---|---|---|
| Setup required | None | None | 5 minutes |
| Opens Matter Workspace | Yes | No | With script |
| Menu location | N/A (double-click) | Services submenu | Quick Actions |
| Keyboard shortcuts | No | Limited | System-wide |
| Siri integration | No | No | Yes |