How do I save meeting notes to Obsidian automatically?
Subscribe a small script on your computer to the summary.completed webhook. When it fires, the script takes the meeting ID from the webhook and exports that meeting as Markdown straight into your vault:
meetily-pro webhooks add --url http://127.0.0.1:9002/meetily --events summary.completed
# in your script, for the meeting ID the webhook delivered:
meetily-pro meetings export "$MEETING_ID" --format md > ~/Obsidian/Meetings/"$MEETING_ID".mdWhat you need: Allow the CLI on this computer turned on (Integrations > Apps & scripts) and Auto Summary turned on. Under Integrations > Advanced, turn on Outgoing (webhooks) and add your script’s address as a local target before you add the webhook, then approve the destination when Meetily asks. Meetily must be running.