<?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: shiva nampalli</title>
    <description>The latest articles on DEV Community by shiva nampalli (@shiva_nampalli_502c805999).</description>
    <link>https://dev.to/shiva_nampalli_502c805999</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%2F4033916%2F0a18e0d3-d924-4bc3-8985-5bcd0078c720.png</url>
      <title>DEV Community: shiva nampalli</title>
      <link>https://dev.to/shiva_nampalli_502c805999</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shiva_nampalli_502c805999"/>
    <language>en</language>
    <item>
      <title>Do your tool-using agents re-plan the same task every single time?</title>
      <dc:creator>shiva nampalli</dc:creator>
      <pubDate>Fri, 17 Jul 2026 12:57:53 +0000</pubDate>
      <link>https://dev.to/shiva_nampalli_502c805999/do-your-tool-using-agents-re-plan-the-same-task-every-single-time-3hbj</link>
      <guid>https://dev.to/shiva_nampalli_502c805999/do-your-tool-using-agents-re-plan-the-same-task-every-single-time-3hbj</guid>
      <description>&lt;p&gt;I've been building agents for a while and one thing keeps bugging me: for a tool-using agent (ReAct / LangGraph / OpenAI tools), the expensive part isn't the final answer — it's the planning loop. All those back-and-forth LLM calls to figure out which tools to call in what order. And we throw that plan away after every task.&lt;/p&gt;

&lt;p&gt;So the 50th time the agent does "pull active users → filter → export CSV", it re-derives the whole plan from scratch and pays full LLM cost again. Same workflow, slightly different inputs, full price, every time. And it's non-deterministic, so sometimes it takes a dumb path.&lt;/p&gt;

&lt;p&gt;Existing memory tools (Mem0, Zep, vector RAG) mostly store text/facts — "what the user said." They don't capture the procedure that worked and replay it.&lt;/p&gt;

&lt;p&gt;A few honest questions for people running agents in prod:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;What actually happens the second/50th time your agent hits the same kind of task? Does it re-plan?&lt;/li&gt;
&lt;li&gt;Roughly what fraction of your agent traffic is repetitive / same-shape-different-values?&lt;/li&gt;
&lt;li&gt;Have you already hacked around this (growing "lessons" prompt, few-shot skill file, caching)? What broke?&lt;/li&gt;
&lt;li&gt;If something cut your planning/LLM calls ~30–45% at the same success rate — would that be worth paying?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Not selling anything, genuinely trying to validate whether this is a real, expensive, top-of-mind problem.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>memory</category>
      <category>selfimprovingagent</category>
    </item>
  </channel>
</rss>
