Shakhbanov Zurab31 downloadsSynchronizes your notes with the Whisperer knowledge base so the assistant can respond to them.
Keep your Obsidian vault in sync with your Whisperer knowledge base, so the assistant answers from your notes — not from what it guessed.
The sync is one-way by design: notes go from the vault to Whisperer, and nothing ever comes back. The plugin does not create, rewrite, or delete a single line in your vault.
Supported files: .md, .markdown, .txt, .canvas.
Exactly two things per note: its path inside the vault and its text.
No file system paths outside the vault, no attachments, no images, no plugin data, no vault name, no telemetry. Notes are stored in the knowledge base of your own account and are searchable only by you.
Settings → Community plugins → Browse → search for Whisperer Sync → Install → Enable.
main.js, manifest.json and styles.css from the
latest release.<your vault>/.obsidian/plugins/whisperer-sync/.A paid Whisperer subscription is required: the knowledge base is a paid feature, and the check runs on every request, not once at setup.
| Setting | What it does |
|---|---|
| Server | Whisperer address. Change it only for a self-hosted instance. |
| Vault token | Identifies the vault. Revoked by disconnecting the source in Whisperer. |
| Sync automatically | Send edits on a delay and re-check the vault on a timer. |
| Wait after an edit | Seconds of quiet before edited notes are sent (default 30). |
| Full check every | Minutes between full vault checks (default 60). |
| Skip these folders | One path per line. Notes inside are never sent. |
| Full resync | Compare the whole vault with the knowledge base and fix any difference. |
| Forget sync state | Clears what this device remembers. Deletes nothing from the knowledge base. |
In .obsidian/plugins/whisperer-sync/data.json, inside your vault — Obsidian gives
plugins no secret storage, so every plugin that talks to a service does the same.
Two consequences worth knowing:
Set by the server and read by the plugin at every sync, so they are never out of date:
An interrupted sync resumes where it stopped: what was delivered is remembered after each batch, not at the end.
npm install
npm run dev # watch build into main.js
npm run build # typecheck + minified production build
To test in a real vault, symlink or copy main.js, manifest.json and styles.css into
<vault>/.obsidian/plugins/whisperer-sync/.
Releases are cut by tagging: npm version patch && git push --follow-tags. The GitHub
workflow builds the plugin and attaches the three files to the release, which is the shape
Obsidian's plugin catalogue expects.
MIT — see LICENSE.
Whisperer Sync держит хранилище Obsidian в синхронизации с базой знаний Whisperer: ассистент отвечает по вашим заметкам, а не по догадкам.
Поток данных один — из хранилища в Whisperer. Плагин ничего не скачивает и не правит в ваших заметках.
Как подключить. В Whisperer: «База знаний → Источники → Obsidian» → подключить хранилище → скопировать токен (он показывается один раз). В Obsidian: настройки плагина → вставить токен → «Проверить подключение» → «Полная пересинхронизация».
Что уезжает: путь заметки внутри хранилища и её текст. Ничего больше — ни вложений, ни картинок, ни имени хранилища, ни телеметрии.
Где лежит токен: в data.json плагина внутри хранилища — своего хранилища секретов
у Obsidian нет. Если хранилище под git или под чужой синхронизацией, добавьте этот файл
в исключения. Токен умеет ровно одно: присылать заметки в одно хранилище знаний;
отключение источника в Whisperer отзывает его, не трогая аккаунт.