kausthub-kannan319 downloadsAI-powered research tool that turns your notes into a living knowledge graph.
Poneglyph is a research-first Obsidian plugin that transforms your knowledge graph into a living, cited research artifact — powered by a local deep research agent.
Find the plugin in offical Communtiy registry via: Poneglyph Plugin Community Registry Link
Poneglyph is an AI-assisted research tool, not a replacement for actual research or a literature survey.
The deep research agent accelerates your ability to explore and map a research space, but it is not infallible. Generated nodes may contain hallucinated citations, outdated information, or shallow treatment of complex topics. Human verification is a first-class citizen of this plugin's design — the verified status tag exists precisely because no AI output should be trusted without review.
Use Poneglyph to accelerate your research mapping, not to replace the rigour of reading primary sources.
Poneglyph turns every markdown node in your Obsidian graph into a deeply researched, cited artifact — generated by a local research agent. The graph itself becomes a navigable, living map of your research understanding.
Each node is a markdown file. Nodes are connected relationally, tagged by lifecycle status and topic, and anchored to a vault-wide citation ledger (SOURCES.md). You drive the research; the agent does the heavy lifting.
Poneglyph does not require any external database installation (like ChromaDB). It uses an inbuilt, native vector database (Vectra) that runs directly within the plugin.
To use Poneglyph, you only need an LLM and an Embedding Provider.
| Provider | Main Model Support | Embedding Support | Requires API Key |
|---|---|---|---|
| Ollama | ✅ | ✅ | ❌ |
| Ollama Cloud | ✅ | ✅ | ✅ |
| OpenAI | ✅ | ✅ | ✅ |
| Mistral | ✅ | ✅ | ✅ |
| Anthropic | ✅ | ❌ | ✅ |
In the IDEA.md markdown, write your thesis/idea. The agent uses it to perform research and generate a fully cited markdown file. Generated nodes begin as draft and get's shifted to researched once the markdown is written.
Tag nodes which you want to research about as extract-idea. The plugin traverses the graph from that node back through its ancestry, identifies what is missing — topics referenced but unexplored, contradictions unresolved, threads not yet followed — and generates a focused research suggestion grounded in that gap. You decide whether to pursue it by creating a new node. You can trigger Generate Thesis to surface research gaps.
Paste the thesis which you want to research about in the IDEA.md file to trigger back the deep research.
When a new node is created, Poneglyph uses the inbuilt native vector database to compare it semantically against every existing node in the vault. If sufficiently similar nodes are found, bidirectional links are automatically inserted — surfacing conceptual connections that a manual graph would miss. This keeps your graph dense and meaningful as it grows.
Poneglyph maps node metadata to visual properties via CSS snippets or the Style Settings plugin:
| Metadata | Visual Property | Values |
|---|---|---|
| Lifecycle status | Node colour | amber (draft) · blue (researched) · green (verified) |
Your graph becomes a semantic map — colour and connection carry meaning at a glance.
Every node creation automatically updates SOURCES.md, a single deduplicated citation table sorted by h-index:
| Key | Title | Authors | Year | Journal | H-Index | DOI / Link |
|---|---|---|---|---|---|---|
smith2021 |
Attention Is All You Need | Vaswani, A. et al. | 2017 | NeurIPS | 94 | 10.48550/arXiv.1706.03762 |
Sources are keyed (e.g. smith2021) and referenced directly from node frontmatter. SOURCES.md is never used as agent context.
A Poneglyph vault revolves around three special files alongside your research nodes:
vault/
├── SOURCES.md ← Central citation ledger,
├── IDEA.md ← Your thesis or research idea
├── TEMP.md ← Scratch file created and deleted by the agent during runs
├── Root Topic.md ← Foundational seed node
├── Sub-topic A.md ← Researched child node
├── Sub-topic B.md ← Draft child node (awaiting ratification)
└── ...
IDEA.md is the one file you author directly. It defines the research question or thesis that gives your graph its direction. TEMP.md is managed entirely by the agent and should not be edited manually.
Every node carries the following frontmatter, automatically managed by the plugin:
---
title: "The title of the note"
tags:
- draft
- <topic-tag>
created: YYYY-MM-DD
updated: YYYY-MM-DD
---
Nodes move through three stages. Only the final promotion is a human action.
| Status | Meaning | Set by |
|---|---|---|
draft |
Node created; content not yet added | Auto — on creation |
researched |
Research complete; content generated | Auto — post-generation |
verified |
Human has reviewed and approved | Human only — always manual |
In addition to lifecycle status, each node is tagged with one or more topic labels derived automatically from its content. These drive the semantic backlinking system and help you filter and navigate large graphs by research area.
Navigate to Settings → Poneglyph after enabling the plugin. See the settings panel for the full list of options, including:
Poneglyph.obsidian/plugins/ directoryConfigure your model and embedding provider in settings before first use — see Prerequisites.
Please refer to CONTRIBUTING.md for detailed instructions.
MIT License — see LICENSE for details.
fetch or Obsidian's requestUrl to communicate with LLM/Embedding API providers, and to fetch open-access scientific papers via Unpaywall, arXiv, or Sci-Hub (Sci-Hub integration is in beta).