<?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: Juan Saez</title>
    <description>The latest articles on DEV Community by Juan Saez (@saez520).</description>
    <link>https://dev.to/saez520</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%2F3663214%2F92edb0a3-4836-4a64-a5f9-235d07e61f4b.jpg</url>
      <title>DEV Community: Juan Saez</title>
      <link>https://dev.to/saez520</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/saez520"/>
    <language>en</language>
    <item>
      <title>Why Your Multi-Turn AI Agents Lose Their Train of Thought (And How to Fix It)</title>
      <dc:creator>Juan Saez</dc:creator>
      <pubDate>Wed, 10 Jun 2026 15:36:09 +0000</pubDate>
      <link>https://dev.to/saez520/why-your-multi-turn-ai-agents-lose-their-train-of-thought-and-how-to-fix-it-4be2</link>
      <guid>https://dev.to/saez520/why-your-multi-turn-ai-agents-lose-their-train-of-thought-and-how-to-fix-it-4be2</guid>
      <description>&lt;h2&gt;
  
  
  1. The Agent That Forgot Everything
&lt;/h2&gt;

&lt;p&gt;I have an agent that clarifies requirements. I give it a problem, it asks questions, I answer, it refines, and after three or four rounds it should have a spec ready. Simple.&lt;/p&gt;

&lt;p&gt;Round one works fine. It asks reasonable questions. I answer. But when I ask it to continue — same session, same agent, next step in the pipeline — the clarifier starts from scratch. It repeats questions I already answered. It ignores constraints we already agreed on. Sometimes it contradicts its own analysis from five minutes ago.&lt;/p&gt;

&lt;p&gt;This isn't an LLM bug. It's an architecture problem. Claude Code, OpenCode, and pretty much any coding agent that delegates work to subagents shares the same behavior: every invocation of a subagent — even the same one, to continue a conversation — creates a &lt;strong&gt;brand new session&lt;/strong&gt;. No history. No context. No memory of what that subagent already thought, asked, or decided.&lt;/p&gt;

&lt;p&gt;The good news: the infrastructure to fix this already exists in these tools. It's just that nobody uses it by default.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. How Coding Agents Delegate
&lt;/h2&gt;

&lt;p&gt;The pattern is the same everywhere. A main agent receives your prompt, reasons about it, and when it needs specialized help, it calls a delegation tool — typically named &lt;code&gt;task()&lt;/code&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// OpenCode — tool/task.ts, lines 144-155&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;session&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;taskID&lt;/span&gt;
  &lt;span class="p"&gt;?&lt;/span&gt; &lt;span class="k"&gt;yield&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;sessions&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;SessionID&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;make&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;taskID&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
      &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;pipe&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;Effect&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;catchCause&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;Effect&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;succeed&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kc"&gt;undefined&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;
  &lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;undefined&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;nextSession&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt;
  &lt;span class="nx"&gt;session&lt;/span&gt; &lt;span class="o"&gt;??&lt;/span&gt;                    &lt;span class="c1"&gt;// If it exists, reuse it&lt;/span&gt;
  &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;yield&lt;/span&gt;&lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;sessions&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;create&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;     &lt;span class="c1"&gt;// Otherwise, create a new one&lt;/span&gt;
    &lt;span class="na"&gt;parentID&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;ctx&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;sessionID&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;params.description + ` (@${next.name} subagent)`,&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
    &lt;span class="na"&gt;permission&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[...],&lt;/span&gt;
  &lt;span class="p"&gt;}))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here's the flow: the LLM decides to call &lt;code&gt;task()&lt;/code&gt;, the system looks up the subagent definition (permissions, model, system prompt), creates a new session with &lt;code&gt;parentID&lt;/code&gt; pointing to the main session, and kicks off an independent LLM loop. The subagent does its work, returns the result, and the main agent continues.&lt;/p&gt;

&lt;p&gt;Claude Code exposes &lt;code&gt;resume: sessionId&lt;/code&gt; in its SDK for exactly this — the same pattern: pass the session ID and the agent resumes with full history; omit it and a new session is created. OpenCode has the &lt;code&gt;task_id&lt;/code&gt; parameter that lets you resume an existing session, but &lt;strong&gt;if you don't explicitly pass it, the system creates a new session&lt;/strong&gt;. And since the main agent — the one calling &lt;code&gt;task()&lt;/code&gt; — has no way of knowing which &lt;code&gt;task_id&lt;/code&gt; it used last time, the default wins every time.&lt;/p&gt;

&lt;p&gt;The subagent gets called, works, finishes. The next time you need it — even if it's the exact same agent to continue the exact same conversation — it's born with no past.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. What Actually Happens to the Session
&lt;/h2&gt;

&lt;p&gt;Here's what I found when I dug into OpenCode's source code: the infrastructure &lt;strong&gt;already persists everything&lt;/strong&gt;. The problem isn't technical — it's a design choice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Finding 1: Sessions store EVERYTHING.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;OpenCode persists sessions in SQLite. Every message, every tool call, every output, every step of reasoning gets recorded:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;SessionTable         MessageTable          PartTable
────────────         ────────────          ─────────
id (PK)              id (PK)               id (PK)
parent_id (FK→self)  session_id (FK)       message_id (FK)
title                data (JSON)           session_id (FK)
agent                                      data (JSON)
time_created                               ↑ text | tool | reasoning
time_updated                               ↑ snapshots | patches
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When a subagent executes 15 tool calls, analyzes 8 files, and produces a 500-word response — all of it lands on disk. And it stays there.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Finding 2: Subagents can't delete their sessions.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Subagents' default permissions don't include &lt;code&gt;task&lt;/code&gt; or &lt;code&gt;todowrite&lt;/code&gt;. There is no &lt;code&gt;end_session&lt;/code&gt;, &lt;code&gt;close&lt;/code&gt;, &lt;code&gt;terminate&lt;/code&gt;, or anything similar. A subagent cannot — by accident or by design — destroy its own session.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Finding 3: The LLM loop exits — it doesn't destroy.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When the subagent finishes responding, the main loop checks an exit condition:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// OpenCode — prompt.ts, lines 1267-1274&lt;/span&gt;
&lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="nx"&gt;lastAssistant&lt;/span&gt;&lt;span class="p"&gt;?.&lt;/span&gt;&lt;span class="nx"&gt;finish&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt;
  &lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;tool-calls&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="nf"&gt;includes&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;lastAssistant&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;finish&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt;
  &lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;hasToolCalls&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt;
  &lt;span class="nx"&gt;lastUser&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="nx"&gt;lastAssistant&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;break&lt;/span&gt;  &lt;span class="c1"&gt;// ← Exits the loop. Nothing else.&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That &lt;code&gt;break&lt;/code&gt; doesn't call &lt;code&gt;sessions.remove()&lt;/code&gt;. It doesn't archive the session. It doesn't touch a single field in the database. The in-memory runner cleans itself up, but in SQLite the session sits there intact, with all its messages.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Finding 4: No TTL, no timeout, no automatic cleanup.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I searched for &lt;code&gt;ttl&lt;/code&gt;, &lt;code&gt;expir&lt;/code&gt;, &lt;code&gt;timeout.*session&lt;/code&gt;, &lt;code&gt;auto.*delete&lt;/code&gt; across the entire codebase. Zero results for sessions. Sessions live until someone deletes them manually. They don't expire.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The irony&lt;/strong&gt;: the infrastructure already does exactly what we need. It persists context. It keeps the history. It destroys nothing. You just need to ask it to reuse a session. And all it takes is passing the right &lt;code&gt;task_id&lt;/code&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. The Handshake: 200 Lines That Change Everything
&lt;/h2&gt;

&lt;p&gt;The problem isn't one of capability — it's one of &lt;strong&gt;indexing&lt;/strong&gt;. OpenCode can persist sessions and resume them if you pass a &lt;code&gt;task_id&lt;/code&gt;. What it can't do is answer questions like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Give me the session for spec-42's clarifier"&lt;/li&gt;
&lt;li&gt;"Has spec-42's constructor finished?"&lt;/li&gt;
&lt;li&gt;"Resume the conversation with the planner where we left off"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To OpenCode, a session is &lt;code&gt;ses_1d6f79327ffe7JM4ZcELwlMV0D&lt;/code&gt;. It doesn't know what "spec-42" is, which agent ran in that session, or which step of the workflow you're on. That's domain knowledge.&lt;/p&gt;

&lt;p&gt;The handshake is the layer that translates domain knowledge into session references. Three functions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Discovery&lt;/strong&gt;: given a spec ID, find the right session's &lt;code&gt;task_id&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Naming&lt;/strong&gt;: instead of &lt;code&gt;ses_1d6f79327ffe&lt;/code&gt;, you see &lt;code&gt;Kael-planner&lt;/code&gt;, &lt;code&gt;Aitana-validator&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Orchestration state&lt;/strong&gt;: is the planner running? Did the validator approve?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The analogy is DNS. A web server can serve content if you give it the right IP. DNS translates &lt;code&gt;github.com&lt;/code&gt; to &lt;code&gt;140.82.121.3&lt;/code&gt;. The handshake translates &lt;code&gt;spec-42 → constructor&lt;/code&gt; to &lt;code&gt;ses_1d6e78035ffe&lt;/code&gt;. It doesn't replace persistence. It complements it.&lt;/p&gt;

&lt;p&gt;In practice, two scenarios:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Scenario A — New&lt;/strong&gt;: No &lt;code&gt;task_id&lt;/code&gt; exists for this agent. Call &lt;code&gt;task()&lt;/code&gt; normally. Capture the &lt;code&gt;task_id&lt;/code&gt; from the response. Persist it in a map: &lt;code&gt;"spec-42/constructor" → "ses_1d6e78035ffe"&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Scenario B — Resume&lt;/strong&gt;: A &lt;code&gt;task_id&lt;/code&gt; already exists. Retrieve it from the map. Call &lt;code&gt;task()&lt;/code&gt; with that &lt;code&gt;task_id&lt;/code&gt;. OpenCode loads the full session. The agent doesn't "remember" by magic — it sees its entire history.&lt;/p&gt;

&lt;p&gt;The result: a 5-agent pipeline (clarifier → planner → auditor → constructor → validator) where each agent can resume with full context. Seven iterations on the same spec without losing a single reference.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. Three Benefits You Didn't Expect
&lt;/h2&gt;

&lt;p&gt;The obvious benefit is that the agent stops repeating questions. But there are three more that only show up in production.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fewer tokens, lower latency.&lt;/strong&gt; When an agent resumes its session, it doesn't need to re-run &lt;code&gt;grep&lt;/code&gt; to find the relevant files, re-read documentation it already read, or re-analyze code it already understood. All of that is in the tool call history. Every tool call not re-executed is tokens saved and seconds the user doesn't wait for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real iterative refinement.&lt;/strong&gt; A clarifier that goes through three rounds of questions sharpens its understanding each time. Without session continuity, round three is just as generic as round one — the agent doesn't know what it already asked or what you already answered. With it, each iteration builds on the last.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Auditability.&lt;/strong&gt; When something goes wrong, the session history shows you exactly what the agent did, which tools it used, and why. Without continuity, that record fragments into orphaned sessions. With the handshake, you have a traceable reasoning chain end to end.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. This Isn't New — The Industry Already Does It
&lt;/h2&gt;

&lt;p&gt;What's interesting isn't that it works. It's that &lt;strong&gt;the industry already solved this problem with the same pattern&lt;/strong&gt; — just with more infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;LangGraph&lt;/strong&gt; implements checkpoints with &lt;code&gt;thread_id&lt;/code&gt; + &lt;code&gt;checkpointer&lt;/code&gt;. The &lt;code&gt;thread_id&lt;/code&gt; is the direct equivalent of our &lt;code&gt;task_id&lt;/code&gt;. The difference is that LangGraph needs you to configure &lt;code&gt;SqliteSaver&lt;/code&gt; or &lt;code&gt;PostgresSaver&lt;/code&gt; — FlowTask uses OpenCode's SQLite, which was already there. &lt;a href="https://langchain-ai.github.io/langgraph/concepts/persistence/" rel="noopener noreferrer"&gt;[docs]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Temporal&lt;/strong&gt; runs workflows with &lt;em&gt;durable execution&lt;/em&gt;: when a worker crashes at step 5 of 10, another worker picks up the workflow, replays the event history from the beginning, skips already-completed activities, and resumes from the last checkpoint. OpenCode solves the same conceptual problem — use history to avoid repeating completed work — at the LLM context level. The difference: Temporal guarantees this against infrastructure failures with deterministic replay; OpenCode does it at the conversational context layer of the LLM. &lt;a href="https://docs.temporal.io/encyclopedia/detecting-workflow-reset" rel="noopener noreferrer"&gt;[docs]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Microsoft Agent Framework&lt;/strong&gt; defines &lt;em&gt;supersteps&lt;/em&gt; with checkpoint storage: each superstep captures the full state upon completion. Each agent in our pipeline is a superstep that persists its state when done. &lt;a href="https://learn.microsoft.com/en-us/agent-framework/workflows/checkpoints" rel="noopener noreferrer"&gt;[docs]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The difference: FlowTask solves it with 200 lines of protocol. Your tool already has the rest.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. Conclusion
&lt;/h2&gt;

&lt;p&gt;Session continuity isn't an infrastructure problem — it's a design omission. The tools already persist all the context. All that's missing is the handshake that reuses it.&lt;/p&gt;

&lt;p&gt;If your agents depend on multi-turn reasoning, don't accept the default of a fresh session every time.&lt;/p&gt;

&lt;p&gt;The full pattern is implemented in &lt;a href="https://github.com/Saez520/FlowTask" rel="noopener noreferrer"&gt;FlowTask&lt;/a&gt; for reference.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;LangGraph&lt;/strong&gt; implements checkpoints with &lt;code&gt;thread_id&lt;/code&gt; + &lt;code&gt;checkpointer&lt;/code&gt;. The &lt;code&gt;thread_id&lt;/code&gt; is the direct equivalent of our &lt;code&gt;task_id&lt;/code&gt;. The difference is that LangGraph needs you to configure &lt;code&gt;SqliteSaver&lt;/code&gt; or &lt;code&gt;PostgresSaver&lt;/code&gt; — FlowTask uses OpenCode's SQLite, which was already there. &lt;a href="https://langchain-ai.github.io/langgraph/concepts/persistence/" rel="noopener noreferrer"&gt;[docs]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Temporal&lt;/strong&gt; runs workflows with &lt;em&gt;durable execution&lt;/em&gt;: when a worker crashes at step 5 of 10, another worker picks up the workflow, replays the event history from the beginning, skips already-completed activities, and resumes from the last checkpoint. OpenCode solves the same conceptual problem — use history to avoid repeating completed work — at the LLM context level. The difference: Temporal guarantees this against infrastructure failures with deterministic replay; OpenCode does it at the conversational context layer of the LLM. &lt;a href="https://docs.temporal.io/encyclopedia/detecting-workflow-reset" rel="noopener noreferrer"&gt;[docs]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Microsoft Agent Framework&lt;/strong&gt; defines &lt;em&gt;supersteps&lt;/em&gt; with checkpoint storage: each superstep captures the full state upon completion. Each agent in our pipeline is a superstep that persists its state when done. &lt;a href="https://learn.microsoft.com/en-us/agent-framework/workflows/checkpoints" rel="noopener noreferrer"&gt;[docs]&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The difference: FlowTask solves it with 200 lines of protocol. Your tool already has the rest.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. Conclusion
&lt;/h2&gt;

&lt;p&gt;Session continuity isn't an infrastructure problem — it's a design omission. The tools already persist all the context. All that's missing is the handshake that reuses it.&lt;/p&gt;

&lt;p&gt;If your agents depend on multi-turn reasoning, don't accept the default of a fresh session every time.&lt;/p&gt;

&lt;p&gt;The full pattern is implemented in &lt;a href="https://github.com/Saez520/FlowTask" rel="noopener noreferrer"&gt;FlowTask&lt;/a&gt; for reference.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>architecture</category>
      <category>llm</category>
    </item>
  </channel>
</rss>
