Metadata Intelligence for Obsidian — analyze notes, suggest tags, insert a short retelling at the end of the note.
Works offline; local LLM via Ollama is optional.
🇷🇺 Русская документация · glyph-sO (vault search) · glyph-mi (Senza)
glyph-miO is a free community plugin for Obsidian. It looks at the currently open note and helps you:
- understand it at a glance (word count, links, headings),
- get suggested
#tags(click to insert at the cursor), - add a short summary (retelling) — not just keywords, but sentences that describe what the note is about,
- place that summary clearly at the end of the note in a callout block you can jump back to later.
It is the Obsidian face of Glyph Metadata Intelligence (MI) 2.3. No cloud account, no npm build step.
If you only need “find a word in my vault”, install glyph-sO first. Many people use both: sO finds the note, miO summarizes it.
| Feature | What it does |
|---|---|
| Analyze | Stats + draft summary preview in the panel before you insert anything |
| Tag chips | Suggested tags from headings and word frequency — click to insert #tag |
| Insert summary | Adds a retelling (3–5 sentences with Ollama, or extractive offline) at the bottom of the active note |
| Go to summary / Jump command | Scroll to the last Glyph summary block |
| Copy #tags | Copy suggested tags to the clipboard |
Offline summary picks the most informative sentences from your note (extractive method).
Ollama summary writes a smoother paraphrase in the note’s language — only if Ollama is running and the model responds.
- Settings → Community plugins
- Disable Restricted mode if needed
- Turn on community plugins
-
Download or clone this repository.
-
In your vault:
.obsidian/plugins/glyph-mi-o/(create folders if missing). -
Copy into that folder:
manifest.jsonmain.jsstyles.css
YourVault/ .obsidian/ plugins/ glyph-mi-o/ manifest.json main.js styles.css -
Enable glyph-miO 2.3 under community plugins.
-
Ctrl+R to reload Obsidian.
BRAT → Add Beta plugin → FlokeStudio/glyph-miO → enable → reload.
cd /path/to/YourVault/.obsidian/plugins
git clone https://github.com/FlokeStudio/glyph-miO.git glyph-mi-o-
Open any markdown note (daily note, journal, project doc).
-
Click the sparkles ✨ icon on the left ribbon or run
Glyph: open MI panelfrom the command palette (Ctrl+P). -
Click Analyze — you should see title, word count, headings, tag chips, and a draft summary box.
-
Click Insert summary — Obsidian scrolls to the end of the note and adds:
--- <!-- glyph-miO-summary --> > [!summary] Glyph MI-O > Your retelling here… #suggested #tags
-
If you do not see it, use Go to summary in the panel or
Glyph: jump to MI summary— or press Ctrl+End in the editor.
The summary is always appended to the active note — the one you had open when you clicked Insert.
| Command | When to use |
|---|---|
| Glyph: open MI panel | Main window (Analyze, tags, summary) |
| Glyph: summarize note | Insert summary without opening the panel |
| Glyph: jump to MI summary | Go to the last Glyph summary block |
| Glyph: analyze active note | Quick popup with tag/link/word stats |
| Glyph: suggest tags | Show suggested tags in a notice |
For richer summaries you can run Ollama on your computer:
ollama pull llama3.2
ollama serveIn Obsidian: Settings → glyph-miO 2.3 → Enable Ollama → URL http://127.0.0.1:11434 → model name (e.g. llama3.2).
| Situation | What happens |
|---|---|
| Ollama off | Offline extractive summary — always works |
| Ollama on, model OK | JSON summary + tags from the LLM |
| HTTP 500 or timeout | Notice in Obsidian, fallback to offline summary — you still get text |
500 errors usually mean: Ollama not running, wrong model name, or model not pulled. Fix Ollama or disable it in settings — the plugin remains useful offline.
- glyph-sO — search
шаурма/shawarma/ wrong layout → open the note. - glyph-miO — Analyze → check draft → Insert summary.
- Later — Jump to MI summary to re-read the recap.
Install sO into .obsidian/plugins/glyph-s-o/ the same way as miO.
| Setting | Meaning |
|---|---|
| Enable Ollama | Use local LLM for summaries when available |
| Ollama URL | Usually http://127.0.0.1:11434 |
| Model | Must match ollama list (e.g. llama3.2) |
At the bottom of the same note you had open. Use Go to summary or search inside the note for Glyph MI-O or glyph-miO-summary.
Ollama failed or is disabled — you get extractive text (real sentences from the note, compressed). Enable Ollama for a more “written” paraphrase.
Click inside a note tab, not empty pane or graph view.
Folder must be glyph-mi-o. Do not put a vendor/ folder — this release is a single main.js.
- Offline: strip markdown → score sentences → pick top sentences → join as summary.
- Ollama: prompt returns JSON
{"summary":"…","tags":["…"]}. - Senza sibling: glyph-mi (music metadata, not Obsidian).
Obsidian ≥ 1.5.0.
GPL-3.0 · Floke Studio