<?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: Kartik Buttan</title>
    <description>The latest articles on DEV Community by Kartik Buttan (@0xkartik).</description>
    <link>https://dev.to/0xkartik</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4008667%2F88214922-bff1-4e28-8980-5a4d5fe46dc7.png</url>
      <title>DEV Community: Kartik Buttan</title>
      <link>https://dev.to/0xkartik</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/0xkartik"/>
    <language>en</language>
    <item>
      <title>A2A + MCP + Identity: Stop Comparing Them. You're Looking at Different Layers of the Stack</title>
      <dc:creator>Kartik Buttan</dc:creator>
      <pubDate>Thu, 16 Jul 2026 14:02:10 +0000</pubDate>
      <link>https://dev.to/0xkartik/a2a-mcp-identity-stop-comparing-them-youre-looking-at-different-layers-of-the-stack-4hi7</link>
      <guid>https://dev.to/0xkartik/a2a-mcp-identity-stop-comparing-them-youre-looking-at-different-layers-of-the-stack-4hi7</guid>
      <description>&lt;p&gt;Everyone seems to be asking the same question these days.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Should I use MCP or A2A?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Every time I hear that, it feels like someone asking, &lt;em&gt;"Should I use HTTP or PostgreSQL?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The question itself doesn't make sense. One is about communication. The other is about capabilities. They're solving completely different problems.&lt;/p&gt;

&lt;p&gt;And yet, somehow, we've managed to turn them into rivals. I think we're missing the bigger picture.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Agent Gold Rush
&lt;/h2&gt;

&lt;p&gt;We have officially entered the "agent era."&lt;/p&gt;

&lt;p&gt;Every framework now claims to build autonomous agents. Every cloud provider has an agent SDK. Every conference has at least three talks about multi-agent systems.&lt;/p&gt;

&lt;p&gt;But if you zoom out, most of these conversations revolve around two protocols:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Agent-to-Agent (A2A)&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The internet quickly turned this into another technology battle. MCP vs A2A. Google vs Anthropic. Choose your side.&lt;/p&gt;

&lt;p&gt;Except... there isn't a side to choose.&lt;/p&gt;




&lt;h2&gt;
  
  
  Before We Talk About Protocols...
&lt;/h2&gt;

&lt;p&gt;Let's answer a more important question: &lt;strong&gt;what is an agent?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Strip away all the marketing. An agent is surprisingly simple.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It has a brain.&lt;/li&gt;
&lt;li&gt;It knows how to think.&lt;/li&gt;
&lt;li&gt;It knows how to communicate.&lt;/li&gt;
&lt;li&gt;It knows how to act.&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;The LLM gives it reasoning. Prompts shape its behaviour. Memory gives it continuity. Planning gives it direction. Tools let it interact with the real world. Communication lets it collaborate.&lt;/p&gt;

&lt;p&gt;Everything else is implementation details.&lt;/p&gt;




&lt;h2&gt;
  
  
  Every Agent Has Three Jobs
&lt;/h2&gt;

&lt;p&gt;I like reducing systems to the smallest possible abstraction.&lt;/p&gt;

&lt;p&gt;Every agent, no matter how sophisticated, only does three things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;It thinks.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;It talks.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;It acts.&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Thinking is internal. Talking is between agents. Acting is interacting with external systems.&lt;/p&gt;

&lt;p&gt;Interestingly, A2A and MCP map perfectly onto these responsibilities.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Thinking happens inside the agent.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Talking happens through A2A.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Acting happens through MCP.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Notice something? There isn't any overlap.&lt;/p&gt;




&lt;h2&gt;
  
  
  MCP Isn't Your Agent
&lt;/h2&gt;

&lt;p&gt;One misconception I keep seeing is treating MCP as if it's some kind of intelligent orchestrator.&lt;/p&gt;

&lt;p&gt;It isn't.&lt;/p&gt;

&lt;p&gt;MCP doesn't plan. It doesn't reason. It doesn't decide. It simply exposes capabilities in a standard way.&lt;/p&gt;

&lt;p&gt;Imagine hiring a chef. The chef decides the recipe. The kitchen doesn't. The kitchen simply contains ovens, knives, ingredients and utensils.&lt;/p&gt;

&lt;p&gt;That's MCP. It's the kitchen. Not the chef.&lt;/p&gt;

&lt;p&gt;Without the chef, nothing gets cooked. Without the kitchen, the chef can't cook. Both are necessary. Neither replaces the other.&lt;/p&gt;




&lt;h2&gt;
  
  
  A2A Isn't About Tools
&lt;/h2&gt;

&lt;p&gt;Now imagine running a restaurant. One chef isn't enough. You have pastry chefs, sous chefs, line cooks, servers, expeditors. Each has a specialized responsibility. But they constantly communicate.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Table seven is ready."&lt;/em&gt;&lt;br&gt;
&lt;em&gt;"I need dessert."&lt;/em&gt;&lt;br&gt;
&lt;em&gt;"Fire two steaks."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That's A2A. It's not about accessing GitHub. It's not about databases. It's about coordinating work between specialists.&lt;/p&gt;

&lt;p&gt;A planner agent delegates. A retrieval agent searches. An ingestion agent collects data. A reporting agent prepares the final response.&lt;/p&gt;

&lt;p&gt;Each does one thing well. Together they solve much bigger problems.&lt;/p&gt;


&lt;h2&gt;
  
  
  So Where Does Authentication Fit?
&lt;/h2&gt;

&lt;p&gt;This is where I think most architecture diagrams stop too early. They usually end here:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Agent
  │
 MCP
  │
Tools
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Looks neat. Unfortunately, that's not how production systems work.&lt;/p&gt;

&lt;p&gt;The missing piece is &lt;strong&gt;identity&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Without identity, your agent has no authority. Without authority, every tool call becomes a security nightmare.&lt;/p&gt;

&lt;p&gt;A production architecture actually looks closer to this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3gh6hmtul0n6fmdcwd6y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F3gh6hmtul0n6fmdcwd6y.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Identity isn't an implementation detail. It's a first-class architectural layer.&lt;/p&gt;




&lt;h2&gt;
  
  
  Should Agents Carry User Tokens?
&lt;/h2&gt;

&lt;p&gt;My first instinct was yes. The user authenticates. The agent simply forwards the access token. Done.&lt;/p&gt;

&lt;p&gt;The more I thought about it, the less I liked it.&lt;/p&gt;

&lt;p&gt;Imagine asking an agent: &lt;em&gt;"Summarize my backend repository."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Should that worker agent suddenly inherit every permission you have? Probably not.&lt;/p&gt;

&lt;p&gt;Instead, imagine issuing a new credential. Not a user credential. A &lt;strong&gt;task credential&lt;/strong&gt;. Something that says:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"DataIngestionAgent may read this repository, for this task, during the next 15 minutes. Nothing more. Nothing less."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now we've moved from identity propagation to &lt;strong&gt;delegated authority&lt;/strong&gt;. That small distinction changes everything.&lt;/p&gt;




&lt;h2&gt;
  
  
  Authorization Doesn't Belong Inside the Agent
&lt;/h2&gt;

&lt;p&gt;This is another subtle design decision.&lt;/p&gt;

&lt;p&gt;Suppose the ingestion agent decides it needs GitHub. Should the agent itself verify permissions?&lt;/p&gt;

&lt;p&gt;I don't think so.&lt;/p&gt;

&lt;p&gt;The agent's responsibility is deciding &lt;strong&gt;what needs to happen&lt;/strong&gt;. The MCP's responsibility is deciding &lt;strong&gt;whether it's allowed&lt;/strong&gt;. That separation keeps intelligence separate from security.&lt;/p&gt;

&lt;p&gt;The agent says: &lt;em&gt;"Fetch backend repository."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The MCP checks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is this token valid?&lt;/li&gt;
&lt;li&gt;Has it expired?&lt;/li&gt;
&lt;li&gt;Is this repository allowed?&lt;/li&gt;
&lt;li&gt;Does this task have &lt;code&gt;repo.read&lt;/code&gt; permission?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Only then is the request forwarded.&lt;/p&gt;

&lt;p&gt;The agent never needs to understand OAuth, RBAC, policy engines, or permission inheritance. Its only job is solving the problem.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Not Give Every Agent Direct Tool Access?
&lt;/h2&gt;

&lt;p&gt;You could. For a toy application, it works perfectly.&lt;/p&gt;

&lt;p&gt;Then your second agent appears. Now both agents need GitHub. Then Slack. Then Gmail. Then S3. Then PostgreSQL.&lt;/p&gt;

&lt;p&gt;Soon every single agent contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;authentication logic&lt;/li&gt;
&lt;li&gt;retries&lt;/li&gt;
&lt;li&gt;caching&lt;/li&gt;
&lt;li&gt;SDKs&lt;/li&gt;
&lt;li&gt;rate limiting&lt;/li&gt;
&lt;li&gt;permission checks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Congratulations. You've just duplicated your infrastructure ten times.&lt;/p&gt;

&lt;p&gt;A shared MCP layer eliminates that duplication: one integration, many agents, consistent behaviour, centralized policies. Much cleaner.&lt;/p&gt;




&lt;h2&gt;
  
  
  Putting Everything Together
&lt;/h2&gt;

&lt;p&gt;Once you zoom out, the architecture becomes surprisingly elegant.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvrpmhsm48j2k5yjjlpqt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvrpmhsm48j2k5yjjlpqt.png" alt=" " width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Every layer has exactly one responsibility.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Identity&lt;/strong&gt; answers: &lt;em&gt;Who is allowed to perform this work?&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A2A&lt;/strong&gt; answers: &lt;em&gt;Who should perform this work?&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP&lt;/strong&gt; answers: &lt;em&gt;How do we safely access the capabilities required to perform this work?&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When each layer focuses on one responsibility, the architecture becomes both simpler and more secure.&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;I don't think the future belongs to a single "super agent."&lt;/p&gt;

&lt;p&gt;It belongs to teams of specialized agents collaborating through standard protocols. Those agents won't have hardcoded integrations. They'll rely on shared capability layers. And they won't blindly inherit user credentials — they'll operate with delegated, task-scoped authority.&lt;/p&gt;

&lt;p&gt;That's why I no longer think about A2A or MCP in isolation. They're simply two layers of the same stack.&lt;/p&gt;

&lt;p&gt;The third layer — the one that quietly holds everything together — is &lt;strong&gt;identity&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Because before an agent can think... before it can collaborate... before it can call a tool... it first has to answer the most important question of all:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;"What am I allowed to do?"&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;Always happy to connect with builders working on AI systems, retrieval pipelines, and knowledge infrastructure.&lt;/p&gt;

&lt;p&gt;💼 LinkedIn: &lt;a href="https://www.linkedin.com/in/kartikbuttan" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/kartikbuttan&lt;/a&gt;&lt;br&gt;
💻 GitHub: &lt;a href="https://github.com/kartik1112" rel="noopener noreferrer"&gt;https://github.com/kartik1112&lt;/a&gt;&lt;br&gt;
🌐 Portfolio: &lt;a href="https://kartik1112.github.io" rel="noopener noreferrer"&gt;https://kartik1112.github.io&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>architecture</category>
      <category>softwareengineering</category>
      <category>backend</category>
    </item>
    <item>
      <title>Google's OKF Might Quietly Break the Entire RAG Stack</title>
      <dc:creator>Kartik Buttan</dc:creator>
      <pubDate>Tue, 30 Jun 2026 15:00:00 +0000</pubDate>
      <link>https://dev.to/0xkartik/googles-okf-might-quietly-break-the-entire-rag-stack-f4j</link>
      <guid>https://dev.to/0xkartik/googles-okf-might-quietly-break-the-entire-rag-stack-f4j</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;We didn’t build bad AI systems.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We just gave them broken maps of knowledge.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Everyone is building AI agents right now.&lt;/p&gt;

&lt;p&gt;The demos are insane:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;“Book my meetings.”&lt;/li&gt;
&lt;li&gt;“Analyze my revenue.”&lt;/li&gt;
&lt;li&gt;“Find the root cause.”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then you deploy it in a real company...&lt;/p&gt;

&lt;p&gt;…and it starts hallucinating confidence on top of uncertainty.&lt;/p&gt;

&lt;p&gt;Not because the model is bad.&lt;/p&gt;

&lt;p&gt;But because &lt;strong&gt;retrieval is fundamentally broken.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚡ TL;DR
&lt;/h2&gt;

&lt;p&gt;RAG today:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Finds what &lt;em&gt;looks similar&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;OKF:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Connects what &lt;em&gt;actually relates&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That difference changes everything.&lt;/p&gt;




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

&lt;p&gt;Ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“How is Monthly Active Revenue calculated?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;dashboard docs&lt;/li&gt;
&lt;li&gt;onboarding guides&lt;/li&gt;
&lt;li&gt;outdated Confluence pages&lt;/li&gt;
&lt;li&gt;random SQL files&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Nothing is technically wrong.&lt;/p&gt;

&lt;p&gt;But nothing is truly &lt;em&gt;right&lt;/em&gt; either.&lt;/p&gt;

&lt;p&gt;Because retrieval is based on:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;semantic similarity, not meaning&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  RAG in One Diagram
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Question
  ↓
Embedding
  ↓
Vector Search
  ↓
Top-K Chunks
  ↓
LLM Answer
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Simple.&lt;/p&gt;

&lt;p&gt;But dangerously incomplete.&lt;/p&gt;

&lt;p&gt;Because:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The system never understands relationships.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Only proximity in vector space.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Chunking Trap
&lt;/h2&gt;

&lt;p&gt;Take this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Revenue = Payments - Refunds
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now break it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chunk 1 → Formula&lt;/li&gt;
&lt;li&gt;Chunk 2 → Refund rules&lt;/li&gt;
&lt;li&gt;Chunk 3 → Exceptions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now the system must reassemble truth from fragments.&lt;/p&gt;

&lt;p&gt;Sometimes it works.&lt;/p&gt;

&lt;p&gt;Sometimes it fails silently.&lt;/p&gt;

&lt;p&gt;So we patch it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;more overlap&lt;/li&gt;
&lt;li&gt;more retrieval&lt;/li&gt;
&lt;li&gt;more reranking&lt;/li&gt;
&lt;li&gt;more agents&lt;/li&gt;
&lt;li&gt;more compute&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We didn’t fix retrieval.&lt;/p&gt;

&lt;p&gt;We just made it more expensive.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Hidden Cost
&lt;/h2&gt;

&lt;p&gt;When retrieval is probabilistic…&lt;/p&gt;

&lt;p&gt;we compensate with infrastructure.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Query
 → Vector Search
 → BM25
 → Hybrid Search
 → Query Rewrite
 → Reranker
 → Reranker v2
 → LLM
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It works.&lt;/p&gt;

&lt;p&gt;But it feels like overengineering a missing concept:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;structure&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Enter OKF
&lt;/h2&gt;

&lt;p&gt;Instead of asking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“What looks similar?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It asks:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“What is actually connected?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That changes the entire model.&lt;/p&gt;




&lt;h2&gt;
  
  
  Think Wikipedia, Not Search
&lt;/h2&gt;

&lt;p&gt;Wikipedia isn’t useful because of articles.&lt;/p&gt;

&lt;p&gt;It’s useful because of links.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Newton
 → Calculus
 → Leibniz
 → Differential Equations
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You don’t &lt;em&gt;retrieve&lt;/em&gt; knowledge.&lt;/p&gt;

&lt;p&gt;You &lt;em&gt;navigate&lt;/em&gt; it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Documents vs Knowledge Graph
&lt;/h2&gt;

&lt;p&gt;Old world:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Revenue.pdf
Orders.pdf
Refunds.pdf
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;New world:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Revenue
 ├─ depends on Orders
 ├─ subtracts Refunds
 ├─ owned by Finance
 └─ drives Dashboard
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No guessing.&lt;/p&gt;

&lt;p&gt;No inference.&lt;/p&gt;

&lt;p&gt;Just structure.&lt;/p&gt;




&lt;h2&gt;
  
  
  Real Example
&lt;/h2&gt;

&lt;p&gt;Question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Why did revenue drop yesterday?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;RAG:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;logs&lt;/li&gt;
&lt;li&gt;dashboards&lt;/li&gt;
&lt;li&gt;docs&lt;/li&gt;
&lt;li&gt;incidents&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then the LLM guesses causality.&lt;/p&gt;

&lt;p&gt;OKF-style structure:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Revenue
 → Payment Service
 → Failed Transactions
 → Deployment Change
 → Incident Report
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now the system doesn’t guess.&lt;/p&gt;

&lt;p&gt;It traverses.&lt;/p&gt;




&lt;h2&gt;
  
  
  Is This Just a Graph Database?
&lt;/h2&gt;

&lt;p&gt;No.&lt;/p&gt;

&lt;p&gt;But they’re related.&lt;/p&gt;

&lt;p&gt;Graph databases like Neo4j, Amazon Neptune, and TigerGraph store and query relationships efficiently.&lt;/p&gt;

&lt;p&gt;But OKF is different.&lt;/p&gt;




&lt;h2&gt;
  
  
  Graph DB vs OKF
&lt;/h2&gt;

&lt;p&gt;Graph database:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“How do I store relationships?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;OKF:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“How do I define relationships so any system can understand them?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;One is infrastructure.&lt;/p&gt;

&lt;p&gt;The other is a knowledge standard.&lt;/p&gt;

&lt;p&gt;Think:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTML → structure&lt;/li&gt;
&lt;li&gt;Browser → renderer&lt;/li&gt;
&lt;li&gt;Graph DB → storage&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;OKF sits at the &lt;strong&gt;structure layer.&lt;/strong&gt;&lt;/p&gt;




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

&lt;p&gt;Enterprise knowledge today is fragmented:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;docs&lt;/li&gt;
&lt;li&gt;code&lt;/li&gt;
&lt;li&gt;APIs&lt;/li&gt;
&lt;li&gt;dashboards&lt;/li&gt;
&lt;li&gt;spreadsheets&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We force AI to unify it using probability.&lt;/p&gt;

&lt;p&gt;But probability breaks when structure is missing.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Real Bottleneck
&lt;/h2&gt;

&lt;p&gt;It’s not model size.&lt;/p&gt;

&lt;p&gt;It’s not context windows.&lt;/p&gt;

&lt;p&gt;It’s not agents.&lt;/p&gt;

&lt;p&gt;It’s this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;We never taught our systems how knowledge connects.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;We’ve spent years upgrading intelligence.&lt;/p&gt;

&lt;p&gt;Maybe the next leap is upgrading structure.&lt;/p&gt;

&lt;p&gt;Because even the smartest model in the world can’t follow connections that were never written down.&lt;/p&gt;

&lt;p&gt;If AI is the brain...&lt;/p&gt;

&lt;p&gt;Then OKF might become the nervous system.&lt;/p&gt;

&lt;p&gt;And that changes everything.&lt;/p&gt;




&lt;p&gt;Always happy to connect with builders working on AI systems, retrieval pipelines, and knowledge infrastructure.&lt;/p&gt;

&lt;p&gt;💼 LinkedIn: &lt;a href="https://www.linkedin.com/in/kartikbuttan" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/kartikbuttan&lt;/a&gt;&lt;br&gt;
💻 GitHub: &lt;a href="https://github.com/kartik1112" rel="noopener noreferrer"&gt;https://github.com/kartik1112&lt;/a&gt;&lt;br&gt;
🌐 Portfolio: &lt;a href="https://kartik1112.github.io" rel="noopener noreferrer"&gt;https://kartik1112.github.io&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>systemdesign</category>
      <category>google</category>
    </item>
  </channel>
</rss>
