<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Altea Vane</title>
    <description>The latest articles on DEV Community by Altea Vane (@altea_vane_4beb36efb3e028).</description>
    <link>https://dev.to/altea_vane_4beb36efb3e028</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3920234%2Ff992bc44-a572-4af7-b203-22789eb21cb0.png</url>
      <title>DEV Community: Altea Vane</title>
      <link>https://dev.to/altea_vane_4beb36efb3e028</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/altea_vane_4beb36efb3e028"/>
    <language>en</language>
    <item>
      <title>MemoryGraph – Git for knowledge, built to capture research dead ends</title>
      <dc:creator>Altea Vane</dc:creator>
      <pubDate>Fri, 08 May 2026 14:14:07 +0000</pubDate>
      <link>https://dev.to/altea_vane_4beb36efb3e028/memorygraph-git-for-knowledge-built-to-capture-research-dead-ends-bln</link>
      <guid>https://dev.to/altea_vane_4beb36efb3e028/memorygraph-git-for-knowledge-built-to-capture-research-dead-ends-bln</guid>
      <description>&lt;h2&gt;
  
  
  The problem nobody talks about
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;$100B+ is wasted annually in research duplication.&lt;/strong&gt;&lt;br&gt;
Economists estimate that the failure to share negative results &lt;br&gt;
burns between 5% and 10% of the entire global research budget &lt;br&gt;
every year.&lt;/p&gt;

&lt;p&gt;Not because researchers are lazy or careless.&lt;br&gt;
Because no infrastructure exists to capture what &lt;br&gt;
&lt;em&gt;doesn't&lt;/em&gt; work — without asking for extra effort.&lt;/p&gt;

&lt;p&gt;The root cause is &lt;strong&gt;publication bias&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Labs fund projects based on partial or incorrect assumptions &lt;br&gt;
because they don't know about failed attempts elsewhere.&lt;br&gt;
They end up blindly replicating the same mistakes.&lt;/p&gt;

&lt;p&gt;The consequences are concrete:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If lab A doesn't publish the failure of formula X,&lt;br&gt;
labs B, C, and D will spend months of work and precious &lt;br&gt;
rare materials synthesizing and testing the same &lt;br&gt;
useless formula independently.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This happens every day. Across every scientific discipline.&lt;/p&gt;

&lt;p&gt;The failed hypothesis at 11pm.&lt;br&gt;
The dead end that took three weeks.&lt;br&gt;
The pivot that would have saved the next person three months.&lt;/p&gt;

&lt;p&gt;This knowledge disappears. Into lab notebooks nobody reads,&lt;br&gt;
or nowhere at all.&lt;/p&gt;

&lt;p&gt;Every existing tool — Notion, Obsidian, Roam — asks for &lt;br&gt;
a deliberate act of documentation &lt;em&gt;after&lt;/em&gt; the work is done.&lt;br&gt;
More work. No reward. No adoption.&lt;/p&gt;

&lt;h2&gt;
  
  
  The idea
&lt;/h2&gt;

&lt;p&gt;What if the research process left a trace automatically,&lt;br&gt;
as a side effect of thinking?&lt;/p&gt;

&lt;p&gt;That's MemoryGraph.&lt;/p&gt;

&lt;p&gt;Every unit of thought lives as a typed node in a personal &lt;br&gt;
knowledge graph:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;Observation&lt;/code&gt; — something you noticed&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Hypothesis&lt;/code&gt; — something you believe might be true&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Conclusion&lt;/code&gt; — something you've established&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;DeadEnd&lt;/code&gt; — something that didn't work&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;OpenQuestion&lt;/code&gt; — something you don't know yet&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each node carries a &lt;strong&gt;full temporal history&lt;/strong&gt; — every change &lt;br&gt;
in belief, every pivot, every moment confidence shifted and why.&lt;/p&gt;

&lt;p&gt;The graph is never a snapshot. &lt;strong&gt;It is a recording.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Git for knowledge. Architecturally.
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Git&lt;/th&gt;
&lt;th&gt;MemoryGraph&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Repository&lt;/td&gt;
&lt;td&gt;Personal knowledge graph&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Commit&lt;/td&gt;
&lt;td&gt;NodeState — a belief at a moment in time&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fork&lt;/td&gt;
&lt;td&gt;SubgraphToken — a signed copy of selected nodes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Diff&lt;/td&gt;
&lt;td&gt;Semantic delta between two trajectories&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pull request&lt;/td&gt;
&lt;td&gt;MergeProposal with conflict detection&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;When two researchers need to share knowledge, one issues &lt;br&gt;
a &lt;strong&gt;SubgraphToken&lt;/strong&gt; — a signed, scoped selection of nodes.&lt;br&gt;
The recipient gets an isolated fork. They develop it freely.&lt;br&gt;
If they find something valuable, they propose a merge.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The dark matter of research finally has a place to live.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What's built so far
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;✅ Graph store with Kuzu (embedded, zero infra)&lt;/li&gt;
&lt;li&gt;✅ Full node versioning — nothing ever deleted&lt;/li&gt;
&lt;li&gt;✅ Memory Agent — LLM-powered entity extraction&lt;/li&gt;
&lt;li&gt;✅ Quality gate before every graph write&lt;/li&gt;
&lt;li&gt;✅ Contradiction detection&lt;/li&gt;
&lt;li&gt;✅ Link Agent — semantic edge suggestion&lt;/li&gt;
&lt;li&gt;✅ LLM-agnostic — works with Anthropic, OpenAI, or local&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Language:&lt;/strong&gt; Python 3.11+&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Graph DB:&lt;/strong&gt; Kuzu (embedded)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LLM:&lt;/strong&gt; agnostic — any model via structured prompting&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;License:&lt;/strong&gt; AGPL-3.0&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Looking for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Researchers&lt;/strong&gt; who want to try it on a real project&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Builders&lt;/strong&gt; who want to implement any phase of the roadmap&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Critics&lt;/strong&gt; who want to find the failure modes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;→ &lt;a href="https://github.com/alteavane/memory-graph" rel="noopener noreferrer"&gt;github.com/alteavane/memory-graph&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Open an issue. Fork the repo. Break the design.&lt;br&gt;
&lt;strong&gt;The goal is not consensus — it's the best possible system.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>opensource</category>
      <category>research</category>
      <category>knowledgegraph</category>
    </item>
  </channel>
</rss>
