At what point do you clear context instead of letting an agent try another quick patch?

by•

I spent an hour yesterday watching an agent make four micro-fixes in a row only to land on the exact error code we started with.

It gets caught in this endless trial-and-error loop where it just keeps tweaking lines of code without checking root cause.

I started forcing myself to kill the session as soon as I see a second repeated error message.

How do you break that loop once the thread gets too messy? Do you restart from scratch or change up how you feed it error details?

17 views

Add a comment

Replies

Best

I think he tricky part is knowing when to stop pushing. sometimes a fresh perspective saves more time than another patch .

I’ve started keeping the importaant context outside the thread and bringing only what matters.