Thinkingfanny35 downloadsSync your knowledge notes between My Desk and your vault — no GitHub repo or access tokens. Requires a My Desk account with a Library subscription; the plugin itself is free.
An Obsidian plugin that syncs your knowledge notes between My Desk and your vault — directly, with no GitHub repository and no personal access tokens to juggle.
Notes settled on your desk flow into your vault as Markdown you own; edits you make in
Obsidian flow back. Files use the same 10_WIKI/<uuid>.md format as the older GitHub
route, so switching over needs no migration.
Issuing a plugin token pauses the older GitHub sync for your account — a vault is only ever
driven by one path at a time. Your own obsidian-git backups are unaffected.
A three-way merge over three snapshots: your local files, the server, and a baseline it remembers from the last sync. This lets it tell a new note from a deleted one, and a note you edited from one the server changed — so edits aren't silently overwritten.
A My Desk 서재 subscription. Syncing and vault features are paid because they need an account and a server — installing the plugin itself is free.
The plugin talks only to your My Desk address, and only when it syncs. It sends your knowledge notes (the files in the configured folder) so the server can reconcile them. No analytics, no telemetry, nothing sent anywhere else. Your token is stored in the vault's plugin data, like any other plugin setting.
While the plugin is under community-store review you can install it with BRAT:
npm install
npm run dev # esbuild watch → main.js
npm run build # typecheck + production bundle
The three-way engine (src/sync.ts) and the Markdown format (src/format.ts) are pure and
covered by tests in the main repository.