Remix.run Logo
zozbot234 7 hours ago

> It goes into long exploration loops for 5+ minutes even when I point it to the exact files to inspect.

Give it a custom sandbox and context for the work, so it has no opportunity to roam around when not required. AI agentic coding is hugely wasteful of context and tokens in general (compared to generic chat, which is how most people use AI), there's a whole lot of scope for improvement there.

egeozcan 6 hours ago | parent | next [-]

But the problem is it used to not need that before. These days, you have to think twice before you summon a subagent.

imglorp 6 hours ago | parent | prev [-]

The sandbox is fine, but if the parent has given explicit instruction of files to inspect, why is it not centering there? Is the recent breakage that the base prompt makes it always try to explore for more context even if you try to focus it?

zozbot234 6 hours ago | parent | next [-]

Because the "explicit instruction" you give AI is not deterministic as in a normal computer program. It's a complete black box and the context is also most likely polluted by all sorts of weird stuff. Putting it on as tight of a leash as possible should be seen as normal.

zarzavat 6 hours ago | parent | prev [-]

They changed plan mode so that it's instructed to follow a multi-step plan, the first step being to explore the code base. When you tell it to focus it's getting contradictory instructions from plan mode vs your prompt and it's essentially a coin flip which one it picks.

It does seem like a cynical attempt to make more money.