Live data from Hacker News

Claude's AskUserQuestion: "No response after 60s – continued without an answer"

github.com

41–50 of 68 posts

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#41
post #27

~was truly surprised and delighted by this today. claude's recs are usually pretty good. imo as a product engineer this is a good default and all the cranky experts in here can turn it off.~ edit: didn't read closely enough to realize this can't be disabled / think about the perverse incentives. seems bad actually

Did you read the thread? They don't offer a way to turn it off. Someone reverse-engineered a workaround from the compiled binary, but it's not clear that it works.

https://github.com/anthropics/claude-code/issues/73125#issue...

In #30740, customers asked for the ability to turn it off, and anthropic closed it as "not planned".

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#42

If agent is asking a question it means it stumbled on something tricky and often an important architectural decision has to be made. Even if I am staring at the screen at the time, it's often impossible to study code and make a judgement call that quickly. My point being, even for opt-in it can be too short - highlights how little consideration they put into it, just releasing slop in production.

Good enough models will make the right architectural decisions anyways

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#43
post #2

To each his own I guess. There was nothing more frustrating than walking away from a CC session you expected to churn away at for an hour and coming back to a user question sitting there. More useful would be just getting a list of clarifying questions at the end of the session along with how it answered itself to follow up with or not.

use /goal with bypass permission then

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#44
I don't know about having this on as the default, but it definitely resolves a frequent annoyance of mine. I'd prefer Claude to keep going as far as possible until it's completely blocked. That said, I only give instructions to do that in environments where there's a clear upper bound on "maximal damage" that could be incurred by doing the wrong thing. In live production systems, you really don't want Claude doing much other than observing and reporting anyway.

I've been using a SQLite DB to organize actionability so I don't get stuck in the way that GitHub issue tries to work around. Any questions about which route to take that arise during agentic work are logged to a queue along with a set of plausible candidate routes, a probability assigned to each candidate of whether I will choose that option (including "other/none"), a "resource cost" assessment of the route (e.g., token spend, time), a "stability cost" (e.g., high potential to disrupt things or mainly self-contained), and a set of tasks that describe any downstream work that is dependent on the route chosen.

What Claude does next then depends on the results of a tiny optimization program that tries to maximize the expectation value of agent productivity per unit resource (tokens, time, etc.) conditional on how long it will take me to answer the question (e.g., if Claude has a question for me at 1 AM, there probably won't be a response for another 6-7 hours).

"Agent productivity" is of course a bit nebulous, consisting of a somewhat ad-hoc amalgamation of factors, but in general Claude's actionability loosely corresponds to cases like:

- 2-3 possible routes, each with roughly equal probability of being the one I select, low resource costs, minimal risk of instability, few downstream dependencies: implement each route in parallel

- 2-3 possible routes, one with a much higher probability of being chosen, minimal risk of instability, many downstream dependencies: implement just the top route

- Hundreds of possible routes: block until user response

- 1 possible route, high risk of instability, many downstream dependencies: block until user response

Generally speaking, there should be an active queue at all times and agents should be working on anything that's not blocked in the queue with maximal parallelization.

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#45

Turning this on by default is insane.

I am fine with this, and I will go as far as to say this is how most devs will be using agents soon (the big companies have already been using agents like this for 6-12 months.) I don't want my agent to pause on some inane question once I let it loose. I might not even be at my computer for that. Usually it makes the right decision anyways. If it doesn't I can always undo what it did. If you're worried about it getti…

I’m pretty sure I used plan mode today and it continued when I didn’t respond quickly enough. Though now I can’t recall whether it was Claude or Codex. In either case terrible default.

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#46
post #20
post #8

I can see that others might not like it, but this is the behavior I desire.

I enjoy risk seeking behavior as well as the next guy, but lets please be adults and make this opt-in, not opt-out. If you get the LLM to ask the right questions, (for me) obviously you would want it to wait for an answer?

This isn't "risk seeking" in the least, it's not a security thing.

You can always come back later if the design was wrong - you can't undo 7 wasted hours because you didn't notice an agent ask a question at the beginning of the day.

A year ago everyone thought that humans should review every agent command before executing them. Every major company realized that was dumb and now most enterprise agents run in a sandbox without being babysat.

This is just an extension of the same principle. As models get better you can trust them to make the right architectural choice more often. The likelihood of a human missing a prompt or not wanting to babysit the agent is higher than the agent choosing the wrong option.

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#47

Earlier quoted context omitted.

They were thinking users won't find this setting to turn it on, so enable it by default and users that don't liker it can turn it off. The Ralph Wiggum and /goal software indicates that some users want the AI to plow forwards, guessing at what the user actually wants. Some users don't want that behavior, but Anthropic took guess that more people want it than don't. 60 seconds is too short though, imo.

Maybe true, but consider the incentives for a moment. Anthropic makes money when it increases token usage. This feature removes a roadblock to burning more tokens. Can you claim with certainty that there is no way that might have influenced their decision?

OTOH, their system is currently overloaded beyond what they have capacity to serve, and public plans aren't pay per token like the API is, but a subscription fee with a usage limit. Thus, there is incentive for Anthropic to be conservative with token use because they don't have the capacity to serve all their current users. Artificially driving up usage means more usage, which means their system is more highly loaded, which means users are unhappy with the product, which means they're more likely to churn. That doesn't mean your version of the conspiracy isn't necessarily true, but it does mean it's not the only thing to consider.

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#48
post #27

~was truly surprised and delighted by this today. claude's recs are usually pretty good. imo as a product engineer this is a good default and all the cranky experts in here can turn it off.~ edit: didn't read closely enough to realize this can't be disabled / think about the perverse incentives. seems bad actually

Did you read the thread? They don't offer a way to turn it off. Someone reverse-engineered a workaround from the compiled binary, but it's not clear that it works. https://github.com/anthropics/claude-code/issues/73125#issue... In #30740, customers asked for the ability to turn it off, and anthropic closed it as "not planned".

i guess not. you're right, this is not cool!

Re: Claude's AskUserQuestion: "No response after 60s – continued without an answer"

#50

Earlier quoted context omitted.

They were thinking users won't find this setting to turn it on, so enable it by default and users that don't liker it can turn it off. The Ralph Wiggum and /goal software indicates that some users want the AI to plow forwards, guessing at what the user actually wants. Some users don't want that behavior, but Anthropic took guess that more people want it than don't. 60 seconds is too short though, imo.

Maybe true, but consider the incentives for a moment. Anthropic makes money when it increases token usage. This feature removes a roadblock to burning more tokens. Can you claim with certainty that there is no way that might have influenced their decision?

If they don't do this, their competitors will and have a better UX.

Most users that just want their agent to do the damn thing.

Users that want to babysit their agents can always turn the setting off. That is not most users.

Post reply on HN