<?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: Akshay Kumar Kataiah</title>
    <description>The latest articles on DEV Community by Akshay Kumar Kataiah (@akshay_kumarkataiah_d6e7).</description>
    <link>https://dev.to/akshay_kumarkataiah_d6e7</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%2F1865277%2Fd2f835c1-202b-4b43-a5e8-91fc27c61393.png</url>
      <title>DEV Community: Akshay Kumar Kataiah</title>
      <link>https://dev.to/akshay_kumarkataiah_d6e7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akshay_kumarkataiah_d6e7"/>
    <language>en</language>
    <item>
      <title>Why I Built Yet Another AI Knowledge Tool (And How It's Different)</title>
      <dc:creator>Akshay Kumar Kataiah</dc:creator>
      <pubDate>Sat, 18 Apr 2026 17:22:48 +0000</pubDate>
      <link>https://dev.to/akshay_kumarkataiah_d6e7/why-i-built-yet-another-ai-knowledge-tool-and-how-its-different-38b2</link>
      <guid>https://dev.to/akshay_kumarkataiah_d6e7/why-i-built-yet-another-ai-knowledge-tool-and-how-its-different-38b2</guid>
      <description>&lt;p&gt;There's no shortage of knowledge management tools for AI coding agents. Graphify builds knowledge graphs. Claude-mem replays sessions. LLM Wiki compiles research wikis. Ars Contexta generates personal thinking systems from interviews.&lt;/p&gt;

&lt;p&gt;I tried them. They're good tools. But none of them solved my specific problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I use Claude Code daily on production apps. The pain isn't "Claude doesn't understand my codebase" — Graphify handles that well. The pain is &lt;strong&gt;knowledge decay between sessions.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That authentication bug I debugged on Monday? Forgotten by Tuesday. The decision to use JWT over sessions? Gone. The architecture of the payment flow? Rediscovered from scratch.&lt;/p&gt;

&lt;p&gt;Session replay tools like Claude-mem capture &lt;em&gt;everything&lt;/em&gt;, but try finding that one critical insight in a sea of compressed session logs. It's built for the AI to search, not for you to browse.&lt;/p&gt;

&lt;p&gt;Knowledge graph tools like Graphify are snapshots — brilliant one-time analysis, but they don't grow when you ship a fix at 2am.&lt;/p&gt;

&lt;p&gt;Wiki tools like LLM Wiki are source-driven — great for research, disconnected from your commit history.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Actually Needed
&lt;/h2&gt;

&lt;p&gt;A system that:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Grows from my git workflow&lt;/strong&gt; — not from sources I manually feed it&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;I can browse myself&lt;/strong&gt; — not just the AI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stays current automatically&lt;/strong&gt; — catches decay before it misleads&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Has zero dependencies&lt;/strong&gt; — no Python, no SQLite, no vector DB, no MCP servers&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Spine
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/Nodewarrior/spine" rel="noopener noreferrer"&gt;Spine&lt;/a&gt; is a Claude Code plugin that bridges AI memory to an Obsidian vault. Knowledge is organized by what actually matters in engineering: which repo, which feature, what type of work.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Your vault/
  └─ your-repo/
       └─ Authentication/
            ├─ Authentication.md              ← spine note (the hub)
            ├─ 2026-03-18 Fix - Cookie Expiry.md
            ├─ Architecture - OAuth Flow.md
            └─ Decision - JWT vs Session.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Navigation is three hops:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Claude Memory          →  Spine Note           →  Specific Doc
(one-line signpost)       (feature hub)           (full context)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No embeddings. No vector search. Just structured markdown with wikilinks and frontmatter tags.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Compares
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Graphify&lt;/th&gt;
&lt;th&gt;Claude-mem&lt;/th&gt;
&lt;th&gt;LLM Wiki&lt;/th&gt;
&lt;th&gt;Spine&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Grows from&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;One-time scan&lt;/td&gt;
&lt;td&gt;Session capture&lt;/td&gt;
&lt;td&gt;Source ingestion&lt;/td&gt;
&lt;td&gt;Git commits&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Browsable by humans&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;HTML export&lt;/td&gt;
&lt;td&gt;No (SQLite)&lt;/td&gt;
&lt;td&gt;Markdown wiki&lt;/td&gt;
&lt;td&gt;Obsidian graph&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Dependencies&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Python, Tree-sitter&lt;/td&gt;
&lt;td&gt;SQLite, Agent SDK&lt;/td&gt;
&lt;td&gt;Agent SDK&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Stays current&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Re-run manually&lt;/td&gt;
&lt;td&gt;Automatic&lt;/td&gt;
&lt;td&gt;Manual&lt;/td&gt;
&lt;td&gt;Auto-draft + health checks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Structure&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Graph clusters&lt;/td&gt;
&lt;td&gt;Flat timeline&lt;/td&gt;
&lt;td&gt;Flat wiki&lt;/td&gt;
&lt;td&gt;Repo → Feature → Type&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  The Self-Developing Part
&lt;/h2&gt;

&lt;p&gt;This isn't a tool you have to feed. Spine grows from your work.&lt;/p&gt;

&lt;p&gt;After you commit, &lt;code&gt;/spine-capture&lt;/code&gt; reads your changes and auto-drafts an Obsidian doc — root cause, code snippets, wikilinks to related docs. You review and approve.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;/spine-health&lt;/code&gt; audits the vault for undocumented work, stale docs, broken links, and tag issues. The post-commit hook nudges you when something significant lands.&lt;/p&gt;

&lt;p&gt;Every doc gets a type tag (&lt;code&gt;type/fix&lt;/code&gt;, &lt;code&gt;type/feature&lt;/code&gt;, &lt;code&gt;type/architecture&lt;/code&gt;, &lt;code&gt;type/plan&lt;/code&gt;, &lt;code&gt;type/decision&lt;/code&gt;) that drives Obsidian's color-coded graph view. Open the graph in Obsidian and you can &lt;em&gt;see&lt;/em&gt; your knowledge — red nodes for bugs, green for features, purple for architecture decisions.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;p&gt;The vault compounds. Every doc makes the next session faster. Every wikilink makes discovery easier. Every spine note means Claude starts with context instead of starting from scratch.&lt;/p&gt;

&lt;p&gt;This is compound interest for engineering knowledge. And the cost of maintenance is near zero — because the AI handles the bookkeeping.&lt;/p&gt;

&lt;p&gt;Your job: curate and think.&lt;br&gt;
The AI's job: everything else.&lt;/p&gt;
&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude plugin marketplace add Nodewarrior/spine
claude plugin &lt;span class="nb"&gt;install &lt;/span&gt;spine
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Then in Claude Code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/spine-init ~/Documents/MyVault
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open the vault in Obsidian, press &lt;code&gt;Cmd+G&lt;/code&gt;, and watch the graph light up.&lt;/p&gt;

&lt;p&gt;MIT licensed. Give it a spin — I'm actively building this and want to hear what you'd change.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/Nodewarrior/spine" rel="noopener noreferrer"&gt;GitHub → Nodewarrior/spine&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you're using Spine or have ideas for what it should do next, I'd love to hear about it in the comments.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>claude</category>
      <category>obsidian</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
