Your Shortcut isn't writing to Obsidian
Most of the time this isn't a bug — it's that two different routes exist and they fail in different places. Obsidian on iPhone offers built-in Shortcuts actions and the older obsidian:// URL scheme. Identify which one you're on first, then jump to your symptom.
There are two routes. (1) Obsidian's built-in Shortcuts actions (mobile 1.11 and later; can append to a note without opening the app), and (2) the obsidian:// URL scheme (called via "Open URL"; brings Obsidian to the foreground). Truncated text, unexpected new notes and wrong-vault writes are almost always route 2 — URL construction problems. "The action doesn't appear" is route 1, usually just an outdated Obsidian. And "it fails from Apple Watch" can't be fixed on either route, because Obsidian has no watchOS app.
Step one: which route are you on?
Open your shortcut and look at the actions inside. An action carrying the Obsidian icon means route 1; an "Open URL" action holding a obsidian://… string means route 2. Most tutorials online predate 1.11 and describe route 2, which is why the steps you find often don't match what you see on screen.
| Aspect | 1. Built-in actions | 2. obsidian:// URL scheme |
|---|---|---|
| How it's called | Search "Obsidian" in the action picker | Pass obsidian://new?... to "Open URL" |
| Version needed | Obsidian mobile 1.11+ (public release Jan 2026) | Available in older versions too |
| Does the app open? | Capture actions write without opening it | Obsidian comes to the foreground |
| Choosing the target | Pick it in the action's fields | You write the path into the URL yourself |
| Truncation / mangling | Rare — no URL in the path | Common, from missing encoding |
| From Apple Watch | Not possible | Not possible |
If the built-in actions are missing, an outdated Obsidian is usually the whole story. Update it in the App Store, then launch Obsidian once and open your vault. This single step resolves the most common case on this page.
- No Obsidian actions in the Shortcuts app
- Obsidian opens in the foreground every time
- The note body gets cut off or mangled
- A new note appears instead of an append
- It lands somewhere other than the daily note
- Wrong vault, or the vault isn't found
- It fails when run from Apple Watch
- Fails offline, or won't run while locked
Fixes by symptom
No Obsidian actions show up in the Shortcuts app
CauseBuilt-in Shortcuts actions arrived in Obsidian mobile 1.11 (early access December 2025, public January 2026). Older builds simply don't have them. Right after an install or update, iOS can also take a little while to register an app's actions.
Fix
- Update Obsidian to the latest version in the App Store.
- Launch Obsidian once and open your vault.
- Reopen the Shortcuts app and search "Obsidian" in the action picker.
- Still nothing? Fall back to route 2 — an "Open URL" action holding
obsidian://.
Obsidian opens in the foreground every time
CauseThis is by design, not a bug. obsidian:// works by launching Obsidian and handing it the URL to process, so the app has to come forward. "Append without opening" is not achievable through the URL scheme at all. Tutorials that say "Obsidian flashes open, just ignore it" are accepting that constraint.
FixIf you don't want the app to surface, switch to route 1's capture actions. Since 1.11 they append to a note without bringing Obsidian forward — decisive if you want this to run while the phone is locked or in your pocket. Note that route 1's "open note" style actions still open the app, since displaying it is the point.
The note body gets cut off or mangled
CauseYour text is embedded in a URL, so URL delimiters are being interpreted as delimiters. # means "fragment starts here", so everything after it is discarded. & starts a new parameter, and + can decode to a space. Any Markdown heading (## Heading) or tag (#idea) triggers it — which is why short notes seem fine and longer ones break.
Fix
- Insert a "URL Encode" action on the body text before it goes into the URL.
- Encode the vault name and file name too if they contain spaces or non-ASCII characters.
- If you write tags and headings routinely, move to route 1, where this class of bug can't occur.
A new note appears instead of an append
Causeobsidian://new creates a note — that's its job. Appending to an existing note only happens when you say so explicitly. Without that, a same-named note can be duplicated under a new name or have its contents replaced. "It worked yesterday but made a new file today" usually just means the date rolled over and the target note no longer existed.
FixAdd the parameter that requests an append. Confirm the exact parameter name — and what happens when the target note doesn't exist — in the official Obsidian URI documentation, since this has varied across versions. On route 1 you just pick append or prepend in the action's settings; there's no URL to build.
It lands somewhere other than the daily note
CauseIf you've customised the daily note's date format (default YYYY-MM-DD) or its folder, the path your shortcut builds won't match. The classic case: Obsidian expects Journal/2026-08-11.md while the shortcut creates 2026-08-11.md at the vault root. Nothing errors — you just get the hardest failure to notice: it wrote successfully, somewhere you aren't looking.
Fix
- Check Settings → Daily notes for the date format and the new file location.
- Match your shortcut's date format to it exactly.
- If a folder is configured, pass the full path including the folder, not just the file name.
- Search the vault for stray same-named notes created in the wrong place.
The full daily-note setup is covered in appending to your Obsidian daily note without opening your iPhone.
Wrong vault, or the vault isn't found
CauseWith more than one vault and no vault specified, the target becomes whichever vault was open last. Even if you normally use one, opening a test vault once is enough to switch it. And if the vault name contains spaces or non-ASCII characters and isn't encoded, resolution fails outright.
FixAlways name the vault explicitly in the URL, and URL-encode that value as well. If you ever rename a vault, remember to update the shortcut — this is a classic silent breakage.
It fails when run from Apple Watch
CauseObsidian has no watchOS app. Neither the app nor your vault files exist on the watch. A shortcut running on the watch can't invoke actions from an app that isn't installed there, nor open a URL scheme aimed at it — so it fails even with your iPhone right next to you. This is structural, not a setting.
FixThere is currently no way to write to Obsidian from the watch alone. The workable path is an app that ships a watch app and does the vault write on the iPhone side. The reasoning and the alternatives are compared in why you can't send to Obsidian from Apple Watch.
Fails offline, or won't run while locked
CauseTwo separate problems that look alike. Failing offline usually means the vault's files aren't actually on the device — only in the cloud. Failing while locked is route 2 needing to bring the app forward, which a locked device won't complete.
Fix
- Keep the vault in iCloud Drive or On My iPhone so the files exist locally.
- To run reliably while locked, use a route that completes without foregrounding an app — route 1's append actions, or a capture app built on App Intents.
- Add a notification or sound at the end of the shortcut so failures don't pass unnoticed.
Three limits neither route removes
The fixes above resolve most cases. But "send to Obsidian via a Shortcut" carries three weaknesses no setting removes. Decide knowingly whether to live with them or change the design.
A different design: let an app own the delivery
If those limits matter to you, there's an alternative: stop hand-building the delivery and make it the app's job. Simple Memo sends each note to your own inbox by email and, at the same time, appends it to your vault folder in iCloud Drive as - HH:mm note. No community plugin, no shortcut to maintain.
This is not an official Obsidian app or plugin; it's an independent app built by Yurica Inc. The target must be a vault folder in iCloud Drive or On My iPhone, reachable from the Files app. Vaults that live only in Obsidian Sync may not appear in the folder picker, in which case the app falls back to the URL scheme. Obsidian is a trademark of Dynalist Inc.
FAQ
Should I use the built-in actions or the URL scheme?
Can I just tell Siri to note something in Obsidian?
How do I know for sure whether a shortcut failed?
My automation keeps asking for confirmation
Does Simple Memo need me to build a shortcut?
Related pages
References
- Obsidian Help — Obsidian URI — Official documentation for the obsidian:// actions and parameters
- Obsidian 1.11 Mobile changelog — The release that added built-in Shortcuts actions (open note, open daily note, capture to a note)
- Shortcuts User Guide (Apple) — Apple's official guide to actions, automations and Siri
- Obsidian Help — Vault behaviour, including daily note date formats and locations
- Simple Memo - for Obsidian — App Store — App Store download page