<?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: Nimesh Kulkarni</title>
    <description>The latest articles on DEV Community by Nimesh Kulkarni (@nimay_04).</description>
    <link>https://dev.to/nimay_04</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%2F3604005%2F3854c3fa-2046-4366-a7bc-c48020bf3bef.png</url>
      <title>DEV Community: Nimesh Kulkarni</title>
      <link>https://dev.to/nimay_04</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nimay_04"/>
    <language>en</language>
    <item>
      <title>Beyond Chatbots: How Hermes Agent Turns an LLM Into an AI Worker</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Thu, 20 Aug 2026 19:26:39 +0000</pubDate>
      <link>https://dev.to/nimay_04/beyond-chatbots-how-hermes-agent-turns-an-llm-into-an-ai-worker-3pbb</link>
      <guid>https://dev.to/nimay_04/beyond-chatbots-how-hermes-agent-turns-an-llm-into-an-ai-worker-3pbb</guid>
      <description>&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%2Fdjm6r8t805dltm3q5qe6.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%2Fdjm6r8t805dltm3q5qe6.png" alt=" " width="800" height="499"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Hermes Agent: What Happens When an LLM Gets Memory, Tools, and a Work Loop?
&lt;/h1&gt;

&lt;p&gt;Most LLMs are pretty good at talking.&lt;/p&gt;

&lt;p&gt;Give them a prompt, they generate an answer. Done.&lt;/p&gt;

&lt;p&gt;But the moment you ask an AI to &lt;strong&gt;actually do something&lt;/strong&gt;, things get more interesting.&lt;/p&gt;

&lt;p&gt;Search the web.&lt;br&gt;
Run a command.&lt;br&gt;
Read a file.&lt;br&gt;
Remember what happened yesterday.&lt;br&gt;
Create a skill.&lt;br&gt;
Try something, check the result, and keep going.&lt;/p&gt;

&lt;p&gt;Now you are no longer just dealing with an LLM.&lt;/p&gt;

&lt;p&gt;You are building an &lt;strong&gt;agent system&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;And this is where &lt;strong&gt;&lt;a href="https://hermes-agent.nousresearch.com/" rel="noopener noreferrer"&gt;Hermes Agent&lt;/a&gt;&lt;/strong&gt; gets interesting.&lt;/p&gt;

&lt;h2&gt;
  
  
  So, What Is Hermes Agent?
&lt;/h2&gt;

&lt;p&gt;Hermes Agent is an open source AI agent built around an LLM.&lt;/p&gt;

&lt;p&gt;The interesting part is not simply the model underneath it. The interesting part is everything built around that model:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tools + Memory + Skills + Agent Loop + Sub-agents&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The LLM is basically the brain.&lt;/p&gt;

&lt;p&gt;The harness around it gives that brain a way to actually do things.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Agent Loop
&lt;/h2&gt;

&lt;p&gt;When you give Hermes a task, it does not necessarily answer immediately.&lt;/p&gt;

&lt;p&gt;It can follow a loop:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Understand the task&lt;/li&gt;
&lt;li&gt;Decide what needs to happen&lt;/li&gt;
&lt;li&gt;Choose a tool&lt;/li&gt;
&lt;li&gt;Execute the tool&lt;/li&gt;
&lt;li&gt;Look at the result&lt;/li&gt;
&lt;li&gt;Decide what to do next&lt;/li&gt;
&lt;li&gt;Repeat if necessary&lt;/li&gt;
&lt;li&gt;Return the final result&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That last part is important.&lt;/p&gt;

&lt;p&gt;The agent can continue working instead of expecting the user to manually guide every single step.&lt;/p&gt;

&lt;p&gt;That's the difference between:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Tell me how to deploy this."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;and:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Deploy this."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The second one requires an actual agent.&lt;/p&gt;

&lt;h2&gt;
  
  
  SOUL.md: Give the Agent a Personality
&lt;/h2&gt;

&lt;p&gt;One of the interesting pieces is &lt;code&gt;SOUL.md&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Think of it as the instruction layer that defines how the agent should behave.&lt;/p&gt;

&lt;p&gt;It can describe things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Personality&lt;/li&gt;
&lt;li&gt;Communication style&lt;/li&gt;
&lt;li&gt;Priorities&lt;/li&gt;
&lt;li&gt;General behavior&lt;/li&gt;
&lt;li&gt;Rules the agent should follow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The underlying model can stay the same, but the system around it can make the agent behave very differently.&lt;/p&gt;

&lt;p&gt;The model provides the intelligence.&lt;/p&gt;

&lt;p&gt;The instructions shape how that intelligence is used.&lt;/p&gt;

&lt;h2&gt;
  
  
  Then Comes Memory
&lt;/h2&gt;

&lt;p&gt;This is where things get really interesting.&lt;/p&gt;

&lt;p&gt;A useful agent cannot depend entirely on the current conversation.&lt;/p&gt;

&lt;p&gt;It needs to remember.&lt;/p&gt;

&lt;p&gt;Hermes uses different memory layers for different purposes.&lt;/p&gt;

&lt;h3&gt;
  
  
  Procedural Memory: Skills
&lt;/h3&gt;

&lt;p&gt;Procedural memory is basically:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"How do I do this?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If the agent learns a useful process, it can save that process as a reusable skill.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;Imagine the agent learns your preferred workflow for deploying an application.&lt;/p&gt;

&lt;p&gt;Instead of figuring it out from scratch every time, that procedure can become a skill.&lt;/p&gt;

&lt;p&gt;The next time the task appears, the agent already has a starting point.&lt;/p&gt;

&lt;p&gt;That's a huge difference.&lt;/p&gt;

&lt;p&gt;The agent isn't just remembering information.&lt;/p&gt;

&lt;p&gt;It is remembering &lt;strong&gt;how to work&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Semantic Memory: Facts
&lt;/h3&gt;

&lt;p&gt;Semantic memory is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"What do I know?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is where useful long term information can live.&lt;/p&gt;

&lt;p&gt;User preferences.&lt;/p&gt;

&lt;p&gt;Project information.&lt;/p&gt;

&lt;p&gt;Important facts.&lt;/p&gt;

&lt;p&gt;Frequently used tools.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"The user prefers reports in a short technical format."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You don't need to keep the entire conversation to remember that.&lt;/p&gt;

&lt;p&gt;You just need the useful fact.&lt;/p&gt;

&lt;h3&gt;
  
  
  Episodic Memory: History
&lt;/h3&gt;

&lt;p&gt;Then there is episodic memory.&lt;/p&gt;

&lt;p&gt;This is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"What happened?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It contains previous interactions, conversations, activities, and agent history.&lt;/p&gt;

&lt;p&gt;Think of it like the agent's experience log.&lt;/p&gt;

&lt;p&gt;But there is a problem.&lt;/p&gt;

&lt;p&gt;This can get &lt;strong&gt;huge&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You don't want to throw the entire history of an agent into the context window every time it needs to answer a question.&lt;/p&gt;

&lt;p&gt;So the interesting part is how useful information can move from large historical data into smaller, more useful memories.&lt;/p&gt;

&lt;p&gt;That's where summarization becomes important.&lt;/p&gt;

&lt;h2&gt;
  
  
  Memory Is Not Just a Database
&lt;/h2&gt;

&lt;p&gt;This is an important distinction.&lt;/p&gt;

&lt;p&gt;When people say:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Let's add memory to the agent."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;they sometimes mean:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Let's connect a vector database."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's only part of the problem.&lt;/p&gt;

&lt;p&gt;A real memory system needs to answer:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What should be remembered?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where should it be stored?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When should it be retrieved?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When should old information be summarized?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What information is actually useful?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The hard part isn't storage.&lt;/p&gt;

&lt;p&gt;The hard part is &lt;strong&gt;memory management&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tools: Now the Agent Can Actually Do Stuff
&lt;/h2&gt;

&lt;p&gt;Memory lets the agent remember.&lt;/p&gt;

&lt;p&gt;Tools let it act.&lt;/p&gt;

&lt;p&gt;Hermes can work with tools such as:&lt;/p&gt;

&lt;h3&gt;
  
  
  Terminal
&lt;/h3&gt;

&lt;p&gt;Run commands, interact with files, and work with the local environment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Browser
&lt;/h3&gt;

&lt;p&gt;Search websites, collect information, and use the web as part of a task.&lt;/p&gt;

&lt;h3&gt;
  
  
  Scheduled Tasks
&lt;/h3&gt;

&lt;p&gt;The agent can schedule work to happen later instead of waiting for another user message.&lt;/p&gt;

&lt;h3&gt;
  
  
  Skills
&lt;/h3&gt;

&lt;p&gt;Save useful workflows and reuse them later.&lt;/p&gt;

&lt;h3&gt;
  
  
  Sub-agents
&lt;/h3&gt;

&lt;p&gt;For larger tasks, work can be delegated to another specialized agent or coding tool.&lt;/p&gt;

&lt;p&gt;This creates an interesting architecture.&lt;/p&gt;

&lt;p&gt;Hermes does not have to do every piece of work itself.&lt;/p&gt;

&lt;p&gt;It can manage the bigger task and delegate specific jobs when needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Local Memory Is a Big Deal
&lt;/h2&gt;

&lt;p&gt;Another interesting part of Hermes is local storage.&lt;/p&gt;

&lt;p&gt;The agent's memory can live on your own computer.&lt;/p&gt;

&lt;p&gt;That means the information it remembers does not necessarily have to live entirely inside some remote cloud memory service.&lt;/p&gt;

&lt;p&gt;For an agent that can accumulate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Conversations&lt;/li&gt;
&lt;li&gt;User preferences&lt;/li&gt;
&lt;li&gt;Project information&lt;/li&gt;
&lt;li&gt;Skills&lt;/li&gt;
&lt;li&gt;Task history&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;local storage gives the user much more control over that information.&lt;/p&gt;

&lt;h2&gt;
  
  
  But There Is Still a Missing Piece
&lt;/h2&gt;

&lt;p&gt;Now we get to something that is often ignored when people talk about AI agents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do you know the agent is actually getting better?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;An agent can have memory.&lt;/p&gt;

&lt;p&gt;It can have tools.&lt;/p&gt;

&lt;p&gt;It can have skills.&lt;/p&gt;

&lt;p&gt;It can run complicated workflows.&lt;/p&gt;

&lt;p&gt;But none of that automatically tells you whether it is performing well.&lt;/p&gt;

&lt;p&gt;This is where &lt;strong&gt;LLM Ops&lt;/strong&gt; comes in.&lt;/p&gt;

&lt;p&gt;And importantly, LLM Ops is not the same thing as Hermes itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  LLM Ops: The Layer Watching the Agent
&lt;/h2&gt;

&lt;p&gt;Think of LLM Ops as the engineering layer around the agent that helps you understand what happened during a run.&lt;/p&gt;

&lt;p&gt;A trace can capture the agent's trajectory.&lt;/p&gt;

&lt;p&gt;Then evaluation can ask:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Was the result actually good?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;At the same time, observability can track things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Token usage&lt;/li&gt;
&lt;li&gt;Latency&lt;/li&gt;
&lt;li&gt;Errors&lt;/li&gt;
&lt;li&gt;Tool calls&lt;/li&gt;
&lt;li&gt;Execution behavior&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If something fails, you need to know &lt;strong&gt;why&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Was the prompt bad?&lt;/p&gt;

&lt;p&gt;Did the model choose the wrong tool?&lt;/p&gt;

&lt;p&gt;Did a tool return a bad result?&lt;/p&gt;

&lt;p&gt;Did retrieval fail?&lt;/p&gt;

&lt;p&gt;Did the agent simply make a bad decision?&lt;/p&gt;

&lt;p&gt;That is where diagnosis becomes useful.&lt;/p&gt;

&lt;p&gt;Then comes the gate.&lt;/p&gt;

&lt;p&gt;If the evaluation passes, the change can be released.&lt;/p&gt;

&lt;p&gt;If it fails, you fix it, run the evaluation again, and repeat.&lt;/p&gt;

&lt;p&gt;That creates a proper engineering loop:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Trace → Evaluate → Observe → Diagnose → Gate → Release&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now you're not just building an agent.&lt;/p&gt;

&lt;p&gt;You're building a system you can actually improve.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bigger Picture
&lt;/h2&gt;

&lt;p&gt;This is what makes agent engineering different from simply calling an LLM API.&lt;/p&gt;

&lt;p&gt;An LLM gives you intelligence.&lt;/p&gt;

&lt;p&gt;But an agent needs infrastructure around that intelligence.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Memory&lt;/strong&gt; gives it continuity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Skills&lt;/strong&gt; give it reusable procedures.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tools&lt;/strong&gt; give it the ability to act.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The agent loop&lt;/strong&gt; lets it work through multiple steps.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sub-agents&lt;/strong&gt; let it delegate complex work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;LLM Ops&lt;/strong&gt; lets you understand and improve what happened.&lt;/p&gt;

&lt;p&gt;Put all of these together and you get something much closer to an actual AI worker.&lt;/p&gt;

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

&lt;p&gt;The interesting shift in AI isn't:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"LLMs can generate text."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We already know that.&lt;/p&gt;

&lt;p&gt;The bigger shift is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;LLMs can be placed inside systems that remember, act, evaluate, and improve.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's what makes agent infrastructure so interesting.&lt;/p&gt;

&lt;p&gt;The model is only one component.&lt;/p&gt;

&lt;p&gt;The real engineering challenge is building everything around it.&lt;/p&gt;

&lt;p&gt;And Hermes is a great example of what that architecture can look like.&lt;/p&gt;

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

&lt;p&gt;A chatbot waits for your next prompt.&lt;/p&gt;

&lt;p&gt;An agent can work toward a goal.&lt;/p&gt;

&lt;p&gt;That's a pretty big difference.&lt;/p&gt;

&lt;p&gt;And once you add memory, skills, tools, delegation, and proper LLM Ops around the model, the question stops being:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"What can this LLM answer?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;and becomes:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"What can this system actually get done?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you like reading drop a like 🤍&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.n1m35h.in/" rel="noopener noreferrer"&gt;About me&lt;br&gt;
&lt;/a&gt;👀&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Agentic Memory System Design</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Wed, 19 Aug 2026 19:38:18 +0000</pubDate>
      <link>https://dev.to/nimay_04/agentic-memory-system-design-5892</link>
      <guid>https://dev.to/nimay_04/agentic-memory-system-design-5892</guid>
      <description>&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%2Fg62xk712m9p70coc0gu4.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%2Fg62xk712m9p70coc0gu4.png" alt=" " width="800" height="723"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;a href="https://www.snab.co.in/blogs/agentic-memory-systems" rel="noopener noreferrer"&gt;AI Agent Memory System&lt;/a&gt;: How Agents Remember
&lt;/h1&gt;

&lt;p&gt;An AI agent can answer questions using the information available in the current conversation. But if we want the agent to remember users, past conversations, important facts, or previous work, we need a proper memory system.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Does an Agent Need Memory?
&lt;/h2&gt;

&lt;p&gt;Without memory, an agent mostly depends on its current conversation. Once that context is gone, it cannot easily use what happened before.&lt;/p&gt;

&lt;p&gt;Memory allows an agent to remember useful information and bring it back when it is needed.&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%2Feijywne2j1rn123cxn3r.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%2Feijywne2j1rn123cxn3r.png" alt=" " width="800" height="318"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Three Types of Agent Memory
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Procedural Memory
&lt;/h3&gt;

&lt;p&gt;Procedural memory tells the agent &lt;strong&gt;how to do something&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It contains instructions, skills, workflows, or rules that guide the agent. For example, an agent can have a skill file that explains how it should perform a particular task.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Semantic Memory
&lt;/h3&gt;

&lt;p&gt;Semantic memory stores &lt;strong&gt;important facts&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For example, if a user says, “There is a hackathon next week,” the system can store a simple fact like &lt;strong&gt;“Hackathon next week.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This keeps the useful information without storing the entire conversation. Semantic memory can be stored and retrieved using a vector database.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Episodic Memory
&lt;/h3&gt;

&lt;p&gt;Episodic memory stores &lt;strong&gt;what happened before&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It can contain previous conversations, agent responses, activities, and other past interactions. Think of it as the agent’s history.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem With Too Much Memory
&lt;/h2&gt;

&lt;p&gt;Episodic memory can become very large as the agent keeps interacting with users. Giving the complete history to the LLM every time is not efficient.&lt;/p&gt;

&lt;p&gt;That is why useful information from episodic memory can be summarized and converted into smaller facts for semantic memory.&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%2Fp3v42ayydfr6js42dcbg.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%2Fp3v42ayydfr6js42dcbg.png" alt=" " width="800" height="652"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Summarizer Agent
&lt;/h2&gt;

&lt;p&gt;Instead of summarizing memory after every interaction, we can introduce a &lt;strong&gt;gate or threshold&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For example, after 20 activities or conversations, the system can trigger a summarizer agent. The summarizer looks at the recent episodic memory, identifies the important information, and saves it as useful facts in semantic memory.&lt;/p&gt;

&lt;p&gt;This gives us better control over &lt;strong&gt;what to store, how to store it, and when to store it&lt;/strong&gt;.&lt;/p&gt;

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

&lt;p&gt;Good agent memory is not about remembering everything. It is about remembering the &lt;strong&gt;right information at the right time&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Procedural memory tells the agent how to work, semantic memory tells it what it knows, and episodic memory tells it what happened.&lt;/p&gt;

&lt;p&gt;Together, these make an AI agent much more useful and capable over time.&lt;/p&gt;

&lt;p&gt;if you like reading drop a like :D&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
    <item>
      <title>AI Is Not Just Replacing Work, It Is Challenging How We Think</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Sat, 27 Jun 2026 13:25:58 +0000</pubDate>
      <link>https://dev.to/nimay_04/ai-is-not-just-replacing-work-it-is-challenging-how-we-think-1095</link>
      <guid>https://dev.to/nimay_04/ai-is-not-just-replacing-work-it-is-challenging-how-we-think-1095</guid>
      <description>&lt;p&gt;For a long time, we treated AI like a tool.&lt;/p&gt;

&lt;p&gt;Something that could autocomplete code, summarize long documents, generate images, or answer simple questions. It felt useful, but still limited. The human was always the thinker, and AI was just the assistant.&lt;/p&gt;

&lt;p&gt;That line is slowly becoming blurry.&lt;/p&gt;

&lt;p&gt;Today, AI can reason through problems, debug code, write product strategies, explain complex systems, generate architecture diagrams, and even challenge our assumptions. It does not just give answers anymore. It can break down problems in a way that looks very close to thinking.&lt;/p&gt;

&lt;p&gt;For developers, this is both exciting and uncomfortable.&lt;/p&gt;

&lt;p&gt;We used to believe that writing syntax was the main skill. Then AI made syntax cheap. Now we say problem solving matters more. But AI is also getting better at problem solving. It can compare approaches, suggest tradeoffs, identify bugs, and explain why one solution is better than another.&lt;/p&gt;

&lt;p&gt;So the real question is not whether AI will overtake human thinking completely.&lt;/p&gt;

&lt;p&gt;The better question is: what kind of thinking will still matter?&lt;/p&gt;

&lt;p&gt;Blind execution will lose value. Copying tutorials will lose value. Writing basic CRUD apps will lose value. But taste, judgment, creativity, clarity, and understanding real human problems will become more important.&lt;/p&gt;

&lt;p&gt;AI can generate ten solutions in seconds, but someone still has to decide which one is actually useful. AI can write code fast, but someone still has to understand the product, the users, the constraints, and the long term impact.&lt;/p&gt;

&lt;p&gt;The future developer will not be the person who simply writes code.&lt;/p&gt;

&lt;p&gt;The future developer will be the person who knows what to build, why it matters, how to guide AI properly, and how to judge the output with real understanding.&lt;/p&gt;

&lt;p&gt;AI may overtake many thinking tasks, but it will also expose who was truly thinking in the first place.&lt;/p&gt;

&lt;p&gt;The people who only memorized steps will struggle.&lt;/p&gt;

&lt;p&gt;The people who understand systems, ask better questions, and keep learning will become more powerful than ever.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>How AI Is Quietly Automating 70% of Customer Support</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Wed, 10 Jun 2026 13:57:05 +0000</pubDate>
      <link>https://dev.to/nimay_04/finish-the-rhow-ai-is-quietly-automating-70-of-customer-support-lhm</link>
      <guid>https://dev.to/nimay_04/finish-the-rhow-ai-is-quietly-automating-70-of-customer-support-lhm</guid>
      <description>&lt;p&gt;Customer support automation used to mean rigid chatbots, scripted menus, and irrelevant help centre links.&lt;/p&gt;

&lt;p&gt;That is changing fast.&lt;/p&gt;

&lt;p&gt;Platforms like Zendesk, Intercom, and Freshworks now use large language models to understand customer questions, search company knowledge, complete basic actions, and escalate complex issues to human agents.&lt;/p&gt;

&lt;p&gt;In some deployments, these platforms report automation or resolution rates near 70%.&lt;/p&gt;

&lt;p&gt;That does not mean 70% of support jobs have disappeared. It means a large share of repetitive customer conversations can now be resolved without an agent manually handling every step.&lt;/p&gt;

&lt;p&gt;What AI Support Agents Can Do&lt;/p&gt;

&lt;p&gt;Modern AI agents can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Understand natural language&lt;/li&gt;
&lt;li&gt;Identify customer intent&lt;/li&gt;
&lt;li&gt;Search approved documentation&lt;/li&gt;
&lt;li&gt;Generate contextual answers&lt;/li&gt;
&lt;li&gt;Check order or account information&lt;/li&gt;
&lt;li&gt;Process simple requests&lt;/li&gt;
&lt;li&gt;Summarize conversations&lt;/li&gt;
&lt;li&gt;Transfer difficult cases to humans&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Unlike traditional chatbots, they do not depend entirely on fixed decision trees.&lt;/p&gt;

&lt;p&gt;A customer can write:&lt;/p&gt;

&lt;p&gt;«I paid for the upgrade, but my account is still on the free plan.»&lt;/p&gt;

&lt;p&gt;The AI can understand that this is not just a general billing question. It may need to verify the payment, check the subscription status, and escalate the case if the account was not updated correctly.&lt;/p&gt;

&lt;p&gt;Why Support Is Easy to Automate&lt;/p&gt;

&lt;p&gt;A large percentage of support volume comes from repetitive questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How do I reset my password?&lt;/li&gt;
&lt;li&gt;Where is my order?&lt;/li&gt;
&lt;li&gt;How do I download an invoice?&lt;/li&gt;
&lt;li&gt;Can I cancel my plan?&lt;/li&gt;
&lt;li&gt;How do I add a team member?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These questions are important, but they usually follow predictable patterns.&lt;/p&gt;

&lt;p&gt;AI is good at understanding the request, retrieving the correct information, and presenting it clearly. When connected to business systems, it can also complete the task instead of simply explaining it.&lt;/p&gt;

&lt;p&gt;The Human Role Is Changing&lt;/p&gt;

&lt;p&gt;AI will not remove the need for human support.&lt;/p&gt;

&lt;p&gt;It will change what human agents handle.&lt;/p&gt;

&lt;p&gt;AI can manage simple and repetitive requests. Humans can focus on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Complex technical issues&lt;/li&gt;
&lt;li&gt;Sensitive complaints&lt;/li&gt;
&lt;li&gt;Security incidents&lt;/li&gt;
&lt;li&gt;High-value customers&lt;/li&gt;
&lt;li&gt;Unusual exceptions&lt;/li&gt;
&lt;li&gt;Retention conversations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI can also assist human agents by drafting replies, summarizing long conversations, translating messages, and retrieving relevant documentation.&lt;/p&gt;

&lt;p&gt;The 70% Figure Needs Context&lt;/p&gt;

&lt;p&gt;Not every company will automate 70% of its support volume.&lt;/p&gt;

&lt;p&gt;The result depends on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The quality of the knowledge base&lt;/li&gt;
&lt;li&gt;The types of customer questions&lt;/li&gt;
&lt;li&gt;Access to business systems&lt;/li&gt;
&lt;li&gt;Escalation rules&lt;/li&gt;
&lt;li&gt;Workflow design&lt;/li&gt;
&lt;li&gt;How resolution is measured&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A company with clear documentation and thousands of repetitive questions may achieve a high automation rate.&lt;/p&gt;

&lt;p&gt;A company handling legal, medical, financial, or highly technical cases may require more human involvement.&lt;/p&gt;

&lt;p&gt;The Biggest Challenge Is Knowledge&lt;/p&gt;

&lt;p&gt;AI support agents are only as reliable as the information available to them.&lt;/p&gt;

&lt;p&gt;Outdated articles, conflicting policies, and missing documentation can lead to incorrect answers.&lt;/p&gt;

&lt;p&gt;This is why AI support projects often become knowledge management projects.&lt;/p&gt;

&lt;p&gt;Companies must clean their documentation, remove duplicate information, define clear policies, and continuously review failed conversations.&lt;/p&gt;

&lt;p&gt;Final Thoughts&lt;/p&gt;

&lt;p&gt;AI is not quietly replacing customer support.&lt;/p&gt;

&lt;p&gt;It is quietly automating the predictable parts of it.&lt;/p&gt;

&lt;p&gt;Platforms like Zendesk, Intercom, and Freshworks are turning support bots into agents that can understand questions, retrieve information, complete actions, and escalate when necessary.&lt;/p&gt;

&lt;p&gt;The goal should not be maximum automation.&lt;/p&gt;

&lt;p&gt;The goal should be reliable resolution.&lt;/p&gt;

&lt;p&gt;AI should handle repetitive work quickly, while humans remain responsible for the situations that require judgment, empathy, and accountability.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>discuss</category>
      <category>todayisearched</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I kept skipping events alone. So I built Evento to fix that.</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Sun, 07 Jun 2026 17:32:12 +0000</pubDate>
      <link>https://dev.to/nimay_04/i-kept-skipping-events-alone-so-i-built-evento-to-fix-that-fk6</link>
      <guid>https://dev.to/nimay_04/i-kept-skipping-events-alone-so-i-built-evento-to-fix-that-fk6</guid>
      <description>&lt;p&gt;For a long time I had a habit of finding events I was genuinely excited about and then not going.&lt;br&gt;
Not because I did not want to. Because my friends were busy. Or not interested. Or I just could not bring myself to walk into a room full of strangers alone.&lt;br&gt;
Concerts. Hackathons. Local treks. Community meetups. I would find them, get excited, and then talk myself out of going because I had no one to go with.&lt;br&gt;
At some point I asked myself a simple question. What if I could find someone else who is already going to that same event?&lt;br&gt;
That is Evento.&lt;br&gt;
It matches you with verified people going to the same events as you. Real profiles, verified users, no randomness. Whether you are introverted, shy, or just have a friend group that is always somehow busy on the exact weekend you want to do something, Evento is built for exactly that feeling.&lt;br&gt;
I am not building this for some abstract user persona. I built it because I was tired of skipping things I actually wanted to do.&lt;br&gt;
Launching in &lt;strong&gt;few days&lt;/strong&gt;. If this sounds like something you have needed, the waitlist is open right now.&lt;br&gt;
&lt;strong&gt;&lt;a href="https://evento.n1m35h.in/waitlist" rel="noopener noreferrer"&gt;https://evento.n1m35h.in/waitlist&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>discuss</category>
      <category>socialmedia</category>
      <category>productivity</category>
    </item>
    <item>
      <title>AI Companies Are Paying Millions for Your Old Reddit Posts. Here's Why That Should Concern You.</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Sat, 06 Jun 2026 10:06:04 +0000</pubDate>
      <link>https://dev.to/nimay_04/ai-companies-are-paying-millions-for-your-old-reddit-posts-heres-why-that-should-concern-you-4h5l</link>
      <guid>https://dev.to/nimay_04/ai-companies-are-paying-millions-for-your-old-reddit-posts-heres-why-that-should-concern-you-4h5l</guid>
      <description>&lt;p&gt;I am so tired of opening my code editor and seeing the same AI-generated dashboard. Same layout. Same gradient. Same components. It all looks like it came out of the same broken photocopier.&lt;/p&gt;

&lt;p&gt;Here is what is actually going on.&lt;/p&gt;

&lt;p&gt;Models trained on AI output degrade over time. Researchers call it model collapse. Every generation trained on synthetic data gets slightly worse than the last. Diversity drops. The weird, specific, human stuff disappears. Everything drifts toward a boring average.&lt;/p&gt;

&lt;p&gt;By April 2025, over 74% of newly created webpages had AI-generated text in them. Stack Overflow drowned in AI answers overnight. Content farms switched to pure synthetic output the moment it became cheap enough.&lt;/p&gt;

&lt;p&gt;The web is now mostly a mirror reflecting a mirror.&lt;/p&gt;

&lt;p&gt;So what are OpenAI, Google, and Anthropic doing about it? They are going back to the old internet. Pre-2022. Before the flood. Google signed a $60 million per year deal with Reddit just to access your old posts. OpenAI did the same. Anthropic got sued for taking it without asking.&lt;/p&gt;

&lt;p&gt;Your decade-old forum arguments and niche shitposts are now formally worth more than anything being written today. That is not an exaggeration. That is a business decision backed by hundreds of millions of dollars.&lt;/p&gt;

&lt;p&gt;Every boilerplate component you copy from an AI, every SEO article generated in bulk, every "here is a step by step guide" that reads like nothing, is feeding a loop that makes the whole thing worse.&lt;/p&gt;

&lt;p&gt;I do not have a clean solution to pitch at the end of this. I am just a developer who is bored and annoyed that genuine human output has become the scarce resource in a world drowning in content.&lt;/p&gt;

&lt;p&gt;Write something real. Even if it is ugly.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>ai</category>
      <category>machinelearning</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Vite Just Got a Bigger Engine: Why VoidZero Joining Cloudflare Matters</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Fri, 05 Jun 2026 12:33:31 +0000</pubDate>
      <link>https://dev.to/nimay_04/vite-just-got-a-bigger-engine-why-voidzero-joining-cloudflare-matters-3c54</link>
      <guid>https://dev.to/nimay_04/vite-just-got-a-bigger-engine-why-voidzero-joining-cloudflare-matters-3c54</guid>
      <description>&lt;p&gt;If you build frontend apps in 2026, there is a good chance Vite is somewhere in your workflow. Maybe directly. Maybe through your framework. Maybe through a test runner, plugin, or starter kit you barely think about anymore.&lt;/p&gt;

&lt;p&gt;That is why VoidZero joining Cloudflare is worth paying attention to.&lt;/p&gt;

&lt;p&gt;VoidZero is the team behind Vite, Vitest, Rolldown, Oxc, and Vite+. Cloudflare says those projects will stay open source, vendor-agnostic, and community-driven. The interesting part is not “company acquires tooling team.” The interesting part is what this signals for the next phase of JavaScript tooling: faster, more integrated, and closer to production runtimes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The JS toolchain is finally consolidating
&lt;/h2&gt;

&lt;p&gt;For years, frontend tooling felt like a group project where everyone submitted a different build system at 11:59 PM.&lt;/p&gt;

&lt;p&gt;Bundler here. Transpiler there. Test runner somewhere else. Dev server doing its own thing. Then your production runtime casually has different behavior because, of course, why not.&lt;/p&gt;

&lt;p&gt;Vite changed the default expectation: local dev should feel instant, framework authors should get a solid foundation, and teams should not need a PhD in build configs just to ship a button.&lt;/p&gt;

&lt;p&gt;VoidZero pushes that further with projects like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Vitest&lt;/strong&gt; for fast testing that feels native to Vite projects&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rolldown&lt;/strong&gt; as a Rust-powered bundler direction for the ecosystem&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Oxc&lt;/strong&gt; for fast parsing, transforming, linting, and formatting foundations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vite+&lt;/strong&gt; as a commercial layer around the open tooling&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The vibe is clear: less glue code, fewer duplicated pipelines, faster feedback loops.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Cloudflare is an interesting home
&lt;/h2&gt;

&lt;p&gt;Cloudflare has been leaning hard into developer infrastructure: Workers, Pages, D1, KV, R2, Durable Objects, Workflows, AI tooling, and local development around workerd.&lt;/p&gt;

&lt;p&gt;The key developer pain here is simple: local dev should match production more closely.&lt;/p&gt;

&lt;p&gt;Cloudflare’s Vite plugin already runs server code inside &lt;code&gt;workerd&lt;/code&gt;, the same open-source runtime model behind Workers. That means you can test platform features locally without pretending everything is just Node.js.&lt;/p&gt;

&lt;p&gt;That is a big deal. Ngl, “works locally, breaks in production” is one of the least funny recurring jokes in web dev.&lt;/p&gt;

&lt;h2&gt;
  
  
  What developers should actually do now
&lt;/h2&gt;

&lt;p&gt;Do not rewrite your stack because of one announcement. That is how we summon yak-shaving demons.&lt;/p&gt;

&lt;p&gt;Instead, make a small practical check:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm create vite@latest
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-D&lt;/span&gt; vitest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you are already on Vite, review whether your project still has old build/test glue that Vite-native tooling can replace. If you deploy to edge or serverless runtimes, check whether your framework has a runtime-aware Vite integration instead of relying on generic Node-only assumptions.&lt;/p&gt;

&lt;p&gt;Also, keep an eye on Rolldown and Oxc. Not because you need to migrate today, but because the performance work happening there will likely show up through frameworks and tools before most app teams touch it directly.&lt;/p&gt;

&lt;h2&gt;
  
  
  The takeaway
&lt;/h2&gt;

&lt;p&gt;VoidZero joining Cloudflare is not just frontend ecosystem gossip. It is another sign that the JavaScript toolchain is moving from “many separate tools wired together” toward “one faster pipeline from dev to deploy.”&lt;/p&gt;

&lt;p&gt;For developers, the win is simple: fewer weird config layers, faster feedback, and local environments that behave more like production.&lt;/p&gt;

&lt;p&gt;That is the kind of boring infrastructure improvement that quietly makes everyone ship better software. Lowkey, those are the best ones.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>cloudflare</category>
      <category>devtools</category>
    </item>
    <item>
      <title>Kubernetes Dashboard Is Passing the Baton — Headlamp Is the Upgrade Path</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Thu, 04 Jun 2026 12:34:18 +0000</pubDate>
      <link>https://dev.to/nimay_04/kubernetes-dashboard-is-passing-the-baton-headlamp-is-the-upgrade-path-f4m</link>
      <guid>https://dev.to/nimay_04/kubernetes-dashboard-is-passing-the-baton-headlamp-is-the-upgrade-path-f4m</guid>
      <description>&lt;p&gt;Kubernetes Dashboard has been that classic “first window into the cluster” for a lot of devs. You install it, click around pods and services, and suddenly Kubernetes feels less like dark magic.&lt;/p&gt;

&lt;p&gt;But the Kubernetes project is now clearly pointing users toward &lt;strong&gt;Headlamp&lt;/strong&gt; as the modern replacement path. And honestly? That makes sense.&lt;/p&gt;

&lt;p&gt;This is not just a UI swap. It is a small signal about where Kubernetes tooling is going: less “one built-in dashboard for everyone” and more &lt;strong&gt;extensible, safer, workflow-friendly interfaces&lt;/strong&gt; around real cluster operations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this shift matters
&lt;/h2&gt;

&lt;p&gt;The old Dashboard solved a real onboarding problem: “What is running in my cluster?”&lt;/p&gt;

&lt;p&gt;But production Kubernetes teams need more than that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;clearer visibility across namespaces and workloads&lt;/li&gt;
&lt;li&gt;safer access patterns for different users&lt;/li&gt;
&lt;li&gt;plugin-friendly workflows&lt;/li&gt;
&lt;li&gt;better alignment with modern cluster operations&lt;/li&gt;
&lt;li&gt;a UI that can grow without becoming a giant one-size-fits-all panel&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is where Headlamp is interesting. It is a CNCF project built as a Kubernetes UI that can be extended, embedded into workflows, and used across different cluster setups.&lt;/p&gt;

&lt;p&gt;Lowkey, this is exactly what Kubernetes tooling needed. Not another shiny control panel. A better foundation.&lt;/p&gt;

&lt;h2&gt;
  
  
  The practical developer takeaway
&lt;/h2&gt;

&lt;p&gt;If you are still using Kubernetes Dashboard for learning or lightweight inspection, you do not need to panic-migrate today.&lt;/p&gt;

&lt;p&gt;But if you are building team workflows, internal platforms, or anything close to production, start treating Headlamp as the thing to evaluate next.&lt;/p&gt;

&lt;p&gt;A simple migration mindset:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Learning cluster / quick inspection
  -&amp;gt; Dashboard is okay for now

Team platform / shared cluster UI
  -&amp;gt; Evaluate Headlamp

Production ops workflow
  -&amp;gt; Combine UI access with RBAC, audit logs, and CLI/GitOps flows
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The important part is not “UI vs CLI.” Real teams use both. The UI helps people understand and inspect. The CLI and GitOps pipelines keep changes controlled and repeatable.&lt;/p&gt;

&lt;h2&gt;
  
  
  Do not skip the boring security bits
&lt;/h2&gt;

&lt;p&gt;Any Kubernetes UI is only as safe as the permissions behind it.&lt;/p&gt;

&lt;p&gt;Before rolling one out, check:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does every user have the minimum RBAC they need?&lt;/li&gt;
&lt;li&gt;Are admin actions limited to the right people?&lt;/li&gt;
&lt;li&gt;Is access behind SSO or your normal identity layer?&lt;/li&gt;
&lt;li&gt;Can you audit who viewed or changed what?&lt;/li&gt;
&lt;li&gt;Are destructive actions restricted?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because a beautiful cluster UI with overpowered permissions is just a very polished footgun. Fr.&lt;/p&gt;

&lt;h2&gt;
  
  
  My take
&lt;/h2&gt;

&lt;p&gt;The Dashboard-to-Headlamp transition is a healthy move. Kubernetes is mature enough now that the default UX should not just be “show me objects.” It should support real operational workflows.&lt;/p&gt;

&lt;p&gt;For developers, the move is simple: keep using visual tools to learn faster, but design production access like an engineering system, not a convenience shortcut.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Actionable takeaway:&lt;/strong&gt; if your team exposes a Kubernetes UI, review the RBAC model this week and test Headlamp in a non-prod cluster before the migration becomes urgent.&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>devops</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Agent-Native Desktops Are Coming: Code Review Is the First Workflow to Fix</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Wed, 03 Jun 2026 12:32:46 +0000</pubDate>
      <link>https://dev.to/nimay_04/agent-native-desktops-are-coming-code-review-is-the-first-workflow-to-fix-m4n</link>
      <guid>https://dev.to/nimay_04/agent-native-desktops-are-coming-code-review-is-the-first-workflow-to-fix-m4n</guid>
      <description>&lt;p&gt;AI coding tools are moving from “chat box next to your editor” to something much more serious: agent-native developer environments.&lt;/p&gt;

&lt;p&gt;GitHub just pushed this direction hard with the Copilot app and desktop-style agent workflow announcements. OpenAI is also framing Codex as a broader productivity layer, not just a coding prompt. The signal is pretty clear: agents are becoming part of the work surface, not a side quest.&lt;/p&gt;

&lt;p&gt;That sounds futuristic, but for most teams the first real place to care is boring and practical: code review.&lt;/p&gt;

&lt;p&gt;The problem is not generation anymore&lt;/p&gt;

&lt;p&gt;Generating code is no longer the impressive part. Most teams already know an AI assistant can draft a component, write tests, explain a stack trace, or refactor a file.&lt;/p&gt;

&lt;p&gt;The messy part is everything after generation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which agent changed what?&lt;/li&gt;
&lt;li&gt;Did it understand the existing architecture?&lt;/li&gt;
&lt;li&gt;Are the tests meaningful or just green-looking?&lt;/li&gt;
&lt;li&gt;Is the diff safe enough to merge?&lt;/li&gt;
&lt;li&gt;Who owns the final decision?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Ngl, this is where “AI boosted my productivity” can quietly become “AI created a review queue I do not trust.”&lt;/p&gt;

&lt;p&gt;Agent-native means workflow-native&lt;/p&gt;

&lt;p&gt;An agent-native desktop should not just be a nicer chat UI. The useful version gives agents a real workflow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Task context: issue, branch, constraints, and acceptance criteria&lt;/li&gt;
&lt;li&gt;Workspace access: repo, terminal, tests, docs, and dependency graph&lt;/li&gt;
&lt;li&gt;Change tracking: clean diffs, summaries, and decisions made&lt;/li&gt;
&lt;li&gt;Review gates: lint, tests, security checks, human approval&lt;/li&gt;
&lt;li&gt;Memory boundaries: what the agent can reuse, forget, or escalate&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That is the difference between “vibe coding with a powerful autocomplete” and “delegating a small engineering task with guardrails.”&lt;/p&gt;

&lt;p&gt;Start with the review loop&lt;/p&gt;

&lt;p&gt;If your team wants to adopt agentic coding without chaos, do not begin by letting agents ship bigger features. Begin by making reviews easier to trust.&lt;/p&gt;

&lt;p&gt;A practical setup can be simple:&lt;/p&gt;

&lt;p&gt;agent_review:&lt;br&gt;
  required:&lt;br&gt;
    - summarize_diff&lt;br&gt;
    - list_risk_areas&lt;br&gt;
    - run_tests&lt;br&gt;
    - flag_security_sensitive_files&lt;br&gt;
    - explain_remaining_uncertainty&lt;br&gt;
  human_decision: required&lt;/p&gt;

&lt;p&gt;The magic is not the YAML. The magic is forcing the agent to show its work before a human approves the merge.&lt;/p&gt;

&lt;p&gt;What developers should watch next&lt;/p&gt;

&lt;p&gt;The next wave of dev tools will compete on orchestration, not just model quality. The best tools will help us manage multiple small agents, compare their changes, rerun checks, and keep review context visible.&lt;/p&gt;

&lt;p&gt;That is a big deal because developers do not need more random AI output. We need tighter loops, cleaner diffs, and less context switching.&lt;/p&gt;

&lt;p&gt;Takeaway&lt;/p&gt;

&lt;p&gt;Agent-native desktops are worth watching, but do not wait for the perfect tool. Start designing your workflow like agents are junior teammates: give them scoped tasks, require evidence, and keep humans in charge of merge decisions.&lt;/p&gt;

&lt;p&gt;That is how AI coding becomes useful in real teams: not louder, just safer and smoother.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>github</category>
      <category>devtools</category>
      <category>programming</category>
    </item>
    <item>
      <title>Stop Shipping Blob Tokens: OIDC Is the Cleaner Deploy Secret</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Tue, 02 Jun 2026 12:34:29 +0000</pubDate>
      <link>https://dev.to/nimay_04/stop-shipping-blob-tokens-oidc-is-the-cleaner-deploy-secret-1i19</link>
      <guid>https://dev.to/nimay_04/stop-shipping-blob-tokens-oidc-is-the-cleaner-deploy-secret-1i19</guid>
      <description>&lt;p&gt;Ngl, one of the easiest ways to make a deployment pipeline sketchy is to give it a long-lived storage token and hope nobody ever leaks it.&lt;/p&gt;

&lt;p&gt;That pattern is still everywhere: CI uploads static assets, build artifacts, screenshots, or user-facing files to some blob bucket, and the workflow stores a token in &lt;code&gt;secrets.BLOB_TOKEN&lt;/code&gt; forever.&lt;/p&gt;

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

&lt;p&gt;It also quietly creates a key that can outlive the job, the branch, the intern who created it, and sometimes the entire project. Big yikes.&lt;/p&gt;

&lt;p&gt;The better pattern that keeps showing up across modern platforms is &lt;strong&gt;OIDC-based deploy auth&lt;/strong&gt;: your CI job proves who it is, asks the provider for short-lived access, does the upload, and disappears.&lt;/p&gt;

&lt;h2&gt;
  
  
  The old flow
&lt;/h2&gt;

&lt;p&gt;Most teams start here:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Upload assets&lt;/span&gt;
  &lt;span class="na"&gt;env&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;BLOB_TOKEN&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ secrets.BLOB_TOKEN }}&lt;/span&gt;
  &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;npm run upload-assets&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Simple, but the risk is obvious:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the token sits in your repo/org secrets forever&lt;/li&gt;
&lt;li&gt;rotation becomes another chore nobody owns&lt;/li&gt;
&lt;li&gt;leaked logs, compromised runners, or copied workflows can turn into real access&lt;/li&gt;
&lt;li&gt;every workflow tends to get more permission than it actually needs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For a side project, maybe that feels acceptable. For production pipelines, it becomes tech debt with security vibes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The OIDC flow
&lt;/h2&gt;

&lt;p&gt;With OIDC, GitHub Actions or another CI provider can request an identity token for the current job. The cloud/storage platform verifies claims like repo, branch, environment, and workflow, then issues temporary credentials.&lt;/p&gt;

&lt;p&gt;The workflow shape becomes closer to this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;permissions&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;id-token&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;write&lt;/span&gt;
  &lt;span class="na"&gt;contents&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;read&lt;/span&gt;

&lt;span class="na"&gt;jobs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;upload&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;runs-on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ubuntu-latest&lt;/span&gt;
    &lt;span class="na"&gt;steps&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/checkout@v4&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Upload assets with short-lived auth&lt;/span&gt;
        &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;npm run upload-assets&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The actual provider setup differs, but the idea is the same: &lt;strong&gt;trust the workload identity, not a copied secret string&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This is why recent platform updates around OIDC for blob/storage workflows are worth paying attention to. They are not just “nice auth features.” They are a signal that deployment secrets are moving from static keys to verified, short-lived identity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why developers should care
&lt;/h2&gt;

&lt;p&gt;This is not only a security-team thing.&lt;/p&gt;

&lt;p&gt;OIDC makes day-to-day engineering cleaner:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;fewer secrets to create, share, rotate, and audit&lt;/li&gt;
&lt;li&gt;safer preview deployments from protected branches or environments&lt;/li&gt;
&lt;li&gt;tighter permissions per repo/workflow instead of one mega-token&lt;/li&gt;
&lt;li&gt;less panic when someone accidentally prints an env var in CI&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tbh, the best security improvements are the ones that remove a thing you had to remember. OIDC does exactly that.&lt;/p&gt;

&lt;h2&gt;
  
  
  A quick migration checklist
&lt;/h2&gt;

&lt;p&gt;If your build uploads anything to blob storage, artifact storage, package registries, or cloud buckets, check this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Is the workflow using a long-lived token?&lt;/li&gt;
&lt;li&gt;Does the provider support OIDC or workload identity federation?&lt;/li&gt;
&lt;li&gt;Can access be scoped by repo, branch, workflow, or environment?&lt;/li&gt;
&lt;li&gt;Can the token be removed after the OIDC path works?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Do not migrate everything in one heroic PR. Pick one low-risk upload job, move it to OIDC, and document the pattern for the next workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  The takeaway
&lt;/h2&gt;

&lt;p&gt;Long-lived deploy tokens were convenient when CI/CD was simpler.&lt;/p&gt;

&lt;p&gt;But now that pipelines publish assets, trigger releases, talk to AI services, and touch production infra, “just store a token” is starting to look outdated.&lt;/p&gt;

&lt;p&gt;If a platform gives you OIDC for deploy-time storage access, use it. Your future self will have one less secret to babysit — and that is a clean W.&lt;/p&gt;

</description>
      <category>security</category>
      <category>webdev</category>
      <category>devops</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Multi-Agent Code Reviews Need Pipelines, Not Vibes</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Mon, 01 Jun 2026 12:36:23 +0000</pubDate>
      <link>https://dev.to/nimay_04/your-internal-tools-need-an-agent-api-not-another-dashboard-107n</link>
      <guid>https://dev.to/nimay_04/your-internal-tools-need-an-agent-api-not-another-dashboard-107n</guid>
      <description>&lt;p&gt;Most teams are about to hit the same AI coding problem: one agent can write a lot of code, but it cannot be the only judge of its own work.&lt;/p&gt;

&lt;p&gt;That is where multi-agent review starts to matter.&lt;/p&gt;

&lt;p&gt;The next useful dev workflow is not “ask the model to be careful.” It is a pipeline where different agents own different checks, and boring deterministic tools still do the boring deterministic work.&lt;/p&gt;

&lt;h2&gt;
  
  
  The single-agent trap
&lt;/h2&gt;

&lt;p&gt;A coding agent can implement a feature, update tests, and explain the diff. That is already powerful.&lt;/p&gt;

&lt;p&gt;But if the same agent writes the code, reviews the architecture, checks security, decides whether tests are enough, and summarizes the risk, you are basically asking one intern to approve their own pull request.&lt;/p&gt;

&lt;p&gt;That is not a workflow. That is optimism with a CLI.&lt;/p&gt;

&lt;h2&gt;
  
  
  A better pattern
&lt;/h2&gt;

&lt;p&gt;Think of AI agents like specialized reviewers in your engineering loop:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Implementation agent:&lt;/strong&gt; writes the first version of the change.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Test agent:&lt;/strong&gt; looks for missing cases, edge conditions, and regression gaps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security agent:&lt;/strong&gt; checks auth paths, secrets, injection risks, unsafe dependencies, and data exposure.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Architecture agent:&lt;/strong&gt; watches for coupling, weird abstractions, and changes that fight the existing system.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Summary agent:&lt;/strong&gt; turns the mess into one clean PR comment humans can actually use.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The point is not to add AI everywhere. The point is to stop pretending one model pass is enough.&lt;/p&gt;

&lt;h2&gt;
  
  
  CI is the control plane
&lt;/h2&gt;

&lt;p&gt;The cleanest place to run this is still CI.&lt;/p&gt;

&lt;p&gt;A practical pull request flow can look like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Run lint, type checks, unit tests, and build checks.&lt;/li&gt;
&lt;li&gt;Trigger focused AI reviewers only after the deterministic checks finish.&lt;/li&gt;
&lt;li&gt;Give each reviewer a narrow prompt and a narrow permission scope.&lt;/li&gt;
&lt;li&gt;Collect findings into one review summary.&lt;/li&gt;
&lt;li&gt;Escalate only the risky or uncertain parts to a human.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This keeps the workflow grounded. Traditional tools catch facts. Agents catch judgment-heavy issues.&lt;/p&gt;

&lt;h2&gt;
  
  
  MCP makes this easier, but also riskier
&lt;/h2&gt;

&lt;p&gt;With MCP and similar tool layers, agents can access GitHub, CI logs, docs, issue trackers, observability tools, and internal systems through a standard interface.&lt;/p&gt;

&lt;p&gt;That is exactly why the pattern is useful.&lt;/p&gt;

&lt;p&gt;It is also exactly why permissions matter.&lt;/p&gt;

&lt;p&gt;Start read-only. Log every tool call. Scope access to specific repos and workflows. Do not give an AI reviewer write access just because the demo looked clean. If it can comment on a PR, that is already useful. If it can merge, deploy, or mutate infrastructure, that needs a much higher bar.&lt;/p&gt;

&lt;h2&gt;
  
  
  The real upgrade
&lt;/h2&gt;

&lt;p&gt;The future of AI coding is not one giant prompt that does everything.&lt;/p&gt;

&lt;p&gt;It is smaller agents, clearer jobs, shared context, deterministic checks, and human attention saved for the decisions that actually need taste.&lt;/p&gt;

&lt;p&gt;Multi-agent code review is not about replacing review culture.&lt;/p&gt;

&lt;p&gt;It is about making review culture scale when AI starts generating more code than humans can comfortably inspect line by line.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>devtools</category>
      <category>cicd</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Markdown Is Becoming the AI App Interface</title>
      <dc:creator>Nimesh Kulkarni</dc:creator>
      <pubDate>Sun, 31 May 2026 12:35:12 +0000</pubDate>
      <link>https://dev.to/nimay_04/markdown-is-becoming-the-ai-app-interface-4209</link>
      <guid>https://dev.to/nimay_04/markdown-is-becoming-the-ai-app-interface-4209</guid>
      <description>&lt;p&gt;A quiet developer pattern is getting louder: Markdown is becoming the interface layer for AI apps.&lt;/p&gt;

&lt;p&gt;Microsoft's &lt;code&gt;markitdown&lt;/code&gt; project has been trending because it solves a boring problem that keeps showing up in real products: how do you turn PDFs, Word files, slide decks, spreadsheets, and HTML pages into something an AI system can actually use?&lt;/p&gt;

&lt;p&gt;The answer is not glamorous. Convert the mess into Markdown.&lt;/p&gt;

&lt;p&gt;That sounds too simple, but it works because AI apps do not fail only at the model layer. They fail when the input is messy, hidden, lossy, or impossible to inspect.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Markdown keeps winning
&lt;/h2&gt;

&lt;p&gt;Markdown has a boring superpower: everyone can read it.&lt;/p&gt;

&lt;p&gt;A developer can open it in a terminal. Git can diff it. Static sites can render it. LLMs can follow headings, lists, code blocks, and links without needing a custom parser for every file type.&lt;/p&gt;

&lt;p&gt;That makes Markdown a solid handoff format between real-world documents and AI workflows.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PDF / DOCX / PPTX / HTML
        ↓
Markdown
        ↓
cleanup + validation
        ↓
search, RAG, summaries, agents, docs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The important part is not "Markdown is cool." The important part is that Markdown gives your pipeline a visible middle layer.&lt;/p&gt;

&lt;p&gt;If the output is bad, you can inspect the Markdown and see where the context broke.&lt;/p&gt;

&lt;h2&gt;
  
  
  The use case that matters
&lt;/h2&gt;

&lt;p&gt;Imagine an internal AI assistant for a support or engineering team.&lt;/p&gt;

&lt;p&gt;The source material is never clean. There are old onboarding docs, customer PDFs, policy pages, architecture notes, product specs, and random exports from tools nobody wants to maintain.&lt;/p&gt;

&lt;p&gt;Without a common format, every file type becomes a separate problem.&lt;/p&gt;

&lt;p&gt;With Markdown, the flow is simpler:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;markitdown product-spec.pdf &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; product-spec.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then the app can clean it, split it by headings, index it, summarize it, or pass selected sections into an agent.&lt;/p&gt;

&lt;p&gt;That is the real win. Markdown becomes the boring contract between messy documents and useful AI behavior.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where this helps right now
&lt;/h2&gt;

&lt;p&gt;This pattern is useful when teams want to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;turn support docs into searchable knowledge&lt;/li&gt;
&lt;li&gt;feed architecture notes into coding agents&lt;/li&gt;
&lt;li&gt;migrate old documents into a docs site&lt;/li&gt;
&lt;li&gt;build lightweight internal knowledge bases&lt;/li&gt;
&lt;li&gt;keep AI context auditable instead of hiding it inside a black-box parser&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The last point matters. When an AI answer is wrong, the team needs to debug the context, not just blame the model.&lt;/p&gt;

&lt;p&gt;If the context is Markdown, you can read it. You can diff it. You can fix it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The trap
&lt;/h2&gt;

&lt;p&gt;Conversion is not magic.&lt;/p&gt;

&lt;p&gt;Tables can break. Scanned PDFs may need OCR. Images can disappear. Slide decks can lose structure. Footnotes can land in weird places.&lt;/p&gt;

&lt;p&gt;So the pipeline should not be:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;convert -&amp;gt; trust blindly -&amp;gt; ship
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It should be:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;convert -&amp;gt; validate -&amp;gt; normalize -&amp;gt; use
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A small validation step saves a lot of weird AI behavior later.&lt;/p&gt;

&lt;h2&gt;
  
  
  Takeaway
&lt;/h2&gt;

&lt;p&gt;Markdown is becoming more than a writing format. It is becoming a practical interface for AI apps.&lt;/p&gt;

&lt;p&gt;Before adding another vector database, agent framework, or prompt trick, check the boring thing first: is the input clean, readable, and inspectable?&lt;/p&gt;

&lt;p&gt;Most AI products get better when the context gets better. Markdown is one of the simplest ways to make that happen.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>markdown</category>
      <category>productivity</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
