---
title: "Sometimes the Best Prompt Is /new"
url: https://daily.dev/posts/sometimes-the-best-prompt-is-new-5669holgc
source_url: https://allaboutcoding.ghinda.com/sometimes-the-best-prompt-is-new
type: article
source: "RUBYLAND"
published: 2026-08-26T13:57:21.108Z
updated: 2026-08-26T14:22:51.034Z
tags: ["llm", "ai-coding", "prompt-engineering", "transformers"]
reading_time: 3
upvotes: 1
comments: 1
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Sometimes the Best Prompt Is /new

**[RUBYLAND](https://daily.dev/sources/rubyla)** · 3 min read · 1 upvotes · 1 comments

## Summary

When an LLM chat session goes off track after multiple turns, it often can't be steered back on course because each new response is conditioned on everything already generated, including flawed prior interpretations and assumptions. This effect, described in research as 'Lost in Conversation,' causes multi-turn performance to drop 39% on average across large-scale simulated conversations. The recommended fix is to recognize when a conversation is lost and restart it with /new or /clear, or switch to a different agent or model, rather than trying to argue the model back to the right path. A complementary strategy is running the same task in parallel across multiple agents or models with varied few-shot prompts, trading extra tokens and cognitive load for faster, better-informed decisions. None of this removes the manual work needed to make generated code production-ready.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://allaboutcoding.ghinda.com/sometimes-the-best-prompt-is-new>

## Questions this post answers

### Why can't I get an AI coding agent back on track once the conversation goes in the wrong direction?

Each new response from a large language model is generated in the context of everything said before, including prior wrong interpretations, conclusions, and assumptions. Adding a 'new direction' prompt just adds to that context rather than replacing it, so the model still weighs the accumulated wrong context more heavily. This effect is called 'Lost in Conversation' and multi-turn performance drops 39% on average across more than 200,000 simulated conversations.

_daily.dev surfaces practical prompting techniques for developers steering AI coding agents day to day._

### What should I do when an AI chat agent gets stuck giving the wrong kind of answers after many turns?

Restart the conversation using a command like /new or /clear, or switch to a different agent or model entirely, instead of trying to argue the model back onto the right path. Because each turn is conditioned on all prior turns, steering rarely works once a session is far enough along; a fresh context avoids the buildup of wrong interpretations and assumptions.

_Developers refining agent workflows can follow more prompting strategies like this on daily.dev._

### How can I compare different AI coding approaches faster when working with agents and models?

Run the same task in parallel across multiple agent harnesses and models using few-shot prompting with varied directions, then compare the resulting implementations side by side. This costs extra tokens and cognitive load but produces several shapes of the same solution, speeding up the decision of which approach to pursue, though it does not remove the manual work of making code production-ready.

_daily.dev helps developers weighing multi-agent workflows keep up with emerging AI coding practices._

## Community discussion

Top comments from developers on daily.dev.

**@kartiknvj** · 0 upvotes

> That 39% multi-turn drop lines up with what I measure. Once a session anchors on a bad assumption, arguing it back costs more tokens than a clean restart, so I now log turn count as a signal and auto-flag runs past a threshold in eval. Have you found a reliable way to detect a poisoned context before the output visibly degrades?

## Similar posts on daily.dev

- [I stripped my prompts down after OpenAI's new guide, and my results got better](https://daily.dev/posts/i-stripped-my-prompts-down-after-openai-s-new-guide-and-my-results-got-better-y9gjbkpk9) · XDA Developers · 1 upvotes · 0 comments

---

Tags: [#llm](https://daily.dev/tags/llm), [#ai-coding](https://daily.dev/tags/ai-coding), [#prompt-engineering](https://daily.dev/tags/prompt-engineering), [#transformers](https://daily.dev/tags/transformers)

[View this post on daily.dev](https://daily.dev/posts/sometimes-the-best-prompt-is-new-5669holgc)
