← All concepts

multi turn conversation management

441 articles · 15 co-occurring · 10 contradictions · 135 briefs

The `/goal` feature is a concrete implementation pattern for maintaining coherent multi-turn conversations without manual re-prompting.

@doodlestein: Oh look, a worse version of beads, a full year later.

Traditional multi-turn assumes you preserve conversation history; SKILL.state shows you should discard it and use explicit state instead.

@vishal_dubey: As these "Super App" platforms fight for knowledge workers, one thing that do...

Super App platforms claim to manage agent conversations across tools, but vendor lock-in limits which agents/models can participate in those conversations. The managed context is artificially constrained.

@kotekjedi_ml: But we also took a chance to have a look at some in-the-wild scheming, reward...

Shows that even within a single reasoning chain, context can degrade. Challenges assumption that longer context windows alone solve the problem if intermediate states aren't preserved.

@CoreyGallon: A model deleted one of @headinthebox's files while he was building the slides...

Suggests that naive context accumulation in multi-turn conversations can compound unsafe behaviors if tool access isn't constrained per-turn

The Model Context Protocol: Getting beneath the hype | Thoughtworks

Article does not address how MCP maintains state/context across multi-turn conversations. MCP server responses are treated as one-off tool calls, but article doesn't discuss persistence patterns—a major gap.

@petergyang: So I have Codex running on a /goal and it's been working for 2 hours but the ...

The constant steering suggests inadequate turn-by-turn context preservation. A better architecture might embed the plan so each turn references it, reducing assumptions.

@shao__meng: 公司领导 + AI = ?

Author's observation suggests single-turn queries dominate ('我问了 AI'), implying lack of iterative refinement or context building across conversation turns.

Multi-Agent AI Systems Enterprise Guide 2026

The article presents isolated agent hierarchies without addressing how conversational state persists across agent boundaries or how context is compounded—central to multi-turn management.

Building LangChain AI Agents Tutorial | Beginner to Advanced Guide

Article claims memory 'just works' in agents, but doesn't acknowledge the hard problem of maintaining context coherence across turns, token limits, or state corruption.

@Hesamation: AMD Senior AI Director confirms Claude has been nerfed. She analyzed Claude's...

Data suggests multi-turn coherence is degraded even within a single session when thinking budget is constrained—challenges assumption that turns can be managed independently.

2026-W35
448
2026-W34
256
2026-W33
384
2026-W32
320
2026-W31
320
2026-W30
384
2026-W29
448
2026-W28
448
2026-W27
320
2026-W26
192
2026-W25
448
2026-W24
448

The `/goal` feature is a concrete implementation pattern for maintaining coherent multi-turn conversations without manual re-prompting.

The temptation is to dump everything entire codebases, endless chat logs, and massive documentation files into the prompt and let the model sort it out." — Article addresses the challenge of managing

The 24 debug patches represent 24 turns where context must be preserved. Each turn adds signal. This is the core multi-turn pattern in action.

Session Engineering is specifically about managing context across multiple Claude Code turns/sessions.

The prompt explicitly shows preservation of prior feedback across conversation turns to guide new iterations.

AREX's recursive loop is explicitly multi-turn: answer → verify → preserve → refine. Each iteration builds on previous context rather than discarding it.

66 rounds is an explicit multi-turn sequence; managing coherence across this many turns is the core challenge in context engineering

Willison explicitly identifies 'agentic tool calling across longer conversations' as what matters—this is fundamentally a multi-turn context management problem

Loop engineering is a specific application pattern for managing state across multiple turns. Each loop iteration is a turn, and the critical challenge is maintaining context (plan, progress) across th

LangGraph example_of

The entire tutorial is structured around preserving context across multiple conversation turns using Mem0 + LangGraph state management

Explicitly addresses 50-turn agent coherence as core problem; context becomes more critical with turn depth

/goal is a concrete implementation of managing state across multiple turns without manual re-prompting, directly addressing the multi-turn conversation management challenge.

Agent state as contract across turns is the core pattern for managing coherence in multi-turn systems.

Agent degradation over 15-20 steps is a multi-turn context problem; the article directly addresses how context degrades across conversation length

SRE incident diagnosis explicitly involves sequential reasoning where context at step N informs decisions at step N+1; paper addresses how to optimize this sequence

The 'chat about this chat' pattern is a specific implementation of managing context across multiple conversation turns, but at the meta-level (conversation analyzing conversations).

Ralph loop is a concrete implementation of multi-turn management—it keeps goal state alive across conversation boundaries.

Uses a "puppeteer" LLM that dynamically decides which agents ("puppets") to call and in what order. By learning this orchestration with reinforcement learning (RL), the system solves complex tasks mor

In some important ways, a user's LLM chat history is an extended interview. The social media algorithms learn what you like, but chats can learn how you think." — The article explicitly frames LLM cha

In-context summary: An LLM generates a structured summary of the conversation—including session intent, artifacts created, and next steps—which replaces the full conversation history in the agent's wo

管理轮次边界、重试行为和停止条件。停止条件通常包括三类:模型给出最终答案、触发安全停止机制、或达到硬性 token 上限" — Article defines loop control mechanisms that directly manage multi-turn iterations, retry logic, and stopping conditions—core to convers

Engineer multi-agent systems with shared scratchpads, manager/worker hierarchies, and coordinated workflows" — Demonstrates multi-agent orchestration patterns including shared state management, hierar

At @every, we created our 2026 strategic plan by building a chatbot that asks you questions and debates your answers" — Article shows real implementation of multi-turn conversation: chatbot initiates

your agent can maintain coherent behavior across long conversations while adapting to new information without catastrophic forgetting." — Article directly addresses maintaining coherence across multi-

Multi-turn RL (reinforcement learning) goes haywire. Models get stuck in 'echo traps'—repeating safe answers. Or they generate 'void turns'—useless fluff that clogs the pipeline." — The article identi

Open-ended chatbot conversation is a good product paradigm for usability but it is not a good product paradigm for performative, accurate, useful AI" — Article directly challenges the effectiveness of

同一 ClaudeSDKClient 实现内存级多轮对话" — Shows how a single ClaudeSDKClient instance manages in-memory multi-turn conversations, demonstrating a specific conversation management pattern.

how do you maintain context in multi-step workflows?" — Article directly questions how platforms maintain context across multi-step workflows, central to multi-turn conversation management

Conversational behaviors include question-answering sequences, perspective shifts, conflicts between viewpoints, and reconciliation of disagreements" — The article demonstrates how reasoning models si

Intent is rarely stated outright. It has to be inferred, tracked, and sometimes revised mid-conversation." — Explicitly addresses the need to track and revise understanding across multiple turns of co

However, when we continue the "conversation", any given LLM will showcase one of its main disadvantages. It does not remember conversations!" — Article identifies the core problem that multi-turn conv

Each phase gets full attention, and the iterative approach catches problems before they cascade. One team lead described this as 'sprint-sized prompts'—keeping each request focused enough to complete

Context rot specifically manifests in long conversations (Replit example, ChatGPT degradation), making this a direct failure mode of multi-turn management.

Background Monitor tool enables multi-turn conversations where turns are not blocked by I/O polling—each external event becomes a new turn message

第一个 Session:负责生成代码;另一个 Session:仅接收已生成的代码,作为"审查者"进行审阅" — Demonstrates practical implementation of session isolation pattern for maintaining context clarity across multiple AI interactions

ACE specifically addresses how to manage context across multiple agent episodes, with strategies persisting and evolving

Agent swarms in Claude Code 2.1.32 with Opus 4.6 are very very very good" — Article demonstrates practical implementation of agent swarms using Claude Code and Opus 4.6, showing the concept works in p

一个连续对话可跨越多个 Excel 和 PPT 文件" — The article describes a continuous conversation that spans across multiple files and applications, exemplifying multi-turn conversation management across different contex

designed to **structure long, evolving LLM conversations across multiple interactions, tools, and goals**" — Article describes MCP's role in managing extended multi-turn interactions with coherence

managing conversation memory with LangGraph agents" — Article explicitly discusses managing multi-turn conversations as a key capability

Conversation State Handling Track where the conversation stands at each turn. It keeps conversations coherent." — Article addresses managing state across conversation turns to maintain coherence and p

A Microsoft and Salesforce research study found that fragmented contexts provided over several turns led to a dramatic 39% drop in LLM performance." — Article demonstrates a critical failure mode in m

When I hit problems I just told Claude to debug them and that almost always worked." — The author demonstrates iterative problem-solving conversation with Claude, showing multi-turn interaction patter

like past conversations, external knowledge, user preferences, tools, and more — so the LLM can work more like a helpful assistant" — Past conversations are explicitly listed as a key component of con

Sends it back to the user for approval. Adjusts the blog based on user feedback." — The agent implements a feedback loop with the user across multiple turns (request approval, adjust based on feedback

RASA specializes in intent recognition, context handling, and dialogue management, integrating natural language understanding (NLU) with dialogue flow to create sophisticated chatbots." — RASA's dialo

This is repeated until the LLM responds with final text or hits max turns (default ~20)." — Article explicitly describes managing multiple conversation turns with a default max of 20 turns, showing pr

You notice the agent forgets what the user said three turns ago." — Article demonstrates the problem of managing context across multiple conversation turns and treating it as a solvable engineering ch

这是一个迭代的过程。不要指望一次对话就完美。回答 Claude 提出的澄清问题。让 AI 生成框架、提示词模板,然后你进行测试和修正。" — Article describes iterative multi-turn dialogue: Claude asks clarification questions, user responds, AI generates content, user r

query this concept
$ db.articles("multi-turn-conversation-management")
$ db.cooccurrence("multi-turn-conversation-management")
$ db.contradictions("multi-turn-conversation-management")