Second Brain Sync

approved

by Rahil Pirani

Sync notes to your self-hosted Second Brain on Cloudflare Workers. Choose whether each note goes to your private memory or a shared team memory, search from a sidebar, and import memories back. - This plugin has not been manually reviewed by Obsidian staff.

17 stars566 downloadsUpdated 7d agoMIT

Second Brain Sync

Sync your Obsidian notes to your own AI memory. Pull memories back into your vault as notes. Search everything with semantic search — from inside Obsidian, or from any AI tool that supports MCP.

Built on Cloudflare Workers + Vectorize. Your data stays on your own infrastructure.


What it does

  • Sync any note to your Second Brain with one click or a hotkey
  • Bulk sync all notes with a specific tag
  • Auto-sync tagged notes every time you save
  • Choose whether each note goes to your personal memory or a specific team
  • Import memories from your Second Brain back into Obsidian as notes
  • Chunk long notes automatically so embeddings stay clean
  • Status bar shows the last time you synced

Getting started

You need a running Second Brain Worker before this plugin is useful. Deploy one for free at:

github.com/rahilp/second-brain-cloudflare

Once your Worker is running:

  1. Open Settings → Second Brain Sync
  2. Paste your Worker URL (e.g. https://second-brain.yourname.workers.dev)
  3. Paste your Auth token (the AUTH_TOKEN secret you set in Cloudflare)
  4. Hit Test to confirm the connection works
  5. Set your Sync tag — any note with this tag in its frontmatter will sync (default: brain)

Syncing notes

Tag a note for sync by adding the tag to its frontmatter:

---
tags:
  - brain
---

You can also use inline tags anywhere in the note body:

#brain

Then sync it:

  • Click the brain icon in the ribbon to sync the current note
  • Ctrl/Cmd + P → "Sync current note"
  • Ctrl/Cmd + P → "Sync all tagged notes"
  • Or turn on auto-sync in settings and forget about it

Choosing where a note goes: personal or a team

If your Second Brain has team workspaces, every note you sync lands in one of two places: your personal memory, which only you can see, or a team memory shared with everyone on that team.

New notes use whatever you pick in Settings → Default memory destination. Changing that default only affects notes you sync from then on — it never moves notes you've already synced.

To set the destination for one specific note:

  • Right-click the note → Set memory destination, or
  • Ctrl/Cmd + PSet memory destination

Pick from the list of your actual team names. If the note has already been synced, changing its destination moves its existing memories to the new place rather than leaving copies behind.

What gets written to your note

Once a note has a destination, you'll see it in the frontmatter:

---
second-brain-workspace: company
second-brain-team: 7f3a9c2e-4b81-4d2a-9f30-1c5e8a2d6b04
second-brain-team-name: Acme Engineering
---

There are two team fields because they do different jobs:

  • second-brain-team-name is the readable one, and you can edit it by hand. Type a different team name here and the note moves to that team on the next sync.
  • second-brain-team is the stable ID. It's what actually gets sent, so renaming a team on the server never breaks your notes — the plugin just refreshes the name for you.

A personal note simply has second-brain-workspace: personal and no team fields.

When it refuses to sync

Sharing a note with the wrong team isn't something you can quietly undo, so the plugin stops rather than guesses. A sync will fail, with a message explaining why, if:

  • the team name you typed doesn't match any team you're currently in
  • the name matches two or more teams, so it's ambiguous which one you meant
  • you've been removed from the team the note points at

In each case nothing is sent anywhere. Open the destination picker, choose a team explicitly, and sync again.


Importing memories into Obsidian

You can pull memories from your Second Brain back into Obsidian as Markdown notes. This is useful for surfacing things Claude, ChatGPT, or other AI tools have remembered on your behalf.

How to set it up:

  1. In your Second Brain, tag the memories you want to import. You choose the tag — for example obsidian-inbox, or any existing tag you already use.
  2. In Settings → Import behavior, set the Import tag to match that tag exactly.
  3. Run Ctrl/Cmd + P → "Import memories" to pull them in.

Each imported memory becomes a Markdown note in your configured import folder (default: _Second Brain/Inbox) with frontmatter metadata:

---
external_memory_id: "abc123..."
external_memory_source: "claude"
external_memory_created_at: "1748000000000"
imported_at: "2026-06-06T12:00:00.000Z"
tags:
  - obsidian-inbox
---

Already-imported memories are skipped automatically on subsequent runs. You can reset the cache in settings if you need to re-import.


Settings

Connection

SettingDescriptionDefault
Worker URLYour Cloudflare Worker URL
Auth tokenYour AUTH_TOKEN secret

Sync behaviour

SettingDescriptionDefault
Default memory destinationWhere newly synced notes go — personal, or one of your teams. Does not move notes you've already syncedPersonal
Sync modeSync all notes, or only tagged onesTagged only
Sync tagThe tag that marks a note for sync (frontmatter or inline)brain
Auto-sync on saveSync automatically when you saveOff
Auto-sync delayHow long to wait after you stop typing5s

Chunking

SettingDescriptionDefault
Chunk sizeMax characters per chunk1600
Chunk overlapOverlap between chunks to preserve context200

Import behavior

SettingDescriptionDefault
Import folderWhere imported memories are saved in your vault_Second Brain/Inbox
Import tagTag used to filter which memories to import — must match a tag on your memoriesobsidian-inbox
Import limitMax memories to fetch per import run20
Pull on startupAutomatically import when Obsidian opensOff
Reset imported IDs cacheClear the list of already-imported memories

Display

SettingDescriptionDefault
Show sync statusShow last sync time in the status barOn

How chunking works

Notes under the chunk size get stored as a single entry. Longer notes get split into overlapping segments — each one gets its own embedding in Vectorize, so long notes don't produce diluted search results. The overlap keeps sentences at chunk boundaries from losing context.


Support

If this is useful to you, you can buy me a coffee:

Buy Me A Coffee


Development

npm run dev     # watch mode
npm run build   # production build

The plugin source is at github.com/rahilp/second-brain-obsidian-plugin.

For plugin developers

Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.